Home
last modified time | relevance | path

Searched refs:var_num (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-global-gen.cc19 VARIABLE(var_num, MachineRepresentation::kTagged); in TF_BUILTIN()
20 Label loop(this, &var_num); in TF_BUILTIN()
21 var_num.Bind(Parameter(Descriptor::kNumber)); in TF_BUILTIN()
25 Node* num = var_num.value(); in TF_BUILTIN()
46 var_num.Bind(CallBuiltin(Builtins::kNonNumberToNumber, context, num)); in TF_BUILTIN()
65 VARIABLE(var_num, MachineRepresentation::kTagged); in TF_BUILTIN()
66 Label loop(this, &var_num); in TF_BUILTIN()
67 var_num.Bind(Parameter(Descriptor::kNumber)); in TF_BUILTIN()
71 Node* num = var_num.value(); in TF_BUILTIN()
91 var_num.Bind(CallBuiltin(Builtins::kNonNumberToNumber, context, num)); in TF_BUILTIN()
/external/harfbuzz_ng/util/
Dhb-fc.cc56 unsigned int var_num = 0; in hb_fc_get_glyph() local
58 var_num = variation_selector - 0xFE00 + 1; in hb_fc_get_glyph()
60 var_num = variation_selector - 0xE0100 + 17; in hb_fc_get_glyph()
61 *glyph = (var_num << 21) | unicode; in hb_fc_get_glyph()
/external/python/cpython2/Doc/library/
Ddis.rst757 .. opcode:: LOAD_FAST (var_num)
759 Pushes a reference to the local ``co_varnames[var_num]`` onto the stack.
762 .. opcode:: STORE_FAST (var_num)
764 Stores TOS into the local ``co_varnames[var_num]``.
767 .. opcode:: DELETE_FAST (var_num)
769 Deletes local ``co_varnames[var_num]``.
/external/python/cpython3/Doc/library/
Ddis.rst1008 .. opcode:: LOAD_FAST (var_num)
1010 Pushes a reference to the local ``co_varnames[var_num]`` onto the stack.
1013 .. opcode:: STORE_FAST (var_num)
1015 Stores TOS into the local ``co_varnames[var_num]``.
1018 .. opcode:: DELETE_FAST (var_num)
1020 Deletes local ``co_varnames[var_num]``.