/vbox/src/libs/zlib-1.2.6/ |
H A D | 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 [all...] |
H A D | inflate.c | 119 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 617 unsigned long hold; /* bit buffer */ local [all...] |
H A D | inflate.h | 98 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
|
H A D | 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; /* bi local [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/masmx64/ |
H A D | 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...] |
H A D | 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...] |
H A D | gvmat64.asm | 207 ;;; Retrieve the function arguments. r8d will hold cur_match 208 ;;; throughout the entire function. edx will hold the pointer to the
|
/vbox/src/libs/zlib-1.2.6/contrib/infback9/ |
H A D | infback9.c | 119 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...] |
/vbox/src/libs/zlib-1.2.6/contrib/inflate86/ |
H A D | 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 | [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/blast/ |
H A D | blast.c | 416 static unsigned char hold[CHUNK]; local 418 *buf = hold; 419 return fread(hold, 1, CHUNK, (FILE *)how);
|
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ia32/ |
H A D | EnablePaging64.S | 50 lret # topmost 2 dwords hold the address
|
H A D | EnablePaging64.asm | 52 retf ; topmost 2 dwords hold the address
|
/vbox/src/libs/zlib-1.2.6/contrib/minizip/ |
H A D | miniunz.c | 168 char hold; local 172 hold = *p; 180 if (hold == 0) 182 *p++ = hold;
|
/vbox/src/libs/zlib-1.2.6/contrib/untgz/ |
H A D | untgz.c | 350 char hold; local 354 hold = *p; 362 if (hold == 0) 364 *p++ = hold;
|
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/ |
H A D | xptcinvoke_asm_openvms_alpha.s | 40 ; Allocate enough stack space to hold the greater of 6 or "paramCount"+1
|
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/X64/ |
H A D | DisablePaging64.S | 47 sub %rax, %rdi # rdi <- use stack to hold transition code
|
H A D | DisablePaging64.asm | 45 sub rdi, rax ; rdi <- Use stack to hold transition code
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | vfwprintf.c | 800 int hold = nextarg; \ 808 nextarg = hold; \ 1661 int hold = nextarg; \ 1664 nextarg = hold; \
|
/vbox/src/VBox/Devices/Audio/ |
H A D | DevSB16.cpp | 386 static void sb16Control(PSB16STATE pThis, int hold) argument 389 pThis->dma_running = hold; 391 LogFlowFunc(("hold %d high %d dma %d\n", hold, pThis->use_hdma, dma)); 394 if (hold) 408 if (hold)
|
/vbox/src/libs/zlib-1.2.6/contrib/masmx86/ |
H A D | match686.asm | 209 ;;; Retrieve the function arguments. ecx will hold cur_match 210 ;;; throughout the entire function. edx will hold the pointer to the
|
H A D | inffas32.asm | 140 hold_state equ (44+4+zlib1222sup) ;/* state->hold */
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/ |
H A D | os2vacpp.asm | 73 implementation to hold the TID:PID in the lower 31 bits and the lock
|