OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ALIGN_SIZE
(Results
1 - 17
of
17
) sorted by null
/external/libmicrohttpd/src/microhttpd/
memorypool.c
38
#define
ALIGN_SIZE
(2 * sizeof(void*))
41
* Round up 'n' to a multiple of
ALIGN_SIZE
.
43
#define ROUND_TO_ALIGN(n) ((n+(
ALIGN_SIZE
-1)) & (~(
ALIGN_SIZE
-1)))
/external/pcre/dist2/src/sljit/
sljitExecAllocator.c
144
#define
ALIGN_SIZE
(size) (((size) + sizeof(struct block_header) + 7) & ~7)
185
size =
ALIGN_SIZE
(size);
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtinfo.h
9
#define
ALIGN_SIZE
0x00000008
10
#define ALIGN_SHIFT (
ALIGN_SIZE
- 0x00000001)
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
UpdateDriver.h
84
#define
ALIGN_SIZE
(a) ((a % MIN_ALIGNMENT_SIZE) ? MIN_ALIGNMENT_SIZE - (a % MIN_ALIGNMENT_SIZE) : 0)
/bionic/libc/kernel/uapi/linux/
target_core_user.h
25
#define
ALIGN_SIZE
64
33
__u32 cmd_tail __attribute__((__aligned__(
ALIGN_SIZE
)));
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeImageVerificationLib/
DxeImageVerificationLib.h
47
#define
ALIGN_SIZE
(a) (((a) % ALIGNMENT_SIZE) ? ALIGNMENT_SIZE - ((a) % ALIGNMENT_SIZE) : 0)
/external/aac/libSYS/include/
machine_type.h
294
*
ALIGN_SIZE
300
* -
ALIGN_SIZE
(3) returns 8
301
* -
ALIGN_SIZE
(8) returns 8
302
* -
ALIGN_SIZE
(9) returns 16
304
#define
ALIGN_SIZE
(a) \
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMACoder.java
30
static final int
ALIGN_SIZE
= 1 << ALIGN_BITS;
31
static final int ALIGN_MASK =
ALIGN_SIZE
- 1;
52
final short[] distAlign = new short[
ALIGN_SIZE
];
/external/xz-embedded/linux/lib/xz/
xz_lzma2.h
191
#define
ALIGN_SIZE
(1 << ALIGN_BITS)
192
#define ALIGN_MASK (
ALIGN_SIZE
- 1)
/external/kernel-headers/original/uapi/linux/
target_core_user.h
44
#define
ALIGN_SIZE
64 /* Should be enough for most CPUs */
56
__u32 cmd_tail __attribute__((__aligned__(
ALIGN_SIZE
)));
/external/libjpeg-turbo/
jmemmgr.c
76
* multiples of
ALIGN_SIZE
.
77
* By default, we define
ALIGN_SIZE
as sizeof(double). This is necessary on
80
* you can save a few bytes by making
ALIGN_SIZE
smaller.
84
* aligned well. Put "#define
ALIGN_SIZE
4" in jconfig.h if you have
88
#ifndef
ALIGN_SIZE
/* so can override from jconfig.h */
90
#define
ALIGN_SIZE
sizeof(double)
92
#define
ALIGN_SIZE
16 /* Most SIMD implementations require this */
249
* allocate
ALIGN_SIZE
-1 extra space per pool to have room for alignment
278
* Round up the requested size to a multiple of
ALIGN_SIZE
in order
288
sizeofobject = round_up_pow2(sizeofobject,
ALIGN_SIZE
);
[
all
...]
/external/libxml2/
xmlmemory.c
104
#define
ALIGN_SIZE
16
106
#define
ALIGN_SIZE
sizeof(double)
109
#define RESERVE_SIZE (((HDR_SIZE + (
ALIGN_SIZE
-1)) \
110
/
ALIGN_SIZE
) *
ALIGN_SIZE
)
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
dpath.c
20
#define
ALIGN_SIZE
(a) ((a % MIN_ALIGNMENT_SIZE) ? MIN_ALIGNMENT_SIZE - (a % MIN_ALIGNMENT_SIZE) : 0)
345
Size +=
ALIGN_SIZE
(Size);
373
Size +=
ALIGN_SIZE
(Size);
/toolchain/binutils/binutils-2.27/libiberty/
alloca.c
136
#ifndef
ALIGN_SIZE
137
#define
ALIGN_SIZE
sizeof(double)
142
char align[
ALIGN_SIZE
]; /* To force sizeof(header). */
/external/freetype/src/truetype/
ttgxvar.c
[
all
...]
/external/toybox/toys/pending/
xzcat.c
1166
#define
ALIGN_SIZE
(1 << ALIGN_BITS)
1167
#define ALIGN_MASK (
ALIGN_SIZE
- 1)
[
all
...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h
624
#define
ALIGN_SIZE
(size, boundary) (((size) + (boundary) - 1) \
Completed in 3144 milliseconds