Home
last modified time | relevance | path

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

12345678910>>...61

/external/zlib/contrib/infback9/
Dinfback9.c245 code here; /* current decoding table entry */ local
387 here = lencode[BITS(lenbits)];
388 if ((unsigned)(here.bits) <= bits) break;
391 if (here.val < 16) {
392 NEEDBITS(here.bits);
393 DROPBITS(here.bits);
394 state->lens[state->have++] = here.val;
397 if (here.val == 16) {
398 NEEDBITS(here.bits + 2);
399 DROPBITS(here.bits);
[all …]
/external/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 …]
Dinflate.c622 code here; /* current decoding table entry */ local
943 here = state->lencode[BITS(state->lenbits)];
944 if ((unsigned)(here.bits) <= bits) break;
947 if (here.val < 16) {
948 DROPBITS(here.bits);
949 state->lens[state->have++] = here.val;
952 if (here.val == 16) {
953 NEEDBITS(here.bits + 2);
954 DROPBITS(here.bits);
964 else if (here.val == 17) {
[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)
/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}}
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}}
Dclass-protocol-method-match.m6 - (bycopy id)bud; // expected-note {{previous declaration is here}}
7 - (unsigned char) baz; // expected-note {{previous declaration is here}}
14 - (unsigned char) baz; // expected-note {{previous declaration is here}}
15 - (unsigned char) also_ok; // expected-note {{previous declaration is here}}
16 - (void) ban : (int) arg, ...; // expected-note {{previous declaration is here}}
20 - (void) bar : (unsigned char)arg; // expected-note {{previous declaration is here}}
22 - (char) bak; // expected-note {{previous declaration is here}}
Dcheck-dup-decl-methods-1.m11 - (int) meth; // expected-note {{previous declaration is here}}
13 - (T*) meth1; // expected-note {{previous declaration is here}}
19 - (int) catm : (char)ch1; // expected-note {{previous declaration is here}}
27 + (int) catm1 : (char)ch : (int)i; // expected-note {{previous declaration is here}}
28 + (T*) meth1; // expected-note {{previous declaration is here}}
35 - (int) meth; // expected-note {{previous declaration is here}}
Dcategory-1.m7 …-warning {{cannot find protocol definition for 'p1'}} expected-note {{previous definition is here}}
16 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}}
19 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}}
20 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}}
34 @class MyClass2; // expected-note{{forward declaration of class here}}
47 @interface XCRemoteComputerManager(x) // expected-note {{previous definition is here}}
56 @implementation XCRemoteComputerManager(x) // expected-note {{previous definition is here}}
65 -(void) im0; // expected-note {{method 'im0' declared here}}
Dargument-checking.m5 extern int charStarFunc(char *); // expected-note{{passing argument to parameter here}}
6 extern int charFunc(char); // expected-note{{passing argument to parameter here}}
10 -(int)charStarMeth:(char *)s; // expected-note{{passing argument to parameter 's' here}}
11 -structMeth:(struct S)s; // expected-note{{passing argument to parameter 's' here}}
13 :(struct S)s2; // expected-note{{passing argument to parameter 's2' here}}
Dobjc2-merge-gc-attribue-decl.m13 extern __weak id WLoopGetMain(); // expected-note {{previous declaration is here}}
16 extern id p3; // expected-note {{previous definition is here}}
19 extern void *p4; // expected-note {{previous definition is here}}
25 extern char* __strong p6; // expected-note {{previous definition is here}}
28 extern __strong char* p7; // expected-note {{previous definition is here}}
Dwarn-deprecated-implementations.m5 - (void) D __attribute__((deprecated)); // expected-note {{method 'D' declared here}}
9 + (void)F __attribute__((deprecated)); // expected-note {{method 'F' declared here}}
13 - (void) E __attribute__((deprecated)); // expected-note {{method 'E' declared here}}
23 @interface CL // expected-note 2 {{class declared here}}
37 - (void) B __attribute__((deprecated)); // expected-note {{method 'B' declared here}}
/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
/external/clang/test/ARCMT/
Datautorelease-check.m52 @interface NSAutoreleasePool : NSObject { // expected-note 13 {{marked unavailable here}}
102 // expected-note {{scope begins here}}
106 int x = 0; // expected-note {{declared here}}
108 [pool release]; // expected-note {{scope ends here}}
115 // expected-note {{scope begins here}}
117 struct S { int x; }; // expected-note {{declared here}}
119 [pool release]; // expected-note {{scope ends here}}
127 // expected-note {{scope begins here}}
129 enum { Bar }; // expected-note {{declared here}}
131 [pool release]; // expected-note {{scope ends here}}
[all …]
/external/llvm/lib/Support/
Dregexec.c76 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
77 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
78 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
125 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
126 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
127 #define ISSETBACK(v, n) ((v)[here - (n)])
/external/oauth/core/src/main/java/net/oauth/
Dconsumer.properties.sample3 ma.gnolia.consumerKey: - Your key here -
4 ma.gnolia.consumerSecret: - Your secret here -
9 twitter.consumerKey: - Your key here -
10 twitter.consumerSecret: - Your secret here -
11 twitter.callbackURL: - Your URL here -
/external/valgrind/main/none/tests/
Dsigstackgrowth.c33 char here; in handler() local
35 if (&here < deep) { in handler()
47 char here; in main() local
48 deep = &here - SIZE; in main()
/external/zlib/examples/
Dzran.c249 struct point *here; in extract() local
258 here = index->list; in extract()
260 while (--ret && here[1].out <= offset) in extract()
261 here++; in extract()
272 ret = fseeko(in, here->in - (here->bits ? 1 : 0), SEEK_SET); in extract()
275 if (here->bits) { in extract()
281 (void)inflatePrime(&strm, here->bits, ret >> (8 - here->bits)); in extract()
283 (void)inflateSetDictionary(&strm, here->window, WINSIZE); in extract()
286 offset -= here->out; in extract()
/external/clang/include/clang/Basic/
DDiagnosticCommonKinds.td21 def note_declared_at : Note<"declared here">;
22 def note_previous_definition : Note<"previous definition is here">;
23 def note_previous_declaration : Note<"previous declaration is here">;
25 "previous implicit declaration is here">;
26 def note_previous_use : Note<"previous use is here">;
27 def note_duplicate_case_prev : Note<"previous case defined here">;
45 "string literal with user-defined suffix cannot be used here">;
47 "character literal with user-defined suffix cannot be used here">;
49 "numeric literal with user-defined suffix cannot be used here">;
76 def note_pragma_entered_here : Note<"#pragma entered here">;
DDiagnosticASTKinds.td76 def note_constexpr_temporary_here : Note<"temporary created here">;
132 def note_odr_value_here : Note<"declared here with type %0">;
133 def note_odr_defined_here : Note<"also defined here">;
140 "%0 is a %select{struct|union|class|enum}1 here">;
141 def note_odr_field : Note<"field %0 has type %1 here">;
142 def note_odr_missing_field : Note<"no corresponding field here">;
143 def note_odr_bit_field : Note<"bit-field %0 with type %1 and length %2 here">;
147 "%select{non-virtual|virtual}0 derivation here">;
148 def note_odr_missing_base : Note<"no corresponding base class here">;
151 def note_odr_enumerator : Note<"enumerator %0 with value %1 here">;
[all …]
/external/markdown/docs/extensions/
DCodeHilite.txt47 # Code goes here ...
52 # Code goes here ...
62 # Code goes here ...
66 # Code goes here ...
75 # Code goes here ...
79 # Code goes here ...
87 behavior will happen as described here.
89 # Code goes here ...
93 # Code goes here ...
97 <div class="codehilite" ><pre><code># Code goes here ...
/external/ppp/pppd/plugins/pppoatm/
Dans.c200 char *here; in cc_len() local
213 here = strchr(buffer,'#'); in cc_len()
214 if (here) *here = 0; in cc_len()
231 const char *prefix,*here; in encode_e164() local
234 here = strchr(addr,0); in encode_e164()
235 while (here > prefix) { in encode_e164()
236 *buf++ = *--here; in encode_e164()
239 while (here > addr) *buf++ = *addr++; in encode_e164()
/external/valgrind/main/none/tests/ppc32/
Dlsw.stdout.exp2 here is
17 here is a
47 here is
50 here is a stringH

12345678910>>...61