Home
last modified time | relevance | path

Searched refs:here (Results 1 – 25 of 2555) sorted by relevance

12345678910>>...103

/external/zlib/src/contrib/infback9/
Dinfback9.c244 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/llvm/test/Bitcode/
Dblockaddress.ll7 br label %here.i
9 here.i:
10 store i8* blockaddress(@doit, %here), i8** %ptr1, align 8
11 ; CHECK: blockaddress(@doit, %here)
21 br label %here
23 here:
24 store i8* blockaddress(@doit, %here), i8** %pptr, align 8
25 ; CHECK: blockaddress(@doit, %here)
36 br label %here
38 here:
[all …]
/external/qemu/distrib/zlib-1.2.8/
Dinftrees.c53 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 …]
Dinfback.c265 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 …]
Dinffast.c90 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/core/src/fxcodec/fx_zlib/zlib_v128/
Dfx_zlib_inftrees.c53 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 …]
Dfx_zlib_infback.c265 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 …]
Dfx_zlib_inffast.c90 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/zlib/src/
Dinftrees.c53 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 …]
Dinfback.c265 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 …]
Dinffast.c90 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/chromium_org/third_party/zlib/
Dinftrees.c53 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 …]
Dinfback.c256 code here; /* current decoding table entry */ local
392 here = state->lencode[BITS(state->lenbits)];
393 if ((unsigned)(here.bits) <= bits) break;
396 if (here.val < 16) {
397 NEEDBITS(here.bits);
398 DROPBITS(here.bits);
399 state->lens[state->have++] = here.val;
402 if (here.val == 16) {
403 NEEDBITS(here.bits + 2);
404 DROPBITS(here.bits);
[all …]
Dinffast.c90 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/chromium_org/tools/clang/blink_gc_plugin/tests/
Dtrace_collections.txt4 ./trace_collections.h:16:5: note: [blink-gc] Untraced field 'm_heapVector' declared here:
7 ./trace_collections.h:17:5: note: [blink-gc] Untraced field 'm_wtfVector' declared here:
10 ./trace_collections.h:19:5: note: [blink-gc] Untraced field 'm_heapDeque' declared here:
13 ./trace_collections.h:20:5: note: [blink-gc] Untraced field 'm_wtfDeque' declared here:
16 ./trace_collections.h:22:5: note: [blink-gc] Untraced field 'm_heapSet' declared here:
19 ./trace_collections.h:23:5: note: [blink-gc] Untraced field 'm_wtfSet' declared here:
22 ./trace_collections.h:25:5: note: [blink-gc] Untraced field 'm_heapListSet' declared here:
25 ./trace_collections.h:26:5: note: [blink-gc] Untraced field 'm_wtfListSet' declared here:
28 ./trace_collections.h:28:5: note: [blink-gc] Untraced field 'm_heapLinkedSet' declared here:
31 ./trace_collections.h:29:5: note: [blink-gc] Untraced field 'm_wtfLinkedSet' declared here:
[all …]
/external/clang/test/SemaOpenCL/
Dinvalid-kernel-parameters.cl16 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/
Dundef-protocol-methods-1.m4 - (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}}
Darc-repeated-weak.mm23 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 …]
Dspecial-dep-unavail-warning.m6 …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 …]
Dcheck-dup-objc-decls-1.m3 @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}}
Darc-property.m11 @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}}
Dproperty-deprecated-warning.m8 …perty 'ptarget' is declared deprecated here}} expected-note {{'ptarget' has been explicitly marked…
17 …erty 'target' is declared deprecated here}} expected-note {{'setTarget:' has been explicitly marke…
25 …deprecated=3.0))); // expected-note 2 {{'dep_target' has been explicitly marked deprecated here}} \
26 … // expected-note 4 {{property 'dep_target' is declared deprecated here}} \
27 … // expected-note 2 {{'setDep_target:' has been explicitly marked deprecated here}}
58 …ed' has been explicitly marked deprecated here}} expected-note {{property 'enabled' is declared de…
60 …:' has been explicitly marked deprecated here}} expected-note {{property 'delegate' is declared de…
88 …tribute__ ((deprecated)); // expected-note 2 {{'setX:' has been explicitly marked deprecated here}}
89 …__attribute__ ((unavailable)); // expected-note {{'x' has been explicitly marked unavailable here}}
/external/chromium_org/tools/gyp/test/compiler-override/
Dgyptest-compiler-env.py15 here = os.path.dirname(os.path.abspath(__file__)) variable
46 os.environ['CC'] = 'python %s/my_cc.py FOO' % here
47 os.environ['CXX'] = 'python %s/my_cxx.py FOO' % here
48 os.environ['LINK'] = 'python %s/my_ld.py FOO_LINK' % here
65 os.environ['CC'] = 'python %s/my_cc.py FOO' % here
66 os.environ['CXX'] = 'python %s/my_cxx.py FOO' % here
91 os.environ['CC_host'] = 'python %s/my_cc.py HOST' % here
92 os.environ['CXX_host'] = 'python %s/my_cxx.py HOST' % here
93 os.environ['LINK_host'] = 'python %s/my_ld.py HOST_LINK' % here
/external/chromium_org/tools/clang/plugins/tests/
Dbase_refcounted.txt5 … 'PublicRefCountedDtorInHeader' inherits from 'base::RefCounted<PublicRefCountedDtorInHeader>' here
11 …orInHeader' inherits from 'base::RefCountedThreadSafe<PublicRefCountedThreadSafeDtorInHeader>' here
20 …yle] 'DerivedProtectedToPublicInHeader' inherits from 'ProtectedRefCountedVirtualDtorInHeader' here
23 …dVirtualDtorInHeader' inherits from 'base::RefCounted<ProtectedRefCountedVirtualDtorInHeader>' here
29 …plicitDerivedProtectedToPublicInHeader' inherits from 'ProtectedRefCountedVirtualDtorInHeader' here
32 …dVirtualDtorInHeader' inherits from 'base::RefCounted<ProtectedRefCountedVirtualDtorInHeader>' here
38 …yle] 'ImplementsAPublicInterface' inherits from 'base::RefCounted<ImplementsAPublicInterface>' here
41 ./base_refcounted.h:139:3: note: [chromium-style] Public destructor declared here
44 ….h:146:7: note: [chromium-style] 'ImplementsAPublicInterface' inherits from 'APublicInterface' here
50 …ImplementsAnImplicitInterface' inherits from 'base::RefCounted<ImplementsAnImplicitInterface>' here
[all …]
/external/clang/test/ASTMerge/
Dinterface.m6 // 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

12345678910>>...103