Home
last modified time | relevance | path

Searched refs:IntArray (Results 1 – 25 of 144) sorted by relevance

123456

/external/llvm/test/CodeGen/X86/GC/
Dinline.ll3 %IntArray = type { i32, [0 x i32*] }
15 %obj = call %IntArray* @h( ) ; <%IntArray*> [#uses=2]
16 %obj.2 = bitcast %IntArray* %obj to i8* ; <i8*> [#uses=1]
18 %Length.ptr = getelementptr %IntArray, %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1]
23 declare %IntArray* @h()
Dinline2.ll4 %IntArray = type { i32, [0 x i32*] }
16 %obj = call %IntArray* @h( ) ; <%IntArray*> [#uses=2]
17 %obj.2 = bitcast %IntArray* %obj to i8* ; <i8*> [#uses=1]
19 %Length.ptr = getelementptr %IntArray, %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1]
24 declare %IntArray* @h()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DPackageRollbackInfoBuilder.java10 import android.util.IntArray;
26 private final IntArray pendingBackups = new IntArray();
30 private final IntArray installedUsers = new IntArray();
31 private final IntArray snapshottedUsers = new IntArray();
130 ReflectionHelpers.ClassParameter.from(IntArray.class, pendingBackups), in build()
133 ReflectionHelpers.ClassParameter.from(IntArray.class, installedUsers), in build()
140 ReflectionHelpers.ClassParameter.from(IntArray.class, pendingBackups), in build()
144 ReflectionHelpers.ClassParameter.from(IntArray.class, snapshottedUsers), in build()
/external/antlr/runtime/ObjC/Framework/test/runtime/misc/
DIntArrayTest.m10 #import "IntArray.h"
16 IntArray *intArray = [IntArray newArrayWithLen:10];
25 IntArray *intArray = [IntArray newArrayWithLen:10];
38 IntArray *intArray = [IntArray newArrayWithLen:10];
/external/giflib/
Dgetarg.c408 int *IntArray[MAX_PARAM]; in GAGetMultiParmeters() member
419 TmpArray.IntArray[NumOfPrm] = xmalloc(sizeof(int)); in GAGetMultiParmeters()
421 (int *)TmpArray.IntArray[NumOfPrm++]); in GAGetMultiParmeters()
424 TmpArray.IntArray[NumOfPrm] = xmalloc(sizeof(int)); in GAGetMultiParmeters()
427 (unsigned int *)TmpArray.IntArray[NumOfPrm++]); in GAGetMultiParmeters()
430 TmpArray.IntArray[NumOfPrm] = xmalloc(sizeof(int)); in GAGetMultiParmeters()
433 (unsigned int *)TmpArray.IntArray[NumOfPrm++]); in GAGetMultiParmeters()
436 TmpArray.IntArray[NumOfPrm] = xmalloc(sizeof(int)); in GAGetMultiParmeters()
439 (unsigned int *)TmpArray.IntArray[NumOfPrm++]); in GAGetMultiParmeters()
444 (long *)TmpArray.IntArray[NumOfPrm++]); in GAGetMultiParmeters()
[all …]
/external/renderscript-intrinsics-replacement-toolkit/test-app/src/main/java/com/google/android/renderscript_test/
DReferenceHistogram.kt39 ): IntArray { in <lambda>()
42 val counts = IntArray(paddedSize(input.vectorSize) * 256) in <lambda>()
66 ): IntArray { in referenceHistogramDot()
80 … val intCoefficients = IntArray(input.vectorSize) { (floatCoefficients[it] * 256f + 0.5f).toInt() } in referenceHistogramDot()
82 val counts = IntArray(256) in referenceHistogramDot()
DIntrinsicHistogram.kt38 ): IntArray { in intrinsicHistogram()
63 val intrinsicOutArray = IntArray(256 * paddedSize(vectorSize)) in intrinsicHistogram()
76 ): IntArray { in intrinsicHistogram()
98 val intrinsicOutArray = IntArray(256 * vectorSize) in intrinsicHistogram()
114 ): IntArray { in intrinsicHistogramDot()
147 val intrinsicOutArray = IntArray(256) in intrinsicHistogramDot()
161 ): IntArray { in intrinsicHistogramDot()
190 val intrinsicOutArray = IntArray(256) in intrinsicHistogramDot()
/external/accompanist/adaptive/src/main/java/com/google/accompanist/adaptive/
DRowColumnMeasurementHelper.kt50 val mainAxisPositions: IntArray, in <lambda>()
59 val arrangement: (Int, IntArray, LayoutDirection, Density, IntArray) -> Unit, in <lambda>()
247 val mainAxisPositions = IntArray(subSize) { 0 } in <lambda>()
248 val childrenMainAxisSize = IntArray(subSize) { index -> in <lambda>()
269 childrenMainAxisSize: IntArray, in <lambda>()
270 mainAxisPositions: IntArray, in <lambda>()
272 ): IntArray { in <lambda>()
/external/clang/test/SemaTemplate/
Dinstantiate-array.cpp12 template <int N> class IntArray { class
16 static_assert(sizeof(IntArray<10>) == sizeof(int) * 10, "Array size mismatch");
17 static_assert(sizeof(IntArray<1>) == sizeof(int) * 1, "Array size mismatch");
/external/dagger2/javatests/dagger/functional/kotlinsrc/basic/
DInjectedThing.kt63 intArray: IntArray,
71 intArrayProvider: Provider<IntArray>,
79 lazyIntArray: Lazy<IntArray>,
122 @Inject internal lateinit var intArray: IntArray
130 @Inject internal lateinit var intArrayProvider: Provider<IntArray>
138 @Inject internal lateinit var lazyIntArray: Lazy<IntArray>
176 @Inject internal fun intArray(intArray: IntArray) {} in intArray()
184 @Inject internal fun intArrayProvider(intArrayProvider: Provider<IntArray>) {} in intArrayProvider()
192 @Inject internal fun lazyIntArray(lazyIntArray: Lazy<IntArray>) {} in lazyIntArray()
DBasicComponent.kt53 fun intArrayFun(): IntArray
62 fun intArrayProviderFun(): Provider<IntArray>
105 val intArrayVal: IntArray
114 val intArrayProviderVal: Provider<IntArray>
/external/antlr/runtime/ObjC/Framework/
DIntArray.m2 // IntArray.m
31 #import "IntArray.h"
34 @implementation IntArray implementation
43 + (IntArray *)newArray
45 return [[IntArray alloc] init];
48 + (IntArray *)newArrayWithLen:(NSUInteger)aLen
50 return [[IntArray alloc] initWithLen:aLen];
84 NSLog( @"called dealloc in IntArray" );
92 IntArray *copy;
DIntArray.h34 @interface IntArray : NSObject
44 + (IntArray *)newArray;
45 + (IntArray *)newArrayWithLen:(NSUInteger)aLen;
/external/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/
DAsserts.kt8 fun assertArrayEquals(expected: IntArray, actual: IntArray) = in assertArrayEquals()
29 fun arrayFailMessage(expected: IntArray, actual: IntArray): String = in assertArrayEquals()
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DPackageRollbackInfoBuilderTest.java9 import android.util.IntArray;
94 ((IntArray) ReflectionHelpers.callInstanceMethod(packageRollbackInfo, "getPendingBackups")) in build_onQ()
105 IntArray installedUsers = in build_onQ()
136 ((IntArray) ReflectionHelpers.callInstanceMethod(packageRollbackInfo, "getPendingBackups")) in build_onR()
149 ((IntArray) in build_onR()
/external/okio/okio/src/commonMain/kotlin/okio/
DSegmentedByteString.kt45 directory: IntArray,
49 internal val directory: IntArray
/external/dokka/core/testdata/format/
DsummarizeSignaturesProperty.kt4 class IntArray class
10 val IntArray.foo: Int = 0 constant
DsummarizeSignatures.kt4 class IntArray class
10 fun IntArray.foo(predicate: (Int) -> Boolean): Boolean = false method
DsummarizeSignaturesProperty.md9 | [IntArray](-int-array/index.md) | `class IntArray` |
DsummarizeSignatures.md9 | [IntArray](-int-array/index.md) | `class IntArray` |
/external/kotlinx.serialization/core/commonMain/src/kotlinx/serialization/internal/
DPrimitiveArraysSerializers.kt121 internal object IntArraySerializer : KSerializer<IntArray>, in build()
122 PrimitiveArraySerializer<Int, IntArray, IntArrayBuilder>(Int.serializer()) { in build()
124 override fun IntArray.collectionSize(): Int = size in build()
125 override fun IntArray.toBuilder(): IntArrayBuilder = IntArrayBuilder(this) in build()
126 override fun empty(): IntArray = IntArray(0) in build()
132 override fun writeContent(encoder: CompositeEncoder, content: IntArray, size: Int) { in build()
140 bufferWithData: IntArray
141 ) : PrimitiveArrayBuilder<IntArray>() {
143 private var buffer: IntArray = bufferWithData
/external/kotlinpoet/docs/
Dp-for-string-templates.md45 .addParameter("digits", IntArray::class)
61 import kotlin.IntArray
64 fun print(digits: IntArray) {
/external/renderscript-intrinsics-replacement-toolkit/renderscript-toolkit/src/main/java/com/google/android/renderscript/
DToolkit.kt571 ): IntArray { in histogram()
582 val outputArray = IntArray(256 * paddedSize(vectorSize)) in histogram()
623 ): IntArray { in histogram()
627 val outputArray = IntArray(256 * vectorSize(inputBitmap)) in histogram()
672 ): IntArray { in histogramDot()
684 val outputArray = IntArray(256) in histogramDot()
732 ): IntArray { in histogramDot()
737 val outputArray = IntArray(256) in histogramDot()
1198 outputArray: IntArray, in createNative()
1205 outputArray: IntArray, in createNative()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/selects/
DSelectBiasTest.kt14 val counter = IntArray(2) in <lambda>()
30 val counter = IntArray(2) in <lambda>()
/external/robolectric/resources/src/main/java/org/robolectric/res/android/
DResStringPool.java47 private IntArray mEntries;
49 private IntArray mEntryStyles;
78 static class IntArray extends WithOffset { class in ResStringPool
79 IntArray(ByteBuffer buf, int offset) { in IntArray() method in ResStringPool.IntArray
170 mEntries = new IntArray(mHeader.myBuf(), mHeader.myOffset() + mHeader.header.headerSize); in setTo()
261 new IntArray(mEntries.myBuf(), mEntries.myOffset() + mHeader.stringCount * SIZEOF_INT); in setTo()

123456