Home
last modified time | relevance | path

Searched refs:first_index (Results 1 – 15 of 15) sorted by relevance

/external/v8/test/cctest/
Dtest-constantpool.cc46 CHECK_EQ(expected_first_idx[i], array->first_index(kTypes[i], kSmall)); in TEST()
90 CHECK_EQ(small_first_idx[i], array->first_index(kTypes[i], kSmall)); in TEST()
102 CHECK_EQ(extended_first_idx[i], array->first_index(kTypes[i], kExtended)); in TEST()
119 for (int i = array->first_index(ConstantPoolArray::INT64, kSmall); in TEST()
132 for (int i = array->first_index(ConstantPoolArray::INT64, kExtended); in TEST()
146 for (int i = array->first_index(ConstantPoolArray::INT64, kSmall); in TEST()
159 for (int i = array->first_index(ConstantPoolArray::INT64, kExtended); in TEST()
Dtest-declarative-accessors.cc265 int first_index = 13; in TEST() local
272 ->NewRawShift(helper.isolate_, first_index*kPointerSize) in TEST()
278 array->As<uintptr_t**>()[first_index] = in TEST()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_queryobj.c189 for (i = query->first_index; i <= query->last_index; i++) { in brw_queryobj_get_results()
196 for (i = query->first_index; i <= query->last_index; i++) { in brw_queryobj_get_results()
265 query->first_index = -1; in brw_begin_query()
433 query->first_index = brw->query.index; in brw_emit_query_begin()
Dbrw_context.h713 int first_index; member
/external/v8/src/compiler/arm/
Dcode-generator-arm.cc59 Operand InputOperand2(int first_index) { in InputOperand2() argument
60 const int index = first_index; in InputOperand2()
91 MemOperand InputOffset(int* first_index) { in InputOffset() argument
92 const int index = *first_index; in InputOffset()
107 *first_index += 2; in InputOffset()
110 *first_index += 2; in InputOffset()
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc49 MemOperand MemoryOperand(int* first_index) { in MemoryOperand() argument
50 const int index = *first_index; in MemoryOperand()
55 *first_index += 2; in MemoryOperand()
58 *first_index += 2; in MemoryOperand()
/external/sfntly/cpp/src/sfntly/table/core/
Dos2_table.cc500 void OS2Table::Builder::SetUsFirstCharIndex(int32_t first_index) { in SetUsFirstCharIndex() argument
501 InternalWriteData()->WriteUShort(Offset::kUsFirstCharIndex, first_index); in SetUsFirstCharIndex()
Dos2_table.h382 void SetUsFirstCharIndex(int32_t first_index);
/external/valgrind/coregrind/m_debuginfo/
Dreadpdb.c370 unsigned short first_index; member
382 unsigned long first_index; member
1160 types->first_index = old->first_index; in pdb_convert_types_header()
/external/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.h385 int64_t& first_index,
DSymbolFileDWARF.cpp4393 int64_t& first_index, in ParseChildArrayInfo() argument
6840 int64_t first_index = 0; in ParseType() local
6894 … ParseChildArrayInfo(sc, dwarf_cu, die, first_index, element_orders, byte_stride, bit_stride); in ParseType()
/external/v8/src/
Dobjects-inl.h2352 next_index_ = array_->first_index(type_, EXTENDED_SECTION); in update_section()
2394 int ConstantPoolArray::first_index(Type type, LayoutSection section) { in first_index() function
2411 return first_index(type, section) + number_of_entries(type, section) - 1; in last_index()
2457 return (offset >= OffsetOfElementAt(first_index(type, SMALL_SECTION)) && in offset_is_type()
2460 offset >= OffsetOfElementAt(first_index(type, EXTENDED_SECTION)) && in offset_is_type()
Dobjects.h2664 next_index_(array->first_index(type, SMALL_SECTION)) { in Iterator()
2673 next_index_(array->first_index(type, section)) { in Iterator()
2692 inline int first_index(Type type, LayoutSection layout_section);
2809 offset += entry_size(type) * (index - first_index(type, section)); in OffsetOfElementAt()
Dhydrogen.cc12286 int first_index = current->first_instruction_index(); in Trace() local
12290 LifetimePosition::FromInstructionIndex(first_index).Value()); in Trace()
12335 int first_index = current->first_instruction_index(); in Trace() local
12337 if (first_index != -1 && last_index != -1) { in Trace()
12339 for (int i = first_index; i <= last_index; ++i) { in Trace()
Dobjects.cc9077 int offset = OffsetOfElementAt(first_index(type[i], section)); in ClearPtrEntries()