OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ALIGN_UP
(Results
1 - 5
of
5
) sorted by null
/external/syslinux/com32/include/syslinux/
align.h
43
#define
ALIGN_UP
(p,a) ((__typeof__(p))__align_up((uintptr_t)(p), (a)))
45
#define ALIGN_UP_FOR(p,t)
ALIGN_UP
(p,sizeof(t))
/external/syslinux/dos/
argv.c
41
#define
ALIGN_UP
(p,t) ((t *)(((uintptr_t)(p) + (sizeof(t)-1)) & ~(sizeof(t)-1)))
111
arg =
ALIGN_UP
(q, char *);
/external/mesa3d/src/mesa/drivers/dri/i965/
intel_tiled_memcpy.c
48
#define
ALIGN_UP
(a, b) ALIGN(a, b)
662
xt3 =
ALIGN_UP
(xt2, tw);
664
yt3 =
ALIGN_UP
(yt2, th);
687
x1 =
ALIGN_UP
(x0, span);
753
xt3 =
ALIGN_UP
(xt2, tw);
755
yt3 =
ALIGN_UP
(yt2, th);
778
x1 =
ALIGN_UP
(x0, span);
/external/linux-kselftest/tools/testing/selftests/x86/
protection_keys.c
54
#define
ALIGN_UP
(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1))
56
#define ALIGN_PTR_UP(p, ptr_align_to) ((typeof(p))
ALIGN_UP
((unsigned long)(p), ptr_align_to))
790
size =
ALIGN_UP
(size, HPAGE_SIZE * 2);
860
size =
ALIGN_UP
(size, HPAGE_SIZE * 2);
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h
[
all
...]
Completed in 317 milliseconds