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

1 2 3 4 5 6

  /external/chromium_org/third_party/zlib/
inffast.c 84 unsigned long hold; /* local strm->hold */ local
111 hold = state->hold;
122 hold += (unsigned long)(PUP(in)) << bits;
124 hold += (unsigned long)(PUP(in)) << bits;
127 here = lcode[hold & lmask];
130 hold >>= op;
144 hold += (unsigned long)(PUP(in)) << bits;
147 len += (unsigned)hold & ((1U << op) - 1)
    [all...]
inflate.c 121 state->hold = 0;
219 state->hold = 0;
225 state->hold += value << state->bits;
444 hold = state->hold; \
455 state->hold = hold; \
462 hold = 0; \
472 hold += (unsigned long)(*next++) << bits; \
486 ((unsigned)hold & ((1U << (n)) - 1)
597 unsigned long hold; \/* bit buffer *\/ local
    [all...]
inflate.h 98 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
infback.c 125 hold = state->hold; \
136 state->hold = hold; \
143 hold = 0; \
167 hold += (unsigned long)(*next++) << bits; \
182 ((unsigned)hold & ((1U << (n)) - 1))
187 hold >>= (n); \
194 hold >>= bits & 7; \
252 unsigned long hold; /* bit buffer * local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 84 unsigned long hold; /* local strm->hold */ local
111 hold = state->hold;
122 hold += (unsigned long)(PUP(in)) << bits;
124 hold += (unsigned long)(PUP(in)) << bits;
127 this = lcode[hold & lmask];
130 hold >>= op;
144 hold += (unsigned long)(PUP(in)) << bits;
147 len += (unsigned)hold & ((1U << op) - 1)
    [all...]
inflate.c 121 state->hold = 0;
139 state->hold += value << state->bits;
409 hold = state->hold; \
420 state->hold = hold; \
427 hold = 0; \
437 hold += (unsigned long)(*next++) << bits; \
451 ((unsigned)hold & ((1U << (n)) - 1))
456 hold >>= (n);
562 unsigned long hold; \/* bit buffer *\/ local
    [all...]
inflate.h 94 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
infback.c 125 hold = state->hold; \
136 state->hold = hold; \
143 hold = 0; \
167 hold += (unsigned long)(*next++) << bits; \
182 ((unsigned)hold & ((1U << (n)) - 1))
187 hold >>= (n); \
194 hold >>= bits & 7; \
252 unsigned long hold; /* bit buffer * local
    [all...]
  /external/zlib/src/
inffast.c 84 unsigned long hold; /* local strm->hold */ local
111 hold = state->hold;
122 hold += (unsigned long)(PUP(in)) << bits;
124 hold += (unsigned long)(PUP(in)) << bits;
127 here = lcode[hold & lmask];
130 hold >>= op;
144 hold += (unsigned long)(PUP(in)) << bits;
147 len += (unsigned)hold & ((1U << op) - 1)
    [all...]
inflate.c 120 state->hold = 0;
240 state->hold = 0;
246 state->hold += value << state->bits;
465 hold = state->hold; \
476 state->hold = hold; \
483 hold = 0; \
493 hold += (unsigned long)(*next++) << bits; \
507 ((unsigned)hold & ((1U << (n)) - 1)
613 unsigned long hold; \/* bit buffer *\/ local
    [all...]
inflate.h 98 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
infback.c 134 hold = state->hold; \
145 state->hold = hold; \
152 hold = 0; \
176 hold += (unsigned long)(*next++) << bits; \
191 ((unsigned)hold & ((1U << (n)) - 1))
196 hold >>= (n); \
203 hold >>= bits & 7; \
261 unsigned long hold; /* bit buffer * local
    [all...]
  /packages/services/Telephony/common/src/com/android/services/telephony/common/
ICallCommandService.aidl 50 * Place call on hold.
52 void hold(int callId, boolean hold);
  /external/grub/grub/
main.c 77 {"hold", optional_argument, 0, OPT_HOLD},
108 --hold wait until a debugger will attach\n\
133 int hold = 0; local
169 hold = -1;
171 hold = atoi (optarg);
246 /* Wait until the HOLD variable is cleared by an attached debugger. */
247 if (hold && verbose)
248 printf ("Run \"gdb %s %d\", and set HOLD to zero.\n",
250 while (hold)
252 if (hold > 0
    [all...]
  /external/zlib/src/contrib/masmx64/
inffas8664.c 94 /* 80 40 */ size_t /*unsigned long */hold; /* edx rdx local strm->hold */ member in struct:inffast_ar
135 ar.hold = state->hold;
145 /* align in on 1/2 hold size boundary */
146 while (((size_t)(void *)ar.in & (sizeof(ar.hold) / 2 - 1)) != 0) {
147 ar.hold += (unsigned long)*ar.in++ << ar.bits;
170 ar.hold &= (1U << ar.bits) - 1;
181 state->hold = (unsigned long)ar.hold;
    [all...]
inffasx64.asm 53 mov rdx, [rsp+80] ; /* rdx = hold */
78 or rdx, rax ; /* hold |= *((uint *)in)++ << bits */
97 or rdx, rax ; /* hold |= *((uint *)in)++ << bits */
100 and r8, rdx ; /* r8 &= hold */
101 mov eax, [rbp+r8*4] ; /* eax = lcode[hold & lmask] */
105 shr rdx, cl ; /* hold >>= this.bits */
115 and r8, rdx ; /* r8 &= hold */
116 mov eax, [rbp+r8*4] ; /* eax = lcode[hold & lmask] */
121 shr rdx, cl ; /* hold >>= this.bits */
147 and eax, edx ; /* eax &= hold */
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
string_stream.c 22 va_list hold; local
26 va_copy(hold, args);
36 vsprintf(&stream->data[stream->length], format, hold);
  /external/smack/src/com/kenai/jbosh/
CMSessionParams.java 38 private final AttrHold hold; field in class:CMSessionParams
72 hold = aHold;
103 resp.getAttribute(Attributes.HOLD)),
154 return hold;
  /external/zlib/src/contrib/infback9/
infback9.c 119 hold = 0; \
143 hold += (unsigned long)(*next++) << bits; \
158 ((unsigned)hold & ((1U << (n)) - 1))
163 hold >>= (n); \
170 hold >>= bits & 7; \
233 unsigned long hold; /* bit buffer */ local
265 hold = 0;
316 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
321 length = (unsigned)hold & 0xffff
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 155 public synchronized void hold(Thread t) { method in class:Profile.Watchdog
212 // Hold the future samples coming from current thread until commit() or
215 public static void hold() { method in class:Profile
216 sWatchdog.hold(Thread.currentThread());
  /external/chromium_org/tools/site_compare/drivers/win32/
keyboard.py 48 keystroke_time: length of time (in seconds) to "hold down" the key
83 keystroke_time: length of time (in secondes) to "hold down" the key
  /external/zlib/src/contrib/inflate86/
inffas86.c 89 /* 80 40 */ unsigned long hold; /* edx rdx local strm->hold */ member in struct:inffast_ar
118 ar.hold = state->hold;
128 /* align in on 1/2 hold size boundary */
129 while (((unsigned long)(void *)ar.in & (sizeof(ar.hold) / 2 - 1)) != 0) {
130 ar.hold += (unsigned long)*ar.in++ << ar.bits;
146 " movq 80(%%rsp), %%rdx\n" /* rdx = hold */
168 " orq %%rax, %%rdx\n" /* hold |= *((uint *)in)++ << bits */
187 " orq %%rax, %%rdx\n" /* hold |= *((uint *)in)++ << bits *
    [all...]
  /packages/services/Telephony/src/com/android/phone/
CallCommandService.java 139 public void hold(int callId, boolean hold) { method in class:CallCommandService
144 if (hold && Call.State.ACTIVE == state) {
146 } else if (!hold && Call.State.ONHOLD == state) {
151 Log.e(TAG, "Error trying to place call on hold.", e);
  /external/iputils/
ping_common.c 467 * of the data portion are used to hold a UNIX "timeval" struct in VAX
591 int rcvbuf, hold; local
592 socklen_t tmplen = sizeof(hold);
598 rcvbuf = hold = alloc * preload;
599 if (hold < 65536)
600 hold = 65536;
601 setsockopt(icmp_sock, SOL_SOCKET, SO_RCVBUF, (char *)&hold, sizeof(hold));
602 if (getsockopt(icmp_sock, SOL_SOCKET, SO_RCVBUF, (char *)&hold, &tmplen) == 0) {
603 if (hold < rcvbuf
612 int hold; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Animation.java 74 overridePendingTransition(R.anim.fade, R.anim.hold);
99 R.anim.fade, R.anim.hold);

Completed in 465 milliseconds

1 2 3 4 5 6