/art/test/712-varhandle-invocations/src/ |
D | SampleValues.java | 66 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 …]
|
D | VarHandleUnitTestHelpers.java | 56 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/ |
D | mkflame.py | 34 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/ |
D | Main.java | 34 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/ |
D | imt_conflict_table.h | 68 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()
|
D | imtable.h | 41 uint8_t* AddressOfElement(size_t index, PointerSize pointer_size) { in AddressOfElement() 45 ArtMethod* Get(size_t index, PointerSize pointer_size) { in Get() 57 void Set(size_t index, ArtMethod* method, PointerSize pointer_size) { in Set() 67 static size_t OffsetOfElement(size_t index, PointerSize pointer_size) { in OffsetOfElement()
|
D | quicken_info.h | 37 void AddIndex(uint16_t index) { in AddIndex() 54 uint16_t GetData(size_t index) const { in GetData()
|
D | stack_map.h | 307 ALWAYS_INLINE StackMap GetStackMapAt(size_t index) const { in GetStackMapAt() 311 BitMemoryRegion GetStackMask(size_t index) const { in GetStackMask() 316 uint32_t index = stack_map.GetStackMaskIndex(); in GetStackMaskOf() local 321 uint32_t index = stack_map.GetRegisterMaskIndex(); in GetRegisterMaskOf() local 329 ALWAYS_INLINE DexRegisterLocation GetDexRegisterCatalogEntry(size_t index) const { in GetDexRegisterCatalogEntry() 376 uint32_t index = stack_map.GetInlineInfoIndex(); in GetInlineInfosOf() local 448 size_t index = 0; in ForEachHeaderField() local 461 size_t index = 0; in ForEachBitTableField() local
|
D | index_bss_mapping.cc | 27 uint32_t index, in GetBssOffset() 50 uint32_t index, in GetBssOffset()
|
D | monitor_pool_test.cc | 80 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/ |
D | array.h | 98 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() 237 void** ElementAddress(size_t index, PointerSize ptr_size) REQUIRES_SHARED(Locks::mutator_lock_) { in ElementAddress()
|
/art/libdexfile/dex/ |
D | dex_file_types.h | 66 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()
|
D | bytecode_utils.h | 45 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()
|
D | string_reference_test.cc | 83 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/ |
D | Main.java | 120 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/ |
D | threadgroups.cc | 47 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/tools/dexfuzz/src/dexfuzz/program/mutators/ |
D | RandomBranchChanger.java | 55 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/ |
D | length_prefixed_array.h | 96 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()
|
D | hash_set.h | 48 HashSetIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) {} in HashSetIterator() 472 size_t index = FindIndexImpl(element, hash, find_fail_fn); in InsertWithHash() local 595 T& ElementForIndex(size_t index) { in ElementForIndex() 601 const T& ElementForIndex(size_t index) const { in ElementForIndex() 615 size_t NextIndex(size_t index) const { in NextIndex() 640 size_t index = IndexForHash(hash); in FindIndexImpl() local 653 bool IsFreeSlot(size_t index) const { in IsFreeSlot() 717 ALWAYS_INLINE size_t FirstAvailableSlot(size_t index) const { in FirstAvailableSlot() 728 size_t NextNonEmptySlot(size_t index) const { in NextNonEmptySlot()
|
/art/compiler/optimizing/ |
D | load_store_analysis.h | 99 HInstruction* index, in HeapLocation() 216 HeapLocation* GetHeapLocation(size_t index) const { in GetHeapLocation() 257 HInstruction* index = instruction->InputAt(1); in GetArrayHeapLocation() local 303 HInstruction* index, in FindHeapLocationIndex() 452 HInstruction* index, in GetOrCreateHeapLocation() 484 HInstruction* index, in VisitArrayAccess() 541 HInstruction* index = instruction->InputAt(1); in VisitArrayGet() local 549 HInstruction* index = instruction->InputAt(1); in VisitArraySet() local 557 HInstruction* index = instruction->InputAt(1); in VisitVecLoad() local 565 HInstruction* index = instruction->InputAt(1); in VisitVecStore() local
|
/art/runtime/gc/accounting/ |
D | atomic_stack.h | 103 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
|
D | space_bitmap-inl.h | 38 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/ |
D | Main.java | 138 int index = name.indexOf("Field"); in getFieldMask() local 167 int index = name.indexOf("Method"); in getMethodMask() local
|
/art/test/456-baseline-array-set/src/ |
D | Main.java | 22 public static void doArrayAccess(Integer value, int index) { in doArrayAccess()
|
/art/test/562-checker-no-intermediate/src/ |
D | Main.java | 99 static int index = 0; field in Main
|