/external/zlib/src/contrib/infback9/ |
D | infback9.c | 244 code here; /* current decoding table entry */ local 385 here = lencode[BITS(lenbits)]; 386 if ((unsigned)(here.bits) <= bits) break; 389 if (here.val < 16) { 390 NEEDBITS(here.bits); 391 DROPBITS(here.bits); 392 state->lens[state->have++] = here.val; 395 if (here.val == 16) { 396 NEEDBITS(here.bits + 2); 397 DROPBITS(here.bits); [all …]
|
/external/zlib/src/ |
D | inftrees.c | 53 code here; /* table entry for duplication */ local 118 here.op = (unsigned char)64; /* invalid code marker */ 119 here.bits = (unsigned char)1; 120 here.val = (unsigned short)0; 121 *(*table)++ = here; /* make a table to force an error */ 122 *(*table)++ = here; 218 here.bits = (unsigned char)(len - drop); 220 here.op = (unsigned char)0; 221 here.val = work[sym]; 224 here.op = (unsigned char)(extra[work[sym]]); [all …]
|
D | infback.c | 265 code here; /* current decoding table entry */ local 401 here = state->lencode[BITS(state->lenbits)]; 402 if ((unsigned)(here.bits) <= bits) break; 405 if (here.val < 16) { 406 DROPBITS(here.bits); 407 state->lens[state->have++] = here.val; 410 if (here.val == 16) { 411 NEEDBITS(here.bits + 2); 412 DROPBITS(here.bits); 422 else if (here.val == 17) { [all …]
|
D | inffast.c | 90 code here; /* retrieved table entry */ local 127 here = lcode[hold & lmask]; 129 op = (unsigned)(here.bits); 132 op = (unsigned)(here.op); 134 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? 136 "inflate: literal 0x%02x\n", here.val)); 137 PUP(out) = (unsigned char)(here.val); 140 len = (unsigned)(here.val); 158 here = dcode[hold & dmask]; 160 op = (unsigned)(here.bits); [all …]
|
/external/pdfium/third_party/zlib_v128/ |
D | inftrees.c | 53 code here; /* table entry for duplication */ in inflate_table() local 118 here.op = (unsigned char)64; /* invalid code marker */ in inflate_table() 119 here.bits = (unsigned char)1; in inflate_table() 120 here.val = (unsigned short)0; in inflate_table() 121 *(*table)++ = here; /* make a table to force an error */ in inflate_table() 122 *(*table)++ = here; in inflate_table() 218 here.bits = (unsigned char)(len - drop); in inflate_table() 220 here.op = (unsigned char)0; in inflate_table() 221 here.val = work[sym]; in inflate_table() 224 here.op = (unsigned char)(extra[work[sym]]); in inflate_table() [all …]
|
D | infback.c | 265 code here; /* current decoding table entry */ in inflateBack() local 401 here = state->lencode[BITS(state->lenbits)]; in inflateBack() 402 if ((unsigned)(here.bits) <= bits) break; in inflateBack() 405 if (here.val < 16) { in inflateBack() 406 DROPBITS(here.bits); in inflateBack() 407 state->lens[state->have++] = here.val; in inflateBack() 410 if (here.val == 16) { in inflateBack() 411 NEEDBITS(here.bits + 2); in inflateBack() 412 DROPBITS(here.bits); in inflateBack() 422 else if (here.val == 17) { in inflateBack() [all …]
|
D | inffast.c | 90 code here; /* retrieved table entry */ in inflate_fast() local 127 here = lcode[hold & lmask]; in inflate_fast() 129 op = (unsigned)(here.bits); in inflate_fast() 132 op = (unsigned)(here.op); in inflate_fast() 134 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? in inflate_fast() 136 "inflate: literal 0x%02x\n", here.val)); in inflate_fast() 137 PUP(out) = (unsigned char)(here.val); in inflate_fast() 140 len = (unsigned)(here.val); in inflate_fast() 158 here = dcode[hold & dmask]; in inflate_fast() 160 op = (unsigned)(here.bits); in inflate_fast() [all …]
|
/external/llvm/test/Bitcode/ |
D | blockaddress.ll | 8 br label %here.i 10 here.i: 11 store i8* blockaddress(@doit, %here), i8** %ptr1, align 8 12 ; CHECK: blockaddress(@doit, %here) 22 br label %here 24 here: 25 store i8* blockaddress(@doit, %here), i8** %pptr, align 8 26 ; CHECK: blockaddress(@doit, %here) 37 br label %here 39 here: [all …]
|
/external/valgrind/gdbserver_tests/ |
D | hgtls.stdoutB.exp | 4 55 int here = 0; 7 55 int here = 0; 10 55 int here = 0; 13 55 int here = 0; 16 55 int here = 0; 19 55 int here = 0; 22 55 int here = 0; 25 55 int here = 0; 28 55 int here = 0; 31 55 int here = 0; [all …]
|
/external/clang/test/SemaOpenCL/ |
D | invalid-kernel-parameters.cl | 16 typedef struct ContainsBool // expected-note{{within field of type 'ContainsBool' declared here}} 18 bool x; // expected-note{{field of illegal type 'bool' declared here}} 25 typedef struct FooImage2D // expected-note{{within field of type 'FooImage2D' declared here}} 27 image2d_t imageField; // expected-note{{field of illegal type 'image2d_t' declared here}} 32 typedef struct Foo // expected-note{{within field of type 'Foo' declared here}} 34 int* ptrField; // expected-note{{field of illegal pointer type 'int *' declared here}} 39 typedef union FooUnion // expected-note{{within field of type 'FooUnion' declared here}} 41 int* ptrField; // expected-note{{field of illegal pointer type 'int *' declared here}} 46 …edef struct NestedPointer // expected-note 2 {{within field of type 'NestedPointer' declared here}} 51 int* ptrField; // expected-note 3 {{field of illegal pointer type 'int *' declared here}} [all …]
|
/external/clang/test/SemaObjC/ |
D | undef-protocol-methods-1.m | 4 - (void) P1proto; // expected-note {{method 'P1proto' declared here}} 5 + (void) ClsP1Proto; // expected-note {{method 'ClsP1Proto' declared here}} 9 - (void) P2proto; // expected-note {{method 'P2proto' declared here}} 10 + (void) ClsP2Proto; // expected-note {{method 'ClsP2Proto' declared here}} 14 - (void) P3proto; // expected-note {{method 'P3proto' declared here}} 15 + (void) ClsP3Proto; // expected-note {{method 'ClsP3Proto' declared here}} 20 - (void) meth; // expected-note {{method 'meth' declared here}} 21 - (void) meth : (int) arg1; // expected-note {{method 'meth:' declared here}} 22 + (void) cls_meth : (int) arg1; // expected-note {{method 'cls_meth:' declared here}}
|
D | property-deprecated-warning.m | 9 …perty 'ptarget' is declared deprecated here}} expected-note {{'ptarget' has been explicitly marked… 12 …artialPtarget' is declared partial here}} expected-note@+2 {{'partialPtarget' has been explicitly … 24 …erty 'target' is declared deprecated here}} expected-note {{'setTarget:' has been explicitly marke… 27 …artialTarget' is declared partial here}} expected-note@+2 {{'setPartialTarget:' has been explicitl… 38 …deprecated=3.0))); // expected-note 2 {{'dep_target' has been explicitly marked deprecated here}} \ 39 … // expected-note 4 {{property 'dep_target' is declared deprecated here}} \ 40 … // expected-note 2 {{'setDep_target:' has been explicitly marked deprecated here}} 43 …here}} expected-note@+2 2 {{'partial_dep_target' has been explicitly marked partial here}} expecte… 98 …ed' has been explicitly marked deprecated here}} expected-note {{property 'enabled' is declared de… 100 …:' has been explicitly marked deprecated here}} expected-note {{property 'delegate' is declared de… [all …]
|
D | arc-repeated-weak.mm | 23 use(a.weakProp); // expected-note{{also accessed here}} 28 use(a.weakProp); // expected-note{{also accessed here}} 56 a.weakProp = get(); // expected-note{{also accessed here}} 67 use(a.strongProp.weakProp); // expected-note{{also accessed here}} 72 use(a.strongProp.weakProp); // expected-note{{also accessed here}} 77 use(a.implicitProp); // expected-note{{also accessed here}} 82 use(Test.weakProp); // expected-note{{also accessed here}} 93 use(a->weakIvar); // expected-note{{also accessed here}} 99 use(a); // expected-note{{also accessed here}} 104 use([a weakProp]); // expected-note{{also accessed here}} [all …]
|
D | special-dep-unavail-warning.m | 6 …Meth __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}} 7 …ttribute__((deprecated)); // expected-note {{'depInA1' has been explicitly marked deprecated here}} 9 …ttribute__((deprecated)); // expected-note {{'depInA2' has been explicitly marked deprecated here}} 10 …eth2 __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}} 12 …ed)) __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}} 13 …ribute__((deprecated)); // expected-note {{'FuzzyMeth' has been explicitly marked deprecated here}} 18 …eth1 __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}} 19 …attribute__((deprecated)); // expected-note {{'depInA' has been explicitly marked deprecated here}} 23 …ed)) __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}} 26 …ibute__((deprecated)); // expected-note {{'FuzzyMeth1' has been explicitly marked deprecated here}} [all …]
|
D | check-dup-objc-decls-1.m | 3 @interface Foo // expected-note {{previous definition is here}} 8 @class Bar; // expected-note {{previous definition is here}} 16 typedef int OBJECT; // expected-note {{previous definition is here}} 21 typedef int Gorf; // expected-note {{previous definition is here}} 23 …{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}} 32 @interface A<P> @end // expected-note {{previous definition is here}} 35 @protocol PP<P> @end // expected-note {{previous definition is here}} 38 @interface A(Cat)<P> @end // expected-note {{previous definition is here}} 43 NSString * TestBaz; // expected-note {{previous definition is here}}
|
D | arc-property.m | 11 @property (strong) id myString; // expected-note {{property declared here}} 13 @property (retain) id myString2; // expected-note {{property declared here}} 17 @property __weak id myString5; // expected-note {{property declared here}} 21 @synthesize myString; // expected-note {{property synthesized here}} 23 @synthesize myString2 = myString2; // expected-note {{property synthesized here}} 27 @synthesize myString5 = StrongIvar5; // expected-note {{property synthesized here}} 38 @property(weak) id x; // expected-note {{property declared here}} 39 @property(weak) id y; // expected-note {{property declared here}} 44 @synthesize x; // expected-note {{property synthesized here}} 45 @synthesize y; // expected-note {{property synthesized here}}
|
D | circular-container.m | 46 NSMutableArray *_array; // expected-note {{'_array' declared here}} 47 NSMutableDictionary *_dictionary; // expected-note {{'_dictionary' declared here}} 48 NSMutableSet *_set; // expected-note {{'_set' declared here}} 49 NSCountedSet *_countedSet; // expected-note {{'_countedSet' declared here}} 50 NSMutableOrderedSet *_orderedSet; // expected-note {{'_orderedSet' declared here}} 64 - (void)checkNSMutableArray:(NSMutableArray *)a { // expected-note {{'a' declared here}} 68 - (void)checkNSMutableDictionary:(NSMutableDictionary *)d { // expected-note {{'d' declared here}} 72 - (void)checkNSMutableSet:(NSMutableSet *)s { // expected-note {{'s' declared here}} 76 - (void)checkNSCountedSet:(NSCountedSet *)s { // expected-note {{'s' declared here}} 80 - (void)checkNSMutableOrderedSet:(NSMutableOrderedSet *)s { // expected-note {{'s' declared here}} [all …]
|
/external/skia/tools/ |
D | xsan_build | 15 here=$(cd `dirname $0`; echo `pwd`) 19 pushd $here/../third_party/externals/cmake 24 cmake=$here/../third_party/externals/cmake/bin/cmake 27 pushd $here/../third_party/externals/llvm 35 export CC=$here/../third_party/externals/llvm/out/bin/clang 36 export CXX=$here/../third_party/externals/llvm/out/bin/clang++ 41 pushd $here/../third_party/externals/llvm 49 msan_out=$here/../third_party/externals/llvm/msan_out
|
/external/v8/tools/gyp/test/compiler-override/ |
D | gyptest-compiler-env.py | 15 here = os.path.dirname(os.path.abspath(__file__)) variable 48 os.environ['CC'] = 'python %s/my_cc.py FOO' % here 49 os.environ['CXX'] = 'python %s/my_cxx.py FOO' % here 50 os.environ['LINK'] = 'python %s/my_ld.py FOO_LINK' % here 67 os.environ['CC'] = 'python %s/my_cc.py FOO' % here 68 os.environ['CXX'] = 'python %s/my_cxx.py FOO' % here 93 os.environ['CC_host'] = 'python %s/my_cc.py HOST' % here 94 os.environ['CXX_host'] = 'python %s/my_cxx.py HOST' % here 95 os.environ['LINK_host'] = 'python %s/my_ld.py HOST_LINK' % here
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
D | TestBoilerplate.java | 139 …public static boolean verifySetsIdentical(AbstractTestLog here, UnicodeSet set1, UnicodeSet set2) { in verifySetsIdentical() argument 141 here.errln("Sets differ:"); in verifySetsIdentical() 142 here.errln("UnicodeMap - HashMap"); in verifySetsIdentical() 143 here.errln(new UnicodeSet(set1).removeAll(set2).toPattern(true)); in verifySetsIdentical() 144 here.errln("HashMap - UnicodeMap"); in verifySetsIdentical() 145 here.errln(new UnicodeSet(set2).removeAll(set1).toPattern(true)); in verifySetsIdentical() 149 public static boolean verifySetsIdentical(AbstractTestLog here, Set values1, Set values2) { in verifySetsIdentical() argument 152 here.errln("Values differ:"); in verifySetsIdentical() 153 here.errln("UnicodeMap - HashMap"); in verifySetsIdentical() 156 here.errln(show(temp)); in verifySetsIdentical() [all …]
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | TestBoilerplate.java | 138 …public static boolean verifySetsIdentical(AbstractTestLog here, UnicodeSet set1, UnicodeSet set2) { in verifySetsIdentical() argument 140 here.errln("Sets differ:"); in verifySetsIdentical() 141 here.errln("UnicodeMap - HashMap"); in verifySetsIdentical() 142 here.errln(new UnicodeSet(set1).removeAll(set2).toPattern(true)); in verifySetsIdentical() 143 here.errln("HashMap - UnicodeMap"); in verifySetsIdentical() 144 here.errln(new UnicodeSet(set2).removeAll(set1).toPattern(true)); in verifySetsIdentical() 148 public static boolean verifySetsIdentical(AbstractTestLog here, Set values1, Set values2) { in verifySetsIdentical() argument 151 here.errln("Values differ:"); in verifySetsIdentical() 152 here.errln("UnicodeMap - HashMap"); in verifySetsIdentical() 155 here.errln(show(temp)); in verifySetsIdentical() [all …]
|
/external/clang/test/ASTMerge/ |
D | interface.m | 6 // CHECK: interface1.m:16:7: note: declared here with type 'int' 8 // CHECK: interface1.m:21:17: note: inherits from superclass 'I2' here 9 // CHECK: interface2.m:21:17: note: inherits from superclass 'I1' here 11 // CHECK: interface1.m:34:1: note: class method 'foo' also declared here 13 // CHECK: interface1.m:40:17: note: declared here with type 'int' 15 // CHECK: interface1.m:46:1: note: class method 'bar:' also declared here 17 // CHECK: interface1.m:58:19: note: declared here with type 'float' 19 // CHECK: interface1.m:100:17: note: inherits from superclass 'I12' here 20 // CHECK: interface2.m:99:17: note: inherits from superclass 'I11' here
|
/external/clang/test/ARCMT/ |
D | atautorelease-check.m | 51 @interface NSAutoreleasePool : NSObject { // expected-note 13 {{marked unavailable here}} 101 // expected-note {{scope begins here}} 105 int x = 0; // expected-note {{declared here}} 107 [pool release]; // expected-note {{scope ends here}} 114 // expected-note {{scope begins here}} 116 struct S { int x; }; // expected-note {{declared here}} 118 [pool release]; // expected-note {{scope ends here}} 126 // expected-note {{scope begins here}} 128 enum { Bar }; // expected-note {{declared here}} 130 [pool release]; // expected-note {{scope ends here}} [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | mr_dissim.c | 105 const MODE_INFO *here = tmp; in vp8_cal_dissimilarity() local 106 const MODE_INFO *above = here - cm->mode_info_stride; in vp8_cal_dissimilarity() 107 const MODE_INFO *left = here - 1; in vp8_cal_dissimilarity() 126 right = here + 1; in vp8_cal_dissimilarity() 134 below = here + cm->mode_info_stride; in vp8_cal_dissimilarity() 155 right = here + 1; in vp8_cal_dissimilarity() 163 below = here + cm->mode_info_stride; in vp8_cal_dissimilarity() 197 abs(min_mvx - here->mbmi.mv.as_mv.row), in vp8_cal_dissimilarity() 198 abs(max_mvx - here->mbmi.mv.as_mv.row)); in vp8_cal_dissimilarity() 200 abs(min_mvy - here->mbmi.mv.as_mv.col), in vp8_cal_dissimilarity() [all …]
|
/external/autotest/client/bin/self-test/tests/ |
D | 111-barrier-unordered-20x-out | 7 barrier: 127.0.0.1#P10 tag=here port=63000 timeout=60 start=NNN 15 barrier: 127.0.0.1#P11 tag=here port=63000 timeout=60 start=NNN 23 barrier: 127.0.0.1#P12 tag=here port=63000 timeout=60 start=NNN 31 barrier: 127.0.0.1#P13 tag=here port=63000 timeout=60 start=NNN 39 barrier: 127.0.0.1#P14 tag=here port=63000 timeout=60 start=NNN 47 barrier: 127.0.0.1#P15 tag=here port=63000 timeout=60 start=NNN 55 barrier: 127.0.0.1#P16 tag=here port=63000 timeout=60 start=NNN 63 barrier: 127.0.0.1#P17 tag=here port=63000 timeout=60 start=NNN 71 barrier: 127.0.0.1#P18 tag=here port=63000 timeout=60 start=NNN 79 barrier: 127.0.0.1#P19 tag=here port=63000 timeout=60 start=NNN [all …]
|