Home
last modified time | relevance | path

Searched defs:array (Results 101 – 125 of 6340) sorted by relevance

12345678910>>...254

/aosp_15_r20/external/compiler-rt/test/asan/TestCases/
H A Dstrtoll_strict.c33 void test1(char *array, char *endptr) { in test1()
40 void test2(char *array, char *endptr) { in test2()
48 void test3(char *array, char *endptr) { in test3()
57 void test4(char *array, char *endptr) { in test4()
63 void test5(char *array, char *endptr) { in test5()
72 void test6(char *array, char *endptr) { in test6()
81 void test7(char *array, char *endptr) { in test7()
90 char* array = array0 + 8; in main() local
H A Dstrtol_strict.c31 void test1(char *array, char *endptr) { in test1()
38 void test2(char *array, char *endptr) { in test2()
46 void test3(char *array, char *endptr) { in test3()
64 void test4(char *array, char *endptr) { in test4()
79 void test5(char *array, char *endptr) { in test5()
88 void test6(char *array, char *endptr) { in test6()
97 void test7(char *array, char *endptr) { in test7()
106 char* array = array0 + 8; in main() local
/aosp_15_r20/frameworks/base/core/java/com/android/internal/util/
H A DGrowingArrayUtils.java45 public static <T> T[] append(T[] array, int currentSize, T element) { in append()
63 public static int[] append(int[] array, int currentSize, int element) { in append()
78 public static long[] append(long[] array, int currentSize, long element) { in append()
93 public static boolean[] append(boolean[] array, int currentSize, boolean element) { in append()
108 public static float[] append(float[] array, int currentSize, float element) { in append()
131 public static <T> T[] insert(T[] array, int currentSize, int index, T element) { in insert()
152 public static int[] insert(int[] array, int currentSize, int index, int element) { in insert()
171 public static long[] insert(long[] array, int currentSize, int index, long element) { in insert()
190 public static boolean[] insert(boolean[] array, int currentSize, int index, boolean element) { in insert()
/aosp_15_r20/external/leakcanary2/shark-graph/src/main/java/shark/internal/
H A DByteSubArray.kt7 private val array: ByteArray, constant in shark.internal.ByteSubArray
50 val array = array in readTruncatedLong() constant
75 val array = this in readShort() constant
82 val array = this in readInt() constant
91 val array = this in readLong() constant
/aosp_15_r20/external/pigweed/pw_span/
H A Dspan_test.cc68 char array[] = {'a', 'b', 'c', 'd', '\0'}; in TEST() local
79 static constexpr char array[] = {'a', 'b', 'c', 'd', '\0'}; in TEST() local
89 std::array<char, 5> array{'a', 'b', 'c', 'd'}; in TEST() local
100 static constexpr std::array<char, 5> array{'a', 'b', 'c', 'd'}; in TEST() local
198 std::array<int, 5> array{1, 3, 5, 7, 9}; in TEST() local
394 int array[] = {5, 4, 3, 2, 1}; in TEST() local
418 std::array<int, 5> array = {{5, 4, 3, 2, 1}}; in TEST() local
589 static constexpr int array[] = {1, 2, 3}; in TEST() local
628 static constexpr int array[] = {1, 2, 3}; in TEST() local
667 static constexpr int array[] = {1, 2, 3}; in TEST() local
[all …]
/aosp_15_r20/external/grpc-grpc/third_party/upb/upb/message/
H A Darray_split64.h22 UPB_API_INLINE uint32_t upb_Array_GetInt64Hi(const upb_Array* array, size_t i) { in upb_Array_GetInt64Hi()
26 UPB_API_INLINE uint32_t upb_Array_GetInt64Lo(const upb_Array* array, size_t i) { in upb_Array_GetInt64Lo()
30 UPB_API_INLINE void upb_Array_SetInt64Split(upb_Array* array, size_t i, in upb_Array_SetInt64Split()
36 UPB_API_INLINE bool upb_Array_AppendInt64Split(upb_Array* array, uint32_t hi, in upb_Array_AppendInt64Split()
42 UPB_API_INLINE uint32_t upb_Array_GetUInt64Hi(const upb_Array* array, in upb_Array_GetUInt64Hi()
47 UPB_API_INLINE uint32_t upb_Array_GetUInt64Lo(const upb_Array* array, in upb_Array_GetUInt64Lo()
52 UPB_API_INLINE void upb_Array_SetUInt64Split(upb_Array* array, size_t i, in upb_Array_SetUInt64Split()
58 UPB_API_INLINE bool upb_Array_AppendUInt64Split(upb_Array* array, uint32_t hi, in upb_Array_AppendUInt64Split()
/aosp_15_r20/frameworks/av/media/libstagefright/
H A DACodecBufferChannel.cpp62 const std::shared_ptr<const std::vector<BufferInfo>> &array, in findClientBuffer()
70 const std::shared_ptr<const std::vector<BufferInfo>> &array, in findBufferId()
100 std::shared_ptr<const std::vector<BufferInfo>> array( in queueInputBuffer() local
141 std::shared_ptr<const std::vector<BufferInfo>> array( in queueSecureInputBuffer() local
355 std::shared_ptr<const std::vector<BufferInfo>> array( in attachEncryptedBuffer() local
476 std::shared_ptr<const std::vector<BufferInfo>> array( in renderOutputBuffer() local
498 std::shared_ptr<const std::vector<BufferInfo>> array( in discardBuffer() local
519 void ACodecBufferChannel::getInputBufferArray(Vector<sp<MediaCodecBuffer>> *array) { in getInputBufferArray()
528 void ACodecBufferChannel::getOutputBufferArray(Vector<sp<MediaCodecBuffer>> *array) { in getOutputBufferArray()
565 void ACodecBufferChannel::setInputBufferArray(const std::vector<BufferAndId> &array) { in setInputBufferArray()
[all …]
/aosp_15_r20/frameworks/base/core/tests/utiltests/src/android/util/
H A DMemoryIntArrayTest.java56 MemoryIntArray array = null; in testSize() local
67 MemoryIntArray array = null; in testGetSet() local
85 MemoryIntArray array = null; in testWritable() local
96 MemoryIntArray array = null; in testClose() local
138 MemoryIntArray array = null; in testInteractOnceClosed() local
181 MemoryIntArray array = null; in testInteractPutOfBounds() local
219 MemoryIntArray array = null; in testOverMaxSize() local
264 MemoryIntArray array = new MemoryIntArray(1); in testAshmemSizeMatchesMemoryIntArraySize() local
/aosp_15_r20/frameworks/base/core/java/android/os/
H A DHwParcel.java238 short[] array = new short[n]; in writeInt16Vector() local
252 int[] array = new int[n]; in writeInt32Vector() local
266 long[] array = new long[n]; in writeInt64Vector() local
280 float[] array = new float[n]; in writeFloatVector() local
294 double[] array = new double[n]; in writeDoubleVector() local
495 Boolean[] array = HwBlob.wrapArray(readBoolVectorAsArray()); in readBoolVector() local
506 Byte[] array = HwBlob.wrapArray(readInt8VectorAsArray()); in readInt8Vector() local
517 Short[] array = HwBlob.wrapArray(readInt16VectorAsArray()); in readInt16Vector() local
528 Integer[] array = HwBlob.wrapArray(readInt32VectorAsArray()); in readInt32Vector() local
539 Long[] array = HwBlob.wrapArray(readInt64VectorAsArray()); in readInt64Vector() local
[all …]
/aosp_15_r20/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DDumpUtilsTest.java195 SparseArray<String> array = new SparseArray<>(); in testDumpSparseArray_empty() local
206 SparseArray<String> array = new SparseArray<>(); in testDumpSparseArray_oneElement() local
220 SparseArray<String> array = new SparseArray<>(); in testDumpSparseArray_oneNullElement() local
234 SparseArray<String> array = new SparseArray<>(); in testDumpSparseArray_multipleElements() local
252 SparseArray<String> array = new SparseArray<>(); in testDumpSparseArray_keyDumperOnly() local
273 SparseArray<String> array = new SparseArray<>(); in testDumpSparseArray_valueDumperOnly() local
295 SparseArray<String> array = new SparseArray<>(); in testDumpSparseArray_keyAndValueDumpers() local
319 SparseArray<String> array = new SparseArray<>(); in testDumpSparseArrayValues() local
/aosp_15_r20/external/mesa3d/src/egl/main/
H A Deglarray.c39 _eglGrowArray(_EGLArray *array) in _eglGrowArray()
67 _EGLArray *array; in _eglCreateArray() local
86 _eglDestroyArray(_EGLArray *array, void (*free_cb)(void *)) in _eglDestroyArray()
101 _eglAppendArray(_EGLArray *array, void *elem) in _eglAppendArray()
113 _eglEraseArray(_EGLArray *array, EGLint i, void (*free_cb)(void *)) in _eglEraseArray()
128 _eglFindArray(_EGLArray *array, void *elem) in _eglFindArray()
145 _eglFilterArray(_EGLArray *array, void **data, EGLint size, in _eglFilterArray()
172 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size, in _eglFlattenArray()
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/
DSpliterators.java140 public static <T> Spliterator<T> spliterator(Object[] array, in spliterator()
175 public static <T> Spliterator<T> spliterator(Object[] array, int fromIndex, int toIndex, in spliterator()
204 public static Spliterator.OfInt spliterator(int[] array, in spliterator()
237 public static Spliterator.OfInt spliterator(int[] array, int fromIndex, int toIndex, in spliterator()
266 public static Spliterator.OfLong spliterator(long[] array, in spliterator()
303 public static Spliterator.OfLong spliterator(long[] array, int fromIndex, int toIndex, in spliterator()
332 public static Spliterator.OfDouble spliterator(double[] array, in spliterator()
369 public static Spliterator.OfDouble spliterator(double[] array, int fromIndex, int toIndex, in spliterator()
947 private final Object[] array; field in Spliterators.ArraySpliterator
962 public ArraySpliterator(Object[] array, int additionalCharacteristics) { in ArraySpliterator()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/
DSpliterators.java140 public static <T> Spliterator<T> spliterator(Object[] array, in spliterator()
175 public static <T> Spliterator<T> spliterator(Object[] array, int fromIndex, int toIndex, in spliterator()
204 public static Spliterator.OfInt spliterator(int[] array, in spliterator()
237 public static Spliterator.OfInt spliterator(int[] array, int fromIndex, int toIndex, in spliterator()
266 public static Spliterator.OfLong spliterator(long[] array, in spliterator()
303 public static Spliterator.OfLong spliterator(long[] array, int fromIndex, int toIndex, in spliterator()
332 public static Spliterator.OfDouble spliterator(double[] array, in spliterator()
369 public static Spliterator.OfDouble spliterator(double[] array, int fromIndex, int toIndex, in spliterator()
947 private final Object[] array; field in Spliterators.ArraySpliterator
962 public ArraySpliterator(Object[] array, int additionalCharacteristics) { in ArraySpliterator()
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/
H A DSpliterators.java140 public static <T> Spliterator<T> spliterator(Object[] array, in spliterator()
175 public static <T> Spliterator<T> spliterator(Object[] array, int fromIndex, int toIndex, in spliterator()
204 public static Spliterator.OfInt spliterator(int[] array, in spliterator()
237 public static Spliterator.OfInt spliterator(int[] array, int fromIndex, int toIndex, in spliterator()
266 public static Spliterator.OfLong spliterator(long[] array, in spliterator()
303 public static Spliterator.OfLong spliterator(long[] array, int fromIndex, int toIndex, in spliterator()
332 public static Spliterator.OfDouble spliterator(double[] array, in spliterator()
369 public static Spliterator.OfDouble spliterator(double[] array, int fromIndex, int toIndex, in spliterator()
947 private final Object[] array; field in Spliterators.ArraySpliterator
962 public ArraySpliterator(Object[] array, int additionalCharacteristics) { in ArraySpliterator()
[all …]
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
Drtutils.h87 #define RouterLogErrorA(h,msg,count,array,err) RouterLogEventA(h,EVENTLOG_ERROR_TYPE,msg,count,arra… argument
88 #define RouterLogWarningA(h,msg,count,array,err) RouterLogEventA(h,EVENTLOG_WARNING_TYPE,msg,count,… argument
89 #define RouterLogInformationA(h,msg,count,array,err) RouterLogEventA(h,EVENTLOG_INFORMATION_TYPE,ms… argument
91 #define RouterLogErrorDataA(h,msg,count,array,c,buf) RouterLogEventDataA(h,EVENTLOG_ERROR_TYPE,msg,… argument
92 #define RouterLogWarningDataA(h,msg,count,array,c,buf) RouterLogEventDataA(h,EVENTLOG_WARNING_TYPE,… argument
93 #define RouterLogInformationDataA(h,msg,count,array,c,buf) RouterLogEventDataA(h,EVENTLOG_INFORMATI… argument
95 #define RouterLogErrorStringA(h,msg,count,array,err,index) RouterLogEventStringA(h,EVENTLOG_ERROR_T… argument
96 #define RouterLogWarningStringA(h,msg,count,array,err,index) RouterLogEventStringA(h,EVENTLOG_WARNI… argument
97 #define RouterLogInformationStringA(h,msg,count,array,err,index) RouterLogEventStringA(h,EVENTLOG_I… argument
108 #define RouterLogErrorW(h,msg,count,array,err) RouterLogEventW(h,EVENTLOG_ERROR_TYPE,msg,count,arra… argument
[all …]
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
H A DCharBufferTest.java54 char array[] = buf.array(); in testArray() local
71 char array[] = buf.array(); in testArrayOffset() local
319 char array[] = new char[1]; in testGetcharArray() local
340 char array[] = new char[buf.capacity()]; in testGetcharArrayintint() local
459 char array[] = new char[1]; in testPutcharArray() local
488 char array[] = new char[buf.capacity()]; in testPutcharArrayintint() local
798 char array[] = new char[buf.capacity()]; in testPutStringintint() local
808 void loadTestData1(char array[], int offset, int length) { in loadTestData1()
814 void loadTestData2(char array[], int offset, int length) { in loadTestData2()
834 private void assertContentEquals(CharBuffer buf, char array[], int offset, in assertContentEquals()
[all …]
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/drawable/
H A DLayerDrawable.java193 final ChildDrawable[] array = state.mChildren; in inflate() local
221 final ChildDrawable[] array = state.mChildren; in applyTheme() local
1014 final ChildDrawable[] array = mLayerState.mChildren; in draw() local
1241 final ChildDrawable[] array = mLayerState.mChildren; in computeNestedPadding() local
1260 final ChildDrawable[] array = mLayerState.mChildren; in computeStackedPadding() local
1279 final ChildDrawable[] array = mLayerState.mChildren; in getOutline() local
1294 final ChildDrawable[] array = mLayerState.mChildren; in setHotspot() local
1306 final ChildDrawable[] array = mLayerState.mChildren; in setHotspotBounds() local
1334 final ChildDrawable[] array = mLayerState.mChildren; in setVisible() local
1348 final ChildDrawable[] array = mLayerState.mChildren; in setDither() local
[all …]
/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/
H A DCharSetTest.java65 CharRange[] array; in testConstructor_String_simple() local
105 CharRange[] array; in testConstructor_String_combo() local
144 CharRange[] array; in testConstructor_String_comboNegated() local
185 CharRange[] array; in testConstructor_String_oddDash() local
233 CharRange[] array; in testConstructor_String_oddNegate() local
293 CharRange[] array; in testConstructor_String_oddCombinations() local
421 final CharRange[] array = dtob.getCharRanges(); in testContains_Char() local
438 CharRange[] array; in testStatics() local
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/test/java/com/google/android/exoplayer2/util/
H A DParsableNalUnitBitArrayTest.java35 ParsableNalUnitBitArray array = in readNoEscaping() local
47 ParsableNalUnitBitArray array = new ParsableNalUnitBitArray(NO_ESCAPING_TEST_DATA, 0, 4); in readNoEscapingTruncated() local
61 ParsableNalUnitBitArray array = in readAllEscaping() local
73 ParsableNalUnitBitArray array = in readMix() local
87 ParsableNalUnitBitArray array = new ParsableNalUnitBitArray(createByteArray(0x9E), 0, 1); in readExpGolomb() local
103 ParsableNalUnitBitArray array = in readExpGolombWithEscaping() local
114 ParsableNalUnitBitArray array = new ParsableNalUnitBitArray(createByteArray(0, 0), 0, 2); in reset() local
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/test/java/com/google/android/exoplayer2/util/
H A DParsableNalUnitBitArrayTest.java35 ParsableNalUnitBitArray array = in readNoEscaping() local
47 ParsableNalUnitBitArray array = new ParsableNalUnitBitArray(NO_ESCAPING_TEST_DATA, 0, 4); in readNoEscapingTruncated() local
61 ParsableNalUnitBitArray array = in readAllEscaping() local
73 ParsableNalUnitBitArray array = in readMix() local
87 ParsableNalUnitBitArray array = new ParsableNalUnitBitArray(createByteArray(0x9E), 0, 1); in readExpGolomb() local
103 ParsableNalUnitBitArray array = in readExpGolombWithEscaping() local
114 ParsableNalUnitBitArray array = new ParsableNalUnitBitArray(createByteArray(0, 0), 0, 2); in reset() local
/aosp_15_r20/external/cronet/third_party/icu/source/common/
H A Dunistr.cpp162 char16_t *array = getArrayStart(); in UnicodeString() local
180 char16_t *array = getArrayStart(); in UnicodeString() local
382 int32_t *array = (int32_t *) uprv_malloc(numBytes); in allocate() local
629 const char16_t *array = getBuffer(); in unescape() local
835 const char16_t *array = getArrayStart(); in char32At() local
847 const char16_t *array = getArrayStart(); in getChar32Start() local
859 const char16_t *array = getArrayStart(); in getChar32Limit() local
891 const char16_t *array = getArrayStart(); in moveIndex32() local
911 const char16_t *array = getArrayStart(); in doExtract() local
925 const char16_t *array = getArrayStart(); in extract() local
[all …]
/aosp_15_r20/external/icu/icu4c/source/common/
H A Dunistr.cpp162 char16_t *array = getArrayStart(); in UnicodeString() local
180 char16_t *array = getArrayStart(); in UnicodeString() local
382 int32_t *array = (int32_t *) uprv_malloc(numBytes); in allocate() local
629 const char16_t *array = getBuffer(); in unescape() local
835 const char16_t *array = getArrayStart(); in char32At() local
847 const char16_t *array = getArrayStart(); in getChar32Start() local
859 const char16_t *array = getArrayStart(); in getChar32Limit() local
891 const char16_t *array = getArrayStart(); in moveIndex32() local
911 const char16_t *array = getArrayStart(); in doExtract() local
925 const char16_t *array = getArrayStart(); in extract() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.chunk.by/range.chunk.by.iter/
H A Dincrement.pass.cpp49 std::array array{0, 1, 2, 3, 4}; in test() local
61 std::array array{1, 2, 3, -1, -2, -3}; in test() local
72 std::array array{1, 2, 3, 4, 1}; in test() local
82 std::array array{0, 1, 0, 2, 0, 3, 0, 4}; in test() local
99 std::array array{1, 2, 3, -3, -2, -1}; in test() local
111 std::array array = {1, 2, 3, -3, -2, -1}; in test() local
126 std::array array{1, 2, 1, 3}; in test() local
139 std::array array{0, 1, 2, -3, -2, -1, -6, -5, -4}; in test() local
H A Ddecrement.pass.cpp61 std::array array{0, 1, 2, 3, 4}; in test() local
72 std::array array{0, 1, 2, 0, 1, 2}; in test() local
86 std::array array{7, 8, 9, 4, 5, 6, 1, 2, 3, 0}; in test() local
115 std::array array{1, 2, 1, 2, 1}; in test() local
127 std::array array{1, 2, 3, -3, -2, -1}; in test() local
139 std::array array = {1, 2, 3, -3, -2, -1}; in test() local
153 std::array array{1, 2, 1, 3}; in test() local
166 std::array array{0, 1, 2, -3, -2, -1, -6, -5, -4}; in test() local
/aosp_15_r20/packages/modules/Connectivity/staticlibs/framework/com/android/net/module/util/
DCollectionUtils.java42 public static <T> boolean isEmpty(@Nullable T[] array) { in isEmpty()
58 int[] array = new int[list.size()]; in toIntArray() local
72 long[] array = new long[list.size()]; in toLongArray() local
118 public static <T> boolean any(@NonNull SparseArray<T> array, @NonNull Predicate<T> predicate) { in any()
130 public static boolean contains(@Nullable short[] array, short value) { in contains()
143 public static boolean contains(@Nullable int[] array, int value) { in contains()
156 public static <T> boolean contains(@Nullable T[] array, @Nullable T value) { in contains()
163 public static <T> int indexOf(@Nullable T[] array, @Nullable T value) { in indexOf()
211 public static long total(@Nullable long[] array) { in total()

12345678910>>...254