Home
last modified time | relevance | path

Searched refs:hold (Results 1 – 25 of 78) sorted by relevance

1234

/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
Dinffast.c67 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 …]
Dinflate.c135 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 …]
Dinflate.h101 unsigned long hold; /* input bit accumulator */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
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 & ((1U << op) - 1);
148 hold >>= op;
153 hold += (unsigned long)(PUP(in)) << bits;
[all …]
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 >>= (n); \
463 hold >>= bits & 7; \
562 unsigned long hold; /* bit buffer */ local
[all …]
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; /* bit buffer */ local
275 hold = 0;
321 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
[all …]
Dinflate.h94 unsigned long hold; /* input bit accumulator */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
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 & ((1U << op) - 1);
148 hold >>= op;
153 hold += (unsigned long)(PUP(in)) << bits;
[all …]
Dinflate.c120 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 …]
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; /* bit buffer */ local
284 hold = 0;
330 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
[all …]
Dinflate.h98 unsigned long hold; /* input bit accumulator */ member
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/Dsdt/
DD05I2c.asl34 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/
DREADME.txt12 the type used to hold a character (char or Py_UNICODE)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
DREADME.txt12 the type used to hold a character (char or Py_UNICODE)
/device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/
DThunk64To32.nasm189 ; 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/
DEnablePaging64.S50 lret # topmost 2 dwords hold the address
DEnablePaging64.asm52 retf ; topmost 2 dwords hold the address
DEnablePaging64.nasm51 retf ; topmost 2 dwords hold the address
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dpythonrun.c990 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/
Dpythonrun.c977 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/
DEnablePaging64.asm50 retf ; topmost 2 dwords hold the address
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
DDisablePaging64.S47 sub %rax, %rdi # rdi <- use stack to hold transition code
DDisablePaging64.asm45 sub rdi, rax ; rdi <- Use stack to hold transition code
DDisablePaging64.nasm47 sub rdi, rax ; rdi <- Use stack to hold transition code
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/
DBdsDxe.uni9 // these boot device path are hold in PlatformBdsLib library instance produced by platform.

1234