Home
last modified time | relevance | path

Searched defs:index (Results 1 – 25 of 214) sorted by relevance

123456789

/art/test/712-varhandle-invocations/src/
DSampleValues.java66 public static boolean get_boolean(int index) { in get_boolean()
70 public static Boolean get_Boolean(int index) { in get_Boolean()
74 public static byte get_byte(int index) { in get_byte()
78 public static Byte get_Byte(int index) { in get_Byte()
82 public static short get_short(int index) { in get_short()
86 public static Short get_Short(int index) { in get_Short()
90 public static char get_char(int index) { in get_char()
94 public static Character get_Character(int index) { in get_Character()
98 public static int get_int(int index) { in get_int()
102 public static Integer get_Integer(int index) { in get_Integer()
[all …]
DVarHandleUnitTestHelpers.java56 public static boolean getBytesAs_boolean(byte[] array, int index, ByteOrder order) { in getBytesAs_boolean()
60 public static byte getBytesAs_byte(byte[] array, int index, ByteOrder order) { in getBytesAs_byte()
64 public static char getBytesAs_char(byte[] array, int index, ByteOrder order) { in getBytesAs_char()
68 public static short getBytesAs_short(byte[] array, int index, ByteOrder order) { in getBytesAs_short()
72 public static int getBytesAs_int(byte[] array, int index, ByteOrder order) { in getBytesAs_int()
76 public static long getBytesAs_long(byte[] array, int index, ByteOrder order) { in getBytesAs_long()
80 public static float getBytesAs_float(byte[] array, int index, ByteOrder order) { in getBytesAs_float()
84 public static double getBytesAs_double(byte[] array, int index, ByteOrder order) { in getBytesAs_double()
88 public static boolean getBytesAs_boolean(ByteBuffer buffer, int index, ByteOrder order) { in getBytesAs_boolean()
92 public static byte getBytesAs_byte(ByteBuffer buffer, int index, ByteOrder order) { in getBytesAs_byte()
[all …]
/art/tools/jvmti-agents/ti-alloc-sample/
Dmkflame.py34 def definition(self, index): argument
40 def set_definition(self, index, definition): argument
46 def weight(self, index): argument
52 def set_weight(self, index, weight): argument
99 def get_top_and_weight(index): argument
155 def process_trace(index): argument
/art/test/407-arrays/src/
DMain.java34 double[] doubles, int index) { in $opt$testReads()
65 double doubles[], int index) { in $opt$testWrites()
124 public static void $opt$testLongWrites(long[] longs, int index) { in $opt$testLongWrites()
133 public static void ensureThrows(boolean[] array, int index) { in ensureThrows()
155 public static void $opt$doArrayLoad(boolean[] array, int index) { in $opt$doArrayLoad()
159 public static void $opt$doArrayStore(boolean[] array, int index) { in $opt$doArrayStore()
/art/runtime/
Dimt_conflict_table.h68 void SetInterfaceMethod(size_t index, PointerSize pointer_size, ArtMethod* method) { in SetInterfaceMethod()
72 void SetImplementationMethod(size_t index, PointerSize pointer_size, ArtMethod* method) { in SetImplementationMethod()
76 ArtMethod* GetInterfaceMethod(size_t index, PointerSize pointer_size) const { in GetInterfaceMethod()
80 ArtMethod* GetImplementationMethod(size_t index, PointerSize pointer_size) const { in GetImplementationMethod()
84 void** AddressOfInterfaceMethod(size_t index, PointerSize pointer_size) { in AddressOfInterfaceMethod()
88 void** AddressOfImplementationMethod(size_t index, PointerSize pointer_size) { in AddressOfImplementationMethod()
180 void** AddressOfMethod(size_t index, PointerSize pointer_size) { in AddressOfMethod()
188 ArtMethod* GetMethod(size_t index, PointerSize pointer_size) const { in GetMethod()
196 void SetMethod(size_t index, PointerSize pointer_size, ArtMethod* method) { in SetMethod()
Dimtable.h43 uint8_t* AddressOfElement(size_t index, PointerSize pointer_size) { in AddressOfElement()
47 ArtMethod* Get(size_t index, PointerSize pointer_size) { in Get()
59 void Set(size_t index, ArtMethod* method, PointerSize pointer_size) { in Set()
69 static size_t OffsetOfElement(size_t index, PointerSize pointer_size) { in OffsetOfElement()
Dquicken_info.h37 void AddIndex(uint16_t index) { in AddIndex()
54 uint16_t GetData(size_t index) const { in GetData()
Dindex_bss_mapping.cc27 uint32_t index, in GetBssOffset()
50 uint32_t index, in GetBssOffset()
Dstack_map.h327 ALWAYS_INLINE StackMap GetStackMapAt(size_t index) const { in GetStackMapAt()
331 BitMemoryRegion GetStackMask(size_t index) const { in GetStackMask()
336 uint32_t index = stack_map.GetStackMaskIndex(); in GetStackMaskOf() local
341 uint32_t index = stack_map.GetRegisterMaskIndex(); in GetRegisterMaskOf() local
349 ALWAYS_INLINE DexRegisterLocation GetDexRegisterCatalogEntry(size_t index) const { in GetDexRegisterCatalogEntry()
396 uint32_t index = stack_map.GetInlineInfoIndex(); in GetInlineInfosOf() local
468 size_t index = 0; in ForEachHeaderField() local
482 size_t index = 0; in ForEachBitTableField() local
Dmonitor_pool_test.cc80 size_t index = r.next() % monitors.size(); in TEST_F() local
112 size_t index = r.next() % monitors.size(); in TEST_F() local
/art/runtime/mirror/
Darray.h98 void* GetRawData(size_t component_size, int32_t index) in GetRawData()
105 void* GetRawData(int32_t index) REQUIRES_SHARED(Locks::mutator_lock_) { in GetRawData()
111 const void* GetRawData(size_t component_size, int32_t index) const { in GetRawData()
117 const void* GetRawData(int32_t index) const { in GetRawData()
246 void** ElementAddress(size_t index, PointerSize ptr_size) REQUIRES_SHARED(Locks::mutator_lock_) { in ElementAddress()
/art/libdexfile/dex/
Ddex_file_types.h66 explicit constexpr ProtoIndex(uint16_t index) : DexIndex<decltype(index_)>(index) {} in ProtoIndex()
76 explicit constexpr StringIndex(uint32_t index) : DexIndex<decltype(index_)>(index) {} in StringIndex()
86 explicit constexpr TypeIndex(uint16_t index) : DexIndex<uint16_t>(index) {} in TypeIndex()
Dbytecode_utils.h45 void CheckIndex(size_t index) const { in CheckIndex()
55 int32_t GetEntryAt(size_t index) const { in GetEntryAt()
60 uint32_t GetDexPcForIndex(size_t index) const { in GetDexPcForIndex()
Dstring_reference_test.cc83 for (size_t index = 0; index != arraysize(kDexFile1Strings); ++index) { in TEST() local
94 for (size_t index = 0; index != arraysize(kDexFile2Strings); ++index) { in TEST() local
/art/test/527-checker-array-access-split/src/
DMain.java120 public static int get(int array[], int index) { in get()
165 public static void set(int array[], int index, int value) { in set()
233 public static void getSet(int array[], int index) { in getSet()
309 public static int[] accrossGC(int array[], int index) { in accrossGC()
618 public final static int checkObjectArrayGet(int index, Integer[] a, Integer[] b) { in checkObjectArrayGet()
/art/test/925-threadgroups/
Dthreadgroups.cc47 auto callback = [&](jint index) -> jobject { in Java_art_Test925_getTopThreadGroups()
65 auto callback = [&](jint index) -> jobject { in Java_art_Test925_getThreadGroupInfo()
108 auto inner_callback = [&](jint index) { in Java_art_Test925_getThreadGroupChildren()
114 auto inner_callback = [&](jint index) { in Java_art_Test925_getThreadGroupChildren()
/art/test/617-clinit-oome/src/
DMain.java18 private static int exhaustJavaHeap(Object[] data, int index, int size) { in exhaustJavaHeap()
43 int index = 0; in main() local
/art/test/163-app-image-methods/src/
DMain.java65 private static int exhaustJavaHeap(Object[] data, int index, int size) { in exhaustJavaHeap()
97 int index = 0; in eatAllMemory() local
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DRandomBranchChanger.java55 int index = opcode.ordinal() - Opcode.IF_EQ.ordinal(); in getModifiedOpcode() local
59 int index = opcode.ordinal() - Opcode.IF_EQZ.ordinal(); in getModifiedOpcode() local
/art/libartbase/base/
Dlength_prefixed_array.h96 T& AtUnchecked(size_t index, size_t element_size, size_t alignment) { in AtUnchecked()
101 const T& AtUnchecked(size_t index, size_t element_size, size_t alignment) const { in AtUnchecked()
/art/compiler/optimizing/
Dload_store_analysis.h171 HInstruction* index, in HeapLocation()
282 HeapLocation* GetHeapLocation(size_t index) const { in GetHeapLocation()
328 HInstruction* index = instruction->InputAt(1); in GetArrayHeapLocation() local
374 HInstruction* index, in FindHeapLocationIndex()
528 HInstruction* index, in MaybeCreateHeapLocation()
558 HInstruction* index, in VisitArrayAccess()
598 HInstruction* index = instruction->InputAt(1); in VisitArrayGet() local
606 HInstruction* index = instruction->InputAt(1); in VisitArraySet() local
614 HInstruction* index = instruction->InputAt(1); in VisitVecLoad() local
622 HInstruction* index = instruction->InputAt(1); in VisitVecStore() local
/art/runtime/gc/accounting/
Datomic_stack.h103 int32_t index; in AtomicBumpBack() local
137 const int32_t index = back_index_.load(std::memory_order_relaxed); in PushBack() local
153 int32_t index = front_index_.load(std::memory_order_relaxed); in PopFront() local
240 int32_t index; in AtomicPushBackInternal() local
Dspace_bitmap-inl.h38 const size_t index = OffsetToIndex(offset); in AtomicTestAndSet() local
62 size_t index = OffsetToIndex(offset); in Test() local
192 const size_t index = OffsetToIndex(offset); in Modify() local
/art/test/121-modifiers/src2/
DMain.java138 int index = name.indexOf("Field"); in getFieldMask() local
167 int index = name.indexOf("Method"); in getMethodMask() local
/art/test/497-inlining-and-class-loader/
Dclear_dex_cache.cc52 uint32_t index = pair.index; in Java_Main_cloneResolvedMethods() local
78 uint32_t index; in Java_Main_restoreResolvedMethods() local

123456789