Skip to content

Instantly share code, notes, and snippets.

@diakopter
Last active December 26, 2015 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diakopter/7729637a4a6b5ee47878 to your computer and use it in GitHub Desktop.
Save diakopter/7729637a4a6b5ee47878 to your computer and use it in GitHub Desktop.
Search ", MVM_[a-z_]+\("
C:\Users\mwilson\src\MoarVM\src\6model\reprconv.h (6 hits)
Line 45: MVM_repr_get_int((tc), MVM_repr_at_key_boxed((tc), (obj), (key)))
Line 47: MVM_repr_get_num((tc), MVM_repr_at_key_boxed((tc), (obj), (key)))
Line 49: MVM_repr_get_str((tc), MVM_repr_at_key_boxed((tc), (obj), (key)))
Line 52: MVM_repr_bind_key_boxed((tc), (obj), (key), MVM_repr_box_int((tc), (*((tc)->interp_cu))->body.hll_config->int_box_type, (val)))
Line 54: MVM_repr_bind_key_boxed((tc), (obj), (key), MVM_repr_box_num((tc), (*((tc)->interp_cu))->body.hll_config->num_box_type, (val)))
Line 56: MVM_repr_bind_key_boxed((tc), (obj), (key), MVM_repr_box_str((tc), (*((tc)->interp_cu))->body.hll_config->str_box_type, (val)))
C:\Users\mwilson\src\MoarVM\src\6model\reprs\NFA.c (2 hits)
Line 258: MVM_repr_get_str(tc, MVM_repr_at_pos_o(tc, edge_info, j + 1)));
Line 503: MVM_repr_push_i(tc, bstack, MVM_repr_at_pos_i(tc, labels, fates[i]));
C:\Users\mwilson\src\MoarVM\src\6model\reprs\P6opaque.c (1 hit)
Line 245: MVM_exception_throw_adhoc(tc, "P6opaque: no such attribute '%s'", MVM_string_ascii_encode(tc, name, &output_size));
C:\Users\mwilson\src\MoarVM\src\core\coerce.c (4 hits)
Line 344: result = MVM_repr_alloc_init(tc, MVM_hll_current(tc)->slurpy_array_type);
Line 348: MVM_repr_push_o(tc, result, MVM_repr_box_num(tc, box_type, value));
Line 349: MVM_repr_push_o(tc, result, MVM_repr_box_num(tc, box_type, base));
Line 350: MVM_repr_push_o(tc, result, MVM_repr_box_num(tc, box_type, pos));
C:\Users\mwilson\src\MoarVM\src\core\interp.c (3 hits)
Line 1242: MVMObject * const result = MVM_repr_alloc_init(tc, MVM_hll_current(tc)->slurpy_array_type);
Line 3495: MVM_hll_map(tc, mapee, MVM_hll_current(tc), res_reg);
Line 3504: MVM_hll_map(tc, mapee, MVM_hll_get_config_for(tc, hll), res_reg);
C:\Users\mwilson\src\MoarVM\src\gen\config.c (1 hit)
Line 15: MVM_repr_box_str(tc, MVM_hll_current(tc)->str_box_type, \
C:\Users\mwilson\src\MoarVM\src\io\procops.c (7 hits)
Line 91: MVM_repr_box_str(tc, MVM_hll_current(tc)->str_box_type, val));
Line 140: env_str = MVM_string_concatenate(tc, MVM_iterkey_s(tc, iter), equal);
Line 141: env_str = MVM_string_concatenate(tc, env_str, MVM_repr_get_str(tc, MVM_iterval(tc, iter)));
Line 141: env_str = MVM_string_concatenate(tc, env_str, MVM_repr_get_str(tc, MVM_iterval(tc, iter)));
Line 207: clargs = MVM_repr_alloc_init(tc, MVM_hll_current(tc)->slurpy_array_type);
Line 215: MVM_repr_push_o(tc, clargs, MVM_repr_box_str(tc,
Line 222: MVM_repr_push_o(tc, clargs, MVM_repr_box_str(tc,
C:\Users\mwilson\src\MoarVM\src\strings\ops.c (2 hits)
Line 571: return MVM_string_equal_at(tc, MVM_string_lc(tc, a), MVM_string_lc(tc, b), offset);
Line 571: return MVM_string_equal_at(tc, MVM_string_lc(tc, a), MVM_string_lc(tc, b), offset);
C:\Users\mwilson\src\MoarVM\src\strings\utf8.c (2 hits)
Line 292: while (i < length && (arr = utf8_encode(arr, MVM_string_get_codepoint_at_nocheck(tc, str, i++))));
Line 296: i - 1, MVM_string_get_codepoint_at_nocheck(tc, str, i-1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment