OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ALIGN_SIZE
(Results
1 - 14
of
14
) 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/dist/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)
/bionic/libc/kernel/uapi/linux/
target_core_user.h
26
#define
ALIGN_SIZE
64
35
__u32 cmd_tail __attribute__((__aligned__(
ALIGN_SIZE
)));
/external/aac/libSYS/include/
machine_type.h
256
*
ALIGN_SIZE
262
* -
ALIGN_SIZE
(3) returns 8
263
* -
ALIGN_SIZE
(8) returns 8
264
* -
ALIGN_SIZE
(9) returns 16
266
#define
ALIGN_SIZE
(a) ((a)+ (((INT)ALIGNMENT_DEFAULT - ((INT)(a) & (ALIGNMENT_DEFAULT-1)) ) & (ALIGNMENT_DEFAULT-1)))
/external/kernel-headers/original/uapi/linux/
target_core_user.h
43
#define
ALIGN_SIZE
64 /* Should be enough for most CPUs */
54
__u32 cmd_tail __attribute__((__aligned__(
ALIGN_SIZE
)));
/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/lzma/xz-embedded/
xz_lzma2.h
191
#define
ALIGN_SIZE
(1 << ALIGN_BITS)
192
#define ALIGN_MASK (
ALIGN_SIZE
- 1)
/external/libjpeg-turbo/
jmemmgr.c
71
* multiples of
ALIGN_SIZE
.
72
* By default, we define
ALIGN_SIZE
as sizeof(double). This is necessary on some
75
* you can save a few bytes by making
ALIGN_SIZE
smaller.
79
* aligned well. Put "#define
ALIGN_SIZE
4" in jconfig.h if you have
83
#ifndef
ALIGN_SIZE
/* so can override from jconfig.h */
85
#define
ALIGN_SIZE
sizeof(double)
87
#define
ALIGN_SIZE
16 /* Most SIMD implementations require this */
244
* allocate
ALIGN_SIZE
-1 extra space per pool to have room for alignment
273
* Round up the requested size to a multiple of
ALIGN_SIZE
in order
278
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
)
/ndk/sources/host-tools/make-3.81/
alloca.c
147
#ifndef
ALIGN_SIZE
148
#define
ALIGN_SIZE
sizeof(double)
153
char align[
ALIGN_SIZE
]; /* To force sizeof(header). */
/toolchain/binutils/binutils-2.25/libiberty/
alloca.c
136
#ifndef
ALIGN_SIZE
137
#define
ALIGN_SIZE
sizeof(double)
142
char align[
ALIGN_SIZE
]; /* To force sizeof(header). */
/external/toybox/toys/pending/
xzcat.c
1172
#define
ALIGN_SIZE
(1 << ALIGN_BITS)
1173
#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 293 milliseconds