HomeSort by relevance Sort by last modified time
    Searched defs:cell_index (Results 1 - 7 of 7) sorted by null

  /external/v8/src/ast/
modules.cc 93 ToStringOrUndefined(isolate, import_name), module_request, cell_index,
108 result->cell_index = entry->cell_index();
128 DCHECK_EQ(it->second->cell_index, next->second->cell_index);
137 handle(Smi::FromInt(it->second->cell_index), isolate);
168 int cell_index = module_info->RegularExportCellIndex(i); local
179 entry->cell_index = cell_index;
219 int cell_index) {
    [all...]
modules.h 90 // the cell_index value to encode the location of their cell. During
94 // GetCellIndexKind(cell_index) == kInvalid.
95 int cell_index; member in struct:v8::internal::ModuleDescriptor::Entry
104 cell_index(0) {}
115 static CellIndexKind GetCellIndexKind(int cell_index);
210 // Assign a cell_index of -1,-2,... to regular imports.
211 // Assign a cell_index of +1,+2,... to regular (local) exports.
212 // Assign a cell_index of 0 to anything else.
  /external/v8/src/heap/
slot-set.h 56 int bucket_index, cell_index, bit_index; local
57 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
63 if (!(current_bucket[cell_index].Value() & (1u << bit_index))) {
64 current_bucket[cell_index].SetBit(bit_index);
71 int bucket_index, cell_index, bit_index; local
72 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
77 return (current_bucket[cell_index].Value() & (1u << bit_index)) != 0;
82 int bucket_index, cell_index, bit_index; local
83 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
86 uint32_t cell = current_bucket[cell_index].Value()
158 int bucket_index, cell_index, bit_index; local
    [all...]
  /external/v8/src/compiler/
js-typed-lowering.cc 1653 int32_t cell_index = OpParameter<int32_t>(node); local
1690 int32_t cell_index = OpParameter<int32_t>(node); local
    [all...]
bytecode-graph-builder.cc 1131 int32_t cell_index = bytecode_iterator().GetImmediateOperand(0); local
1140 int32_t cell_index = bytecode_iterator().GetImmediateOperand(0); local
    [all...]
  /external/v8/src/interpreter/
interpreter.cc 992 Node* cell_index = __ BytecodeOperandImmIntPtr(0); local
1035 Node* cell_index = __ BytecodeOperandImmIntPtr(0); local
    [all...]
  /external/v8/src/
objects.cc 19859 int cell_index = module_info->RegularExportCellIndex(i); local
    [all...]

Completed in 814 milliseconds