Searched refs:index_node (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/compiler/ |
D | escape-analysis.cc | 1415 Node* index_node = node->InputAt(1); in ProcessLoadElement() local 1416 NumberMatcher index(index_node); in ProcessLoadElement() 1417 DCHECK(index_node->opcode() != IrOpcode::kInt32Constant && in ProcessLoadElement() 1418 index_node->opcode() != IrOpcode::kInt64Constant && in ProcessLoadElement() 1419 index_node->opcode() != IrOpcode::kFloat32Constant && in ProcessLoadElement() 1420 index_node->opcode() != IrOpcode::kFloat64Constant); in ProcessLoadElement() 1444 from->id(), from->op()->mnemonic(), node->id(), index_node->id(), in ProcessLoadElement() 1445 index_node->op()->mnemonic()); in ProcessLoadElement() 1480 Node* index_node = node->InputAt(1); in ProcessStoreElement() local 1481 NumberMatcher index(index_node); in ProcessStoreElement() [all …]
|
/external/v8/src/ |
D | code-stub-assembler.cc | 614 Node* CodeStubAssembler::LoadFixedArrayElement(Node* object, Node* index_node, in LoadFixedArrayElement() argument 619 Node* offset = ElementOffsetFromIndex(index_node, FAST_HOLEY_ELEMENTS, in LoadFixedArrayElement() 625 Node* object, Node* index_node, MachineType machine_type, in LoadFixedDoubleArrayElement() argument 629 Node* offset = ElementOffsetFromIndex(index_node, FAST_HOLEY_DOUBLE_ELEMENTS, in LoadFixedDoubleArrayElement() 669 Node* CodeStubAssembler::StoreFixedArrayElement(Node* object, Node* index_node, in StoreFixedArrayElement() argument 676 ElementOffsetFromIndex(index_node, FAST_HOLEY_ELEMENTS, parameter_mode, in StoreFixedArrayElement() 687 Node* object, Node* index_node, Node* value, ParameterMode parameter_mode) { in StoreFixedDoubleArrayElement() argument 689 ElementOffsetFromIndex(index_node, FAST_DOUBLE_ELEMENTS, parameter_mode, in StoreFixedDoubleArrayElement() 2314 compiler::Node* CodeStubAssembler::ElementOffsetFromIndex(Node* index_node, in ElementOffsetFromIndex() argument 2327 constant_index = ToIntPtrConstant(index_node, temp); in ElementOffsetFromIndex() [all …]
|
/external/opencv/ml/src/ |
D | mlsvm.cpp | 2300 CvFileNode* index_node = cvGetFileNodeByName( fs, df_elem, "index" ); in read() local 2301 if( !index_node ) in read() 2305 CV_ASSERT( sv_count == 1 || CV_NODE_IS_SEQ(index_node->tag) && in read() 2306 index_node->data.seq->total == sv_count ); in read() 2307 CV_CALL( cvReadRawData( fs, index_node, df[i].sv_index, "i" )); in read()
|