Home
last modified time | relevance | path

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

12345678910>>...134

/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/syslinux/com32/lib/zlib/
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 …]
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 …]
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/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/pdfium/third_party/zlib_v128/
Dinftrees.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 …]
Dinfback.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 …]
Dinffast.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/python/cpython2/Modules/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.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/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
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 …]
Dfields_illegal_tracing.txt5 …illegal_tracing.h:37:5: note: [blink-gc] OwnPtr field 'm_obj1' to a GC managed class declared here:
8 …illegal_tracing.h:38:5: note: [blink-gc] RefPtr field 'm_obj2' to a GC managed class declared here:
11 …racing.h:40:5: note: [blink-gc] std::unique_ptr field 'm_obj4' to a GC managed class declared here:
14 …ing.h:42:5: note: [blink-gc] Iterator field 'm_iterator2' to a GC managed collection declared here:
17 …ing.h:43:5: note: [blink-gc] Iterator field 'm_iterator3' to a GC managed collection declared here:
23 …illegal_tracing.h:51:5: note: [blink-gc] OwnPtr field 'm_obj1' to a GC managed class declared here:
26 …illegal_tracing.h:52:5: note: [blink-gc] RefPtr field 'm_obj2' to a GC managed class declared here:
29 …racing.h:54:5: note: [blink-gc] std::unique_ptr field 'm_obj4' to a GC managed class declared here:
32 …ing.h:55:5: note: [blink-gc] Iterator field 'm_iterator3' to a GC managed collection declared here:
35 …ing.h:56:5: note: [blink-gc] Iterator field 'm_iterator4' to a GC managed collection declared here:
[all …]
/external/v8/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 …]
Dfields_illegal_tracing.txt5 …illegal_tracing.h:37:5: note: [blink-gc] OwnPtr field 'm_obj1' to a GC managed class declared here:
8 …illegal_tracing.h:38:5: note: [blink-gc] RefPtr field 'm_obj2' to a GC managed class declared here:
11 …racing.h:40:5: note: [blink-gc] std::unique_ptr field 'm_obj4' to a GC managed class declared here:
14 …ing.h:42:5: note: [blink-gc] Iterator field 'm_iterator2' to a GC managed collection declared here:
17 …ing.h:43:5: note: [blink-gc] Iterator field 'm_iterator3' to a GC managed collection declared here:
23 …illegal_tracing.h:51:5: note: [blink-gc] OwnPtr field 'm_obj1' to a GC managed class declared here:
26 …illegal_tracing.h:52:5: note: [blink-gc] RefPtr field 'm_obj2' to a GC managed class declared here:
29 …racing.h:54:5: note: [blink-gc] std::unique_ptr field 'm_obj4' to a GC managed class declared here:
32 …ing.h:55:5: note: [blink-gc] Iterator field 'm_iterator3' to a GC managed collection declared here:
35 …ing.h:56:5: note: [blink-gc] Iterator field 'm_iterator4' to a GC managed collection declared here:
[all …]
/external/llvm/test/Bitcode/
Dblockaddress.ll8 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/
Dhgtls.stdoutB.exp4 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/
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}}
28 // as a note here any longer.
30 … // expected-note{{field of illegal type '__read_only image2d_t' declared here}} expected-error{{t…
35 typedef struct Foo // expected-note{{within field of type 'Foo' declared here}}
37 int* ptrField; // expected-note{{field of illegal pointer type 'int *' declared here}}
42 typedef union FooUnion // expected-note{{within field of type 'FooUnion' declared here}}
44 int* ptrField; // expected-note{{field of illegal pointer type 'int *' declared here}}
49 …edef struct NestedPointer // expected-note 2 {{within field of type 'NestedPointer' declared here}}
[all …]
/external/swiftshader/third_party/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)
/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 …]
Dproperty-deprecated-warning.m9 …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}}
43here}} 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 …]
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 …]

12345678910>>...134