HomeSort by relevance Sort by last modified time
    Searched defs:ALIGNBYTES (Results 51 - 69 of 69) sorted by null

1 23

  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/sys/
param.h 37 #define ALIGNBYTES 3
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /bionic/libc/dns/net/
sethostent.c 58 #define ALIGNBYTES (sizeof(uintptr_t) - 1)
59 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) &~ ALIGNBYTES)
gethnamaddr.c 78 #define ALIGNBYTES (sizeof(uintptr_t) - 1)
79 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) &~ ALIGNBYTES)
    [all...]
  /bionic/libc/stdio/
findfp.c 44 #define ALIGNBYTES (sizeof(uintptr_t) - 1)
45 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) &~ ALIGNBYTES)
82 data = malloc(sizeof(*g) + ALIGNBYTES + n * sizeof(FILE)
  /bionic/libc/upstream-openbsd/android/include/
openbsd-compat.h 59 #define ALIGNBYTES (sizeof(uintptr_t) - 1)
60 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) &~ ALIGNBYTES)
  /bionic/libc/bionic/
fts.c 55 #define ALIGNBYTES (sizeof(uintptr_t) - 1)
56 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) &~ ALIGNBYTES)
920 len += sizeof(struct stat) + ALIGNBYTES;
  /external/openssh/
defines.h 679 # define ALIGNBYTES (sizeof(int) - 1)
680 # define ALIGN(p) (((unsigned)p + ALIGNBYTES) & ~ALIGNBYTES)

Completed in 1917 milliseconds

1 23