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

  /external/v8/src/heap/
marking.h 150 void ClearBitsInCell(uint32_t cell_index, uint32_t mask);
155 void SetBitsInCell(uint32_t cell_index, uint32_t mask);
179 inline void Bitmap::SetBitsInCell<AccessMode::NON_ATOMIC>(uint32_t cell_index,
181 cells()[cell_index] |= mask;
185 inline void Bitmap::SetBitsInCell<AccessMode::ATOMIC>(uint32_t cell_index,
187 base::AsAtomic32::SetBits(cells() + cell_index, mask, mask);
191 inline void Bitmap::ClearBitsInCell<AccessMode::NON_ATOMIC>(uint32_t cell_index,
193 cells()[cell_index] &= ~mask;
197 inline void Bitmap::ClearBitsInCell<AccessMode::ATOMIC>(uint32_t cell_index,
199 base::AsAtomic32::SetBits(cells() + cell_index, 0u, mask)
    [all...]
slot-set.h 60 int bucket_index, cell_index, bit_index; local
61 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
75 if ((LoadCell<access_mode>(&bucket[cell_index]) & mask) == 0) {
76 SetCellBits<access_mode>(&bucket[cell_index], mask);
83 int bucket_index, cell_index, bit_index; local
84 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
87 return (LoadCell(&bucket[cell_index]) & (1u << bit_index)) != 0;
92 int bucket_index, cell_index, bit_index; local
93 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
96 uint32_t cell = LoadCell(&bucket[cell_index]);
172 int bucket_index, cell_index, bit_index; local
    [all...]
  /external/v8/src/ast/
modules.cc 116 ToStringOrUndefined(isolate, import_name), module_request, cell_index,
131 result->cell_index = entry->cell_index();
151 DCHECK_EQ(it->second->cell_index, next->second->cell_index);
160 handle(Smi::FromInt(it->second->cell_index), isolate);
191 int cell_index = module_info->RegularExportCellIndex(i); local
202 entry->cell_index = cell_index;
242 int cell_index) {
    [all...]
modules.h 94 // the cell_index value to encode the location of their cell. During
98 // GetCellIndexKind(cell_index) == kInvalid.
99 int cell_index; member in struct:v8::internal::ModuleDescriptor::Entry
108 cell_index(0) {}
119 static CellIndexKind GetCellIndexKind(int cell_index);
226 // Assign a cell_index of -1,-2,... to regular imports.
227 // Assign a cell_index of +1,+2,... to regular (local) exports.
228 // Assign a cell_index of 0 to anything else.
scopes.cc     [all...]
  /external/tensorflow/tensorflow/tools/compatibility/
ipynb.py 67 cell_index = 0
90 CodeLine(cell_index,
93 cell_index += 1
  /external/v8/src/objects/
module.h 108 Cell* GetCell(int cell_index);
110 int cell_index);
111 static void StoreVariable(Handle<Module> module, int cell_index,
153 int cell_index, Handle<FixedArray> names);
310 DECL_INT_ACCESSORS(cell_index)
318 int module_request, int cell_index,
module.cc 111 int ExportIndex(int cell_index) {
112 DCHECK_EQ(ModuleDescriptor::GetCellIndexKind(cell_index),
114 return cell_index - 1;
117 int ImportIndex(int cell_index) {
118 DCHECK_EQ(ModuleDescriptor::GetCellIndexKind(cell_index),
120 return -cell_index - 1;
135 int cell_index, Handle<FixedArray> names) {
139 module->regular_exports()->set(ExportIndex(cell_index), *cell);
150 Cell* Module::GetCell(int cell_index) {
153 switch (ModuleDescriptor::GetCellIndexKind(cell_index)) {
512 int cell_index = module_info->RegularExportCellIndex(i); local
    [all...]
module-inl.h 48 SMI_ACCESSORS(ModuleInfoEntry, cell_index, kCellIndexOffset)
scope-info.cc 871 int module_request, int cell_index,
879 result->set_cell_index(cell_index);
    [all...]
  /external/blktrace/iowatcher/
plot.c 882 double cell_index; local
888 cell_index = pph->history[i];
889 movie_row = floor(cell_index / graph_width);
890 movie_col = cell_index - movie_row * graph_width;
905 double cell_index; local
947 cell_index = pph->history[i];
948 circle_num = floor(cell_index / cells_per_circle);
949 rot = cell_index - circle_num * cells_per_circle;
991 double cell_index; local
1007 cell_index = (double)row * blocks_per_row
    [all...]
  /external/v8/src/
contexts.cc 339 int cell_index = local
341 if (cell_index != 0) {
345 *index = cell_index;
348 *attributes = ModuleDescriptor::GetCellIndexKind(cell_index) ==
objects-printer.cc     [all...]
  /external/v8/src/debug/
debug-scopes.cc 873 int cell_index; local
877 cell_index = context_->scope_info()->ModuleIndex(
881 if (ModuleDescriptor::GetCellIndexKind(cell_index) !=
887 Module::StoreVariable(module, cell_index, new_value);
  /external/v8/src/interpreter/
bytecode-array-builder.h 106 BytecodeArrayBuilder& LoadModuleVariable(int cell_index, int depth);
110 BytecodeArrayBuilder& StoreModuleVariable(int cell_index, int depth);
bytecode-array-builder.cc     [all...]
interpreter-generator.cc 666 // LdaModuleVariable <cell_index> <depth>
669 // identified by <cell_index>. <depth> is the depth of the current context
672 Node* cell_index = BytecodeOperandImmIntPtr(0); local
679 Branch(IntPtrGreaterThan(cell_index, IntPtrConstant(0)), &if_export,
686 // The actual array index is (cell_index - 1).
687 Node* export_index = IntPtrSub(cell_index, IntPtrConstant(1));
697 // The actual array index is (-cell_index - 1).
698 Node* import_index = IntPtrSub(IntPtrConstant(-1), cell_index);
708 // StaModuleVariable <cell_index> <depth>
710 // Store accumulator to the module variable identified by <cell_index>
714 Node* cell_index = BytecodeOperandImmIntPtr(0); local
    [all...]
  /external/v8/src/compiler/
js-heap-broker.h 419 CellRef GetCell(int cell_index);
js-operator.cc     [all...]
js-operator.h 803 const Operator* LoadModule(int32_t cell_index);
804 const Operator* StoreModule(int32_t cell_index);
js-heap-broker.cc     [all...]
js-typed-lowering.cc 1397 int32_t cell_index = OpParameter<int32_t>(node->op()); local
    [all...]
bytecode-graph-builder.cc 1436 int32_t cell_index = bytecode_iterator().GetImmediateOperand(0); local
1445 int32_t cell_index = bytecode_iterator().GetImmediateOperand(0); local
    [all...]
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/ops/
cudnn_rnn_ops.py     [all...]

Completed in 756 milliseconds