Searched refs:hold (Results 1 - 25 of 43) sorted by relevance

12

/external/qemu/distrib/zlib-1.2.3/
H A Dinffast.c84 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
[all...]
H A Dinflate.c121 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 >>
562 unsigned long hold; /* bit buffer */ local
[all...]
H A Dinflate.h94 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
H A Dinfback.c125 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; /* bi local
[all...]
/external/zlib/src/
H A Dinffast.c84 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
[all...]
H A Dinflate.c119 state->hold = 0;
239 state->hold = 0;
245 state->hold += value << state->bits;
464 hold = state->hold; \
475 state->hold = hold; \
482 hold = 0; \
492 hold += (unsigned long)(*next++) << bits; \
506 ((unsigned)hold
612 unsigned long hold; /* bit buffer */ local
[all...]
H A Dinflate.h98 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
H A Dinfback.c134 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; /* bi local
[all...]
/external/grub/grub/
H A Dmain.c77 {"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);
247 if (hold && verbose)
250 while (hold)
252 if (hold > 0)
253 hold--;
/external/zlib/src/contrib/masmx64/
H A Dinffas8664.c94 /* 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...]
H A Dinffasx64.asm53 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/smack/src/com/kenai/jbosh/
H A DCMSessionParams.java38 private final AttrHold hold; field in class:CMSessionParams
72 hold = aHold;
154 return hold;
/external/ping/
H A Dping_common.c279 * of the data portion are used to hold a UNIX "timeval" struct in VAX
395 int rcvbuf, hold; local
396 int tmplen = sizeof(hold);
402 rcvbuf = hold = alloc * preload;
403 if (hold < 65536)
404 hold = 65536;
405 setsockopt(icmp_sock, SOL_SOCKET, SO_RCVBUF, (char *)&hold, sizeof(hold));
406 if (getsockopt(icmp_sock, SOL_SOCKET, SO_RCVBUF, (char *)&hold, &tmplen) == 0) {
407 if (hold < rcvbu
416 int hold; local
[all...]
H A Dping.c116 int ch, hold, packlen; local
419 hold = 1;
420 if (setsockopt(icmp_sock, SOL_IP, IP_RECVERR, (char *)&hold, sizeof(hold)))
423 if (setsockopt(icmp_sock, SOL_IP, IP_RECVTTL, (char *)&hold, sizeof(hold)))
425 if (setsockopt(icmp_sock, SOL_IP, IP_RETOPTS, (char *)&hold, sizeof(hold)))
483 hold = datalen + 8;
484 hold
[all...]
/external/zlib/src/contrib/infback9/
H A Dinfback9.c119 hold = 0; \
143 hold += (unsigned long)(*next++) << bits; \
158 ((unsigned)hold & ((1U << (n)) - 1))
163 hold >>= (n); \
170 hold >>= bits & 7; \
234 unsigned long hold; /* bit buffer */ local
267 hold = 0;
318 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
323 length = (unsigned)hold
[all...]
/external/zlib/src/contrib/inflate86/
H A Dinffas86.c89 /* 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 |
[all...]
/external/zlib/src/contrib/blast/
H A Dblast.c416 static unsigned char hold[CHUNK]; local
418 *buf = hold;
419 return fread(hold, 1, CHUNK, (FILE *)how);
/external/tcpdump/
H A Dprint-pim.c132 int hold; local
135 hold = EXTRACT_16BITS(&bp[6]);
136 if (hold != 180) {
138 relts_print(hold);
276 (void)printf(" RP %s hold ", ipaddr_string(&bp[16]));
330 int hold; local
352 hold = EXTRACT_16BITS(&bp[2]);
353 if (hold)
/external/webkit/Source/WebCore/platform/image-decoders/gif/
H A DGIFImageReader.h160 unsigned char hold[MAX_HOLD_SIZE]; /* Accumulation buffer */ member in struct:GIFImageReader
H A DGIFImageReader.cpp91 * Note, the hold will never need to be bigger than 256 bytes to gather up in the hold,
397 // If previous call to me left something in the hold first complete current block
405 p = hold;
423 // Reset hold buffer count
425 // Point 'q' to complete block in hold (or in colormap)
430 // 'q' is start of current to be processed block (hold, colormap or buf)
533 // Use 'hold' pattern to get the global colormap
838 // Use 'hold' pattern to get the image colormap
906 // Copy the leftover into gs->hold
[all...]
/external/zlib/src/contrib/minizip/
H A Dminiunz.c168 char hold; local
172 hold = *p;
180 if (hold == 0)
182 *p++ = hold;
/external/zlib/src/contrib/untgz/
H A Duntgz.c350 char hold; local
354 hold = *p;
362 if (hold == 0)
364 *p++ = hold;
/external/kernel-headers/original/asm-mips/sn/sn0/
H A Dhubio.h544 hold: 1, /* entry is gathering inval acks */ member in struct:icrbb_u::__anon7552
592 hold: 1, /* entry is gathering inval acks */ member in struct:h1_icrbb_u::__anon7553
891 hold: 1, /* 16: crb gathering invalidate acks*/ member in struct:icrbp_a::__anon7559
/external/ping6/
H A Dping6.c329 int ch, hold, preload, optval, ret_ga; local
768 hold = 1;
771 (void)setsockopt(s, SOL_SOCKET, SO_DEBUG, (char *)&hold,
772 sizeof(hold));
1030 hold = 48 * 1024;
1031 setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&hold,
1032 sizeof(hold));
1230 * of the data portion are used to hold a UNIX "timeval" struct in VAX
/external/openssl/apps/
H A Dca.c144 #define REV_HOLD 2 /* Value is hold instruction */
2817 ASN1_OBJECT *hold = NULL; local
2823 i = unpack_revinfo(&revDate, &reason_code, &hold, &comp_time, str);
2845 if (rev && hold)
2847 if (!X509_REVOKED_add1_ext_i2d(rev, NID_hold_instruction_code, hold, 0, 0))
2858 ASN1_OBJECT_free(hold);
2912 ASN1_OBJECT *hold = NULL; local
2964 BIO_printf(bio_err, "missing hold instruction\n");
2968 hold = OBJ_txt2obj(arg_str, 0);
2970 if (!hold)
[all...]

Completed in 379 milliseconds

12