/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | inffast.c | 67 unsigned long hold; /* local strm->hold */ local 94 hold = state->hold; 105 hold += (unsigned long)(*in++) << bits; 107 hold += (unsigned long)(*in++) << bits; 110 here = lcode[hold & lmask]; 113 hold >>= op; 127 hold += (unsigned long)(*in++) << bits; 130 len += (unsigned)hold & ((1U << op) - 1); 131 hold >>= op; 136 hold += (unsigned long)(*in++) << bits; [all …]
|
D | inflate.c | 135 state->hold = 0; 257 state->hold = 0; 263 state->hold += (unsigned)value << state->bits; 482 hold = state->hold; \ 493 state->hold = hold; \ 500 hold = 0; \ 510 hold += (unsigned long)(*next++) << bits; \ 524 ((unsigned)hold & ((1U << (n)) - 1)) 529 hold >>= (n); \ 536 hold >>= bits & 7; \ [all …]
|
D | inflate.h | 101 unsigned long hold; /* input bit accumulator */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
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 this = lcode[hold & lmask]; 130 hold >>= op; 144 hold += (unsigned long)(PUP(in)) << bits; 147 len += (unsigned)hold & ((1U << op) - 1); 148 hold >>= op; 153 hold += (unsigned long)(PUP(in)) << bits; [all …]
|
D | 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); \ 463 hold >>= bits & 7; \ 562 unsigned long hold; /* bit buffer */ local [all …]
|
D | 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 275 hold = 0; 321 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) { [all …]
|
D | inflate.h | 94 unsigned long hold; /* input bit accumulator */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
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 & ((1U << op) - 1); 148 hold >>= op; 153 hold += (unsigned long)(PUP(in)) << bits; [all …]
|
D | 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)) 512 hold >>= (n); \ 519 hold >>= bits & 7; \ [all …]
|
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; /* bit buffer */ local 284 hold = 0; 330 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) { [all …]
|
D | inflate.h | 98 unsigned long hold; /* input bit accumulator */ member
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/Dsdt/ |
D | D05I2c.asl | 34 Package () {"i2c-sda-hold-time-ns", 0x9c2}, 52 Package () {"i2c-sda-hold-time-ns", 0x9c2},
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/ |
D | README.txt | 12 the type used to hold a character (char or Py_UNICODE)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/ |
D | README.txt | 12 the type used to hold a character (char or Py_UNICODE)
|
/device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/ |
D | Thunk64To32.nasm | 189 ; Restore C register and eax hold the return status from 32-bit function. 190 ; Note: Do not touch rax from now which hold the return value from IA32 function
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/ |
D | EnablePaging64.S | 50 lret # topmost 2 dwords hold the address
|
D | EnablePaging64.asm | 52 retf ; topmost 2 dwords hold the address
|
D | EnablePaging64.nasm | 51 retf ; topmost 2 dwords hold the address
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | pythonrun.c | 990 long hold; in parse_syntax_error() local 1022 hold = PyInt_AsLong(v); in parse_syntax_error() 1024 if (hold < 0 && PyErr_Occurred()) in parse_syntax_error() 1026 *lineno = (int)hold; in parse_syntax_error() 1035 hold = PyInt_AsLong(v); in parse_syntax_error() 1037 if (hold < 0 && PyErr_Occurred()) in parse_syntax_error() 1039 *offset = (int)hold; in parse_syntax_error()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | pythonrun.c | 977 long hold; in parse_syntax_error() local 1001 hold = PyInt_AsLong(v); in parse_syntax_error() 1004 if (hold < 0 && PyErr_Occurred()) in parse_syntax_error() 1006 *lineno = (int)hold; in parse_syntax_error() 1015 hold = PyInt_AsLong(v); in parse_syntax_error() 1018 if (hold < 0 && PyErr_Occurred()) in parse_syntax_error() 1020 *offset = (int)hold; in parse_syntax_error()
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/ |
D | EnablePaging64.asm | 50 retf ; topmost 2 dwords hold the address
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/ |
D | DisablePaging64.S | 47 sub %rax, %rdi # rdi <- use stack to hold transition code
|
D | DisablePaging64.asm | 45 sub rdi, rax ; rdi <- Use stack to hold transition code
|
D | DisablePaging64.nasm | 47 sub rdi, rax ; rdi <- Use stack to hold transition code
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/ |
D | BdsDxe.uni | 9 // these boot device path are hold in PlatformBdsLib library instance produced by platform.
|