HomeSort by relevance Sort by last modified time
    Searched refs:here (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /bionic/libc/regex/
regexec.c 73 /* do "if I'm here, I can also be there" etc without branches */
74 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
75 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
76 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
122 /* do "if I'm here, I can also be there" etc without branches */
123 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
124 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
125 #define ISSETBACK(v, n) ((v)[here - (n)]
    [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...]
StaticLayout.java 294 int here = start; local
429 (j - 1 < here || !Character.isDigit(chs[j - 1 - start])) &&
448 if (ok != here) {
449 // Log.e("text", "output ok " + here + " to " +ok);
456 here, ok,
467 here = ok;
484 if (ok != here) {
485 // Log.e("text", "output ok " + here + " to " +ok);
492 here, ok,
503 here = ok
1089 int here = start; local
    [all...]
Layout.java 755 int here = min; local
757 int there = here + dirs.mDirections[i];
763 int high = there - 1 + 1, low = here + 1 - 1, guess;
775 if (low < here + 1)
776 low = here + 1;
799 float dist = Math.abs(getPrimaryHorizontal(here) - horiz);
803 best = here;
806 here = there;
924 int here = start; local
926 int there = here + dirs.mDirections[i]
1024 int here = start; local
1207 int here = linestart; local
1398 int here = 0; local
1486 int here = 0; local
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
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++;
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);
  /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...]
  /build/core/combo/arch/arm/
armv5te.mk 11 # Note: Hard coding the 'tune' value here is probably not ideal,
armv7-a.mk 13 # Note: Hard coding the 'tune' value here is probably not ideal,
armv7-a-neon.mk 15 # Note: Hard coding the 'tune' value here is probably not ideal,
armv4t.mk 20 # Note: Hard coding the 'tune' value here is probably not ideal,
  /dalvik/libcore/archive/src/main/native/
sub.mk 17 # Any shared/static libs that are listed here must also
  /dalvik/libcore/dalvik/src/main/native/
sub.mk 11 # Any shared/static libs that are listed here must also
  /dalvik/libcore/luni-kernel/src/main/native/
sub.mk 11 # Any shared/static libs that are listed here must also
  /dalvik/libcore/openssl/src/main/native/
sub.mk 11 # Any shared/static libs that are listed here must also
  /dalvik/libcore/sql/src/main/native/
sub.mk 12 # Any shared/static libs that are listed here must also
  /dalvik/libcore/x-net/src/main/native/
sub.mk 12 # Any shared/static libs that are listed here must also
  /dalvik/libcore/xml/src/main/native/
sub.mk 10 # Any shared/static libs that are listed here must also
  /external/icu4c/test/testdata/
tstfiles.mk 4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
  /external/e2fsprogs/intl/
finddomain.c 184 struct loaded_l10nfile *here = runp; local
188 free ((char *) here->filename);
189 free (here);
  /dalvik/libcore/icu/src/main/native/
sub.mk 22 # Any shared/static libs that are listed here must also
  /dalvik/libcore/luni/src/main/native/
sub.mk 27 # Any shared/static libs that are listed here must also
  /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/qemu/distrib/sdl-1.2.12/src/file/
SDL_rwops.c 296 /* WARNING: Check the return value here! */
316 newpos = context->hidden.mem.here+offset;
331 context->hidden.mem.here = newpos;
332 return(context->hidden.mem.here-context->hidden.mem.base);
344 mem_available = (context->hidden.mem.stop - context->hidden.mem.here);
349 SDL_memcpy(ptr, context->hidden.mem.here, total_bytes);
350 context->hidden.mem.here += total_bytes;
356 if ( (context->hidden.mem.here + (num*size)) > context->hidden.mem.stop ) {
357 num = (context->hidden.mem.stop-context->hidden.mem.here)/size;
359 SDL_memcpy(context->hidden.mem.here, ptr, num*size)
    [all...]
  /build/core/
node_fns.mk 248 should be empty here: $(_include_stack))),) \
255 should be empty here: $(_include_stack))),) \

Completed in 458 milliseconds

1 2 3 4 5 6