/external/llvm/test/CodeGen/X86/GC/ |
D | inline.ll | 3 %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()
|
D | inline2.ll | 4 %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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/GC/ |
D | inline.ll | 3 %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()
|
D | inline2.ll | 4 %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/antlr/runtime/ObjC/Framework/test/runtime/misc/ |
D | IntArrayTest.m | 10 #import "IntArray.h" 16 IntArray *intArray = [IntArray newArrayWithLen:10]; 25 IntArray *intArray = [IntArray newArrayWithLen:10]; 38 IntArray *intArray = [IntArray newArrayWithLen:10];
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/GC/ |
D | inline.ll | 3 %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* %obj, i32 0, i32 0 ; <i32*> [#uses=1] 23 declare %IntArray* @h()
|
D | inline2.ll | 4 %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* %obj, i32 0, i32 0 ; <i32*> [#uses=1] 24 declare %IntArray* @h()
|
/external/antlr/runtime/ObjC/Framework/ |
D | IntArray.m | 2 // 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;
|
D | IntArray.h | 34 @interface IntArray : NSObject 44 + (IntArray *)newArray; 45 + (IntArray *)newArrayWithLen:(NSUInteger)aLen;
|
D | CommonTreeNodeStream.h | 52 __strong IntArray *calls; 118 @property (retain) IntArray *calls;
|
D | BufferedTreeNodeStream.h | 78 IntArray *calls; 95 @property (retain, getter=getCalls, setter=setCalls:) IntArray *calls;
|
D | CommonTreeNodeStream.m | 62 calls = [[IntArray newArrayWithLen:INITIAL_CALL_STACK_SIZE] retain]; 78 calls = [[IntArray newArrayWithLen:INITIAL_CALL_STACK_SIZE] retain]; 196 calls = [[IntArray newArrayWithLen:INITIAL_CALL_STACK_SIZE] retain];
|
D | filelist.objc | 90 IntArray.m
|
D | ANTLR.h | 69 #import <ANTLR/IntArray.h>
|
D | antlr3.h | 69 #import <ANTLR/IntArray.h>
|
/external/clang/test/SemaTemplate/ |
D | instantiate-array.cpp | 12 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/tensorflow/tensorflow/lite/c/ |
D | c_api_internal_test.cc | 26 TEST(IntArray, TestIntArrayCreate) { in TEST() argument 33 TEST(IntArray, TestIntArrayCopy) { in TEST() argument 46 TEST(IntArray, TestIntArrayEqual) { in TEST() argument
|
D | builtin_op_data_test.cc | 26 TEST(IntArray, CanCompileStructs) { in TEST() argument
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/ |
D | ResStringPool.java | 48 private IntArray mEntries; 50 private IntArray mEntryStyles; 79 static class IntArray extends WithOffset { class in ResStringPool 80 IntArray(ByteBuffer buf, int offset) { in IntArray() method in ResStringPool.IntArray 169 mEntries = new IntArray(mHeader.myBuf(), mHeader.myOffset() + mHeader.header.headerSize); in setTo() 256 …mEntryStyles = new IntArray(mEntries.myBuf(), mEntries.myOffset() + mHeader.stringCount * SIZEOF_I… in setTo()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTreeNodeStream.java | 34 import org.antlr.runtime.misc.IntArray; 53 protected IntArray calls; 158 calls = new IntArray(); in push()
|
D | BufferedTreeNodeStream.java | 32 import org.antlr.runtime.misc.IntArray; 123 protected IntArray calls; 363 calls = new IntArray(); in push()
|
/external/skqp/src/gpu/ops/ |
D | GrAAHairLinePathRenderer.h | 18 typedef SkTArray<int, true> IntArray; typedef
|
D | GrAAHairLinePathRenderer.cpp | 251 GrAAHairLinePathRenderer::IntArray* quadSubdivCnts, in gather_lines_and_quads() 851 typedef SkTArray<int, true> IntArray; typedef in __anonf2b7e7970611::AAHairlineOp 935 IntArray qSubdivs; in onPrepareDraws()
|
/external/skia/src/gpu/ops/ |
D | GrAAHairLinePathRenderer.h | 18 typedef SkTArray<int, true> IntArray; typedef
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/misc/ |
D | IntArray.java | 44 public class IntArray { class
|