/external/valgrind/main/none/tests/ |
sigstackgrowth.c | 33 char here; local 35 if (&here < deep) { 47 char here; local 48 deep = &here - SIZE;
|
tls.c | 55 int here = 0; local 60 int b = here++; 62 printf("tls_ptr: case \"%s\" has mismatch: *ip=%d here=%d\n",
|
/external/e2fsprogs/intl/ |
finddomain.c | 184 struct loaded_l10nfile *here = runp; local 188 free ((char *) here->filename); 189 free (here);
|
/external/ppp/pppd/plugins/pppoatm/ |
text2atm.c | 197 const char *here; local 202 while ((here = strtok(NULL,"\t\n "))) 203 if (!strcasecmp(here,text)) { 204 here = strtok(line,"\t\n "); 205 result = text2atm(here,addr,length,flags);
|
ans.c | 200 char *here; local 213 here = strchr(buffer,'#'); 214 if (here) *here = 0; 231 const char *prefix,*here; local 234 here = strchr(addr,0); 235 while (here > prefix) { 236 *buf++ = *--here; 239 while (here > addr) *buf++ = *addr++;
|
/external/zlib/ |
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] [all...] |
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...] |
infback.c | 256 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...] |
inflate.c | 602 code here; /* current decoding table entry */ local [all...] |
/prebuilt/windows/sdl/host/include/SDL/ |
SDL_rwops.h | 77 Uint8 *here; member in struct:SDL_RWops::__anon30247::__anon30249
|
/frameworks/base/core/java/android/view/ |
Display.java | 48 // done here instead of in the static block because Zygote 80 * space available from the size returned here. Layouts should instead use 121 RuntimeException here = new RuntimeException("here"); local 122 here.fillInStackTrace(); 123 Slog.v(TAG, "Returning display size: " + outSize, here); 257 * returned here may be either {@link Surface#ROTATION_90 Surface.ROTATION_90} 263 * 90 degrees clockwise and thus the returned value here will be
|
/external/qemu/distrib/sdl-1.2.12/include/ |
SDL_rwops.h | 84 Uint8 *here; member in struct:SDL_RWops::__anon9590::__anon9594
|
/external/webkit/Source/WebCore/bindings/v8/ |
WorkerContextExecutionProxy.cpp | 123 uint32_t here; local 124 resource_constraints.set_stack_limit(&here - kWorkerMaxStackSize / sizeof(uint32_t*));
|
/external/zlib/examples/ |
zran.c | 46 use of pointers in the state. The approach here allows for storage of the 249 struct point *here; local 258 here = index->list; 260 while (--ret && here[1].out <= offset) 261 here++; 272 ret = fseeko(in, here->in - (here->bits ? 1 : 0), SEEK_SET); 275 if (here->bits) { 281 (void)inflatePrime(&strm, here->bits, ret >> (8 - here->bits)) [all...] |
/prebuilt/darwin-x86/sdl/include/SDL/ |
SDL_rwops.h | 84 Uint8 *here; member in struct:SDL_RWops::__anon17085::__anon17089
|
/prebuilt/linux-x86/sdl/include/SDL/ |
SDL_rwops.h | 84 Uint8 *here; member in struct:SDL_RWops::__anon18430::__anon18434
|
/prebuilt/windows/sdl/include/SDL/ |
SDL_rwops.h | 84 Uint8 *here; member in struct:SDL_RWops::__anon30271::__anon30275
|
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
FrameworkPerfActivity.java | 328 RuntimeException here = new RuntimeException("here"); local 329 here.fillInStackTrace(); 330 Log.i(TAG, "Unbinding " + conn, here); 382 RuntimeException here = new RuntimeException("here"); local 383 here.fillInStackTrace(); 384 Log.i(TAG, "Binding " + mCurConnection, here);
|
/external/qemu/distrib/sdl-1.2.12/src/events/ |
SDL_events.c | 301 int here, next; local 307 for ( here=spot; here != SDL_EventQ.tail; here = next ) { 308 next = (here+1)%MAXEVENTS; 309 SDL_EventQ.event[here] = SDL_EventQ.event[next];
|
/external/zlib/contrib/infback9/ |
infback9.c | 245 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...] |
/frameworks/base/core/java/android/text/ |
AutoText.java | 133 int here = mTrie[TRIE_ROOT]; local 138 for (; here != TRIE_NULL; here = mTrie[here + TRIE_NEXT]) { 139 if (c == mTrie[here + TRIE_C]) { 141 && (mTrie[here + TRIE_OFF] != TRIE_NULL)) { 142 int off = mTrie[here + TRIE_OFF]; 148 here = mTrie[here + TRIE_CHILD]; 153 if (here == TRIE_NULL) [all...] |
/bionic/libc/regex/ |
engine.c | 75 char *offp; /* offsets work from here */ 77 char *endp; /* end of string -- virtual NUL here */ 78 char *coldp; /* can be no match starting before here */ 256 /* despite initial appearances, there is no match here */ 297 char *stp; /* string matched by it cannot pass here */ 846 onestate here; /* note, macros know this name */ local 850 for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) { 887 case OBACK_: /* ignored here */ 901 INIT(here, pc) [all...] |
/ndk/sources/host-tools/ndk-stack/regex/ |
engine.c | 75 char *offp; /* offsets work from here */ 77 char *endp; /* end of string -- virtual NUL here */ 78 char *coldp; /* can be no match starting before here */ 256 /* despite initial appearances, there is no match here */ 297 char *stp; /* string matched by it cannot pass here */ 846 onestate here; /* note, macros know this name */ local 850 for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) { 887 case OBACK_: /* ignored here */ 901 INIT(here, pc) [all...] |
/external/freetype/src/truetype/ |
ttgxvar.c | 1127 FT_ULong here; local 1334 FT_ULong here; local [all...] |
/external/valgrind/main/coregrind/m_debuginfo/ |
readmacho.c | 450 DiSym* here = (DiSym*)VG_(indexXA)(syms,m); local 451 vg_assert(here->addr < next->addr); 452 if (here->addr + here->size > next->addr) 453 here->size = next->addr - here->addr; [all...] |