OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WNDSIZ
(Results
1 - 7
of
7
) sorted by null
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
Compress.c
35
#define
WNDSIZ
(1U << WNDBIT)
41
#define MAX_HASH_VAL (3 *
WNDSIZ
+ (
WNDSIZ
/ 512 + 1) * UINT8_MAX)
42
#define HASH(LoopVar7, LoopVar5) ((LoopVar7) + ((LoopVar5) << (WNDBIT - 9)) +
WNDSIZ
* 2)
191
mText = AllocateZeroPool (
WNDSIZ
* 2 + MAXMATCH);
192
mLevel = AllocateZeroPool ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mLevel));
193
mChildCount = AllocateZeroPool ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mChildCount));
194
mPosition = AllocateZeroPool ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mPosition));
195
mParent = AllocateZeroPool (
WNDSIZ
* 2 * sizeof (*mParent));
196
mPrev = AllocateZeroPool (
WNDSIZ
* 2 * sizeof (*mPrev));
[
all
...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
TianoCompress.c
30
#define
WNDSIZ
(1U << WNDBIT)
36
#define MAX_HASH_VAL (3 *
WNDSIZ
+ (
WNDSIZ
/ 512 + 1) * UINT8_MAX)
37
#define HASH(p, c) ((p) + ((c) << (WNDBIT - 9)) +
WNDSIZ
* 2)
419
mText = malloc (
WNDSIZ
* 2 + MAXMATCH);
423
for (Index = 0; Index <
WNDSIZ
* 2 + MAXMATCH; Index++) {
427
mLevel = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mLevel));
428
mChildCount = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mChildCount));
429
mPosition = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mPosition));
430
mParent = malloc (
WNDSIZ
* 2 * sizeof (*mParent));
[
all
...]
EfiCompress.c
32
#define
WNDSIZ
(1U << WNDBIT)
37
#define MAX_HASH_VAL (3 *
WNDSIZ
+ (
WNDSIZ
/ 512 + 1) * UINT8_MAX)
38
#define HASH(p, c) ((p) + ((c) << (WNDBIT - 9)) +
WNDSIZ
* 2)
410
mText = malloc (
WNDSIZ
* 2 + MAXMATCH);
414
for (i = 0 ; i <
WNDSIZ
* 2 + MAXMATCH; i ++) {
418
mLevel = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mLevel));
419
mChildCount = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mChildCount));
420
mPosition = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mPosition));
421
mParent = malloc (
WNDSIZ
* 2 * sizeof(*mParent));
[
all
...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
TianoCompress.c
40
#define
WNDSIZ
(1U << WNDBIT)
46
#define MAX_HASH_VAL (3 *
WNDSIZ
+ (
WNDSIZ
/ 512 + 1) * UINT8_MAX)
47
#define HASH(p, c) ((p) + ((c) << (WNDBIT - 9)) +
WNDSIZ
* 2)
439
mText = malloc (
WNDSIZ
* 2 + MAXMATCH);
440
for (Index = 0; Index <
WNDSIZ
* 2 + MAXMATCH; Index++) {
444
mLevel = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mLevel));
445
mChildCount = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mChildCount));
446
mPosition = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mPosition));
447
mParent = malloc (
WNDSIZ
* 2 * sizeof (*mParent));
[
all
...]
EfiCompress.c
42
#define
WNDSIZ
(1U << WNDBIT)
47
#define MAX_HASH_VAL (3 *
WNDSIZ
+ (
WNDSIZ
/ 512 + 1) * UINT8_MAX)
48
#define HASH(p, c) ((p) + ((c) << (WNDBIT - 9)) +
WNDSIZ
* 2)
420
mText = malloc (
WNDSIZ
* 2 + MAXMATCH);
421
for (i = 0 ; i <
WNDSIZ
* 2 + MAXMATCH; i ++) {
425
mLevel = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mLevel));
426
mChildCount = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mChildCount));
427
mPosition = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mPosition));
428
mParent = malloc (
WNDSIZ
* 2 * sizeof(*mParent));
[
all
...]
/external/vboot_reference/utility/
eficompress.c
52
#define
WNDSIZ
(1U << WNDBIT)
57
#define MAX_HASH_VAL (3 *
WNDSIZ
+ (
WNDSIZ
/ 512 + 1) * UINT8_MAX)
58
#define HASH(p, c) ((p) + ((c) << (WNDBIT - 9)) +
WNDSIZ
* 2)
430
mText = malloc (
WNDSIZ
* 2 + MAXMATCH);
431
for (i = 0 ; i <
WNDSIZ
* 2 + MAXMATCH; i ++) {
435
mLevel = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mLevel));
436
mChildCount = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mChildCount));
437
mPosition = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof(*mPosition));
438
mParent = malloc (
WNDSIZ
* 2 * sizeof(*mParent))
[
all
...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
TianoCompress.c
37
#define
WNDSIZ
(1U << WNDBIT)
43
#define MAX_HASH_VAL (3 *
WNDSIZ
+ (
WNDSIZ
/ 512 + 1) * UINT8_MAX)
44
#define HASH(p, c) ((p) + ((c) << (WNDBIT - 9)) +
WNDSIZ
* 2)
242
mText = malloc (
WNDSIZ
* 2 + MAXMATCH);
247
for (Index = 0; Index <
WNDSIZ
* 2 + MAXMATCH; Index++) {
251
mLevel = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mLevel));
252
mChildCount = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mChildCount));
253
mPosition = malloc ((
WNDSIZ
+ UINT8_MAX + 1) * sizeof (*mPosition));
254
mParent = malloc (
WNDSIZ
* 2 * sizeof (*mParent));
[
all
...]
Completed in 1288 milliseconds