Searched refs:__p (Results 1 – 6 of 6) sorted by relevance
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
D | unaligned.h | 17 #define __get_unaligned_2_le(__p) (__p[0] | __p[1] << 8) argument 19 #define __get_unaligned_2_be(__p) (__p[0] << 8 | __p[1]) argument 21 #define __get_unaligned_4_le(__p) (__p[0] | __p[1] << 8 | __p[2] << 16 | __p[3] << 24) argument 23 #define __get_unaligned_4_be(__p) (__p[0] << 24 | __p[1] << 16 | __p[2] << 8 | __p[3]) argument 25 …__p = (__u8 *)(ptr); switch (sizeof(*(ptr))) { case 1: __v = *(ptr); break; case 2: __v = __… 27 …__p = (__u8 *)(ptr); switch (sizeof(*(ptr))) { case 1: __v = *(ptr); break; case 2: __v = __…
|
/development/ndk/platforms/android-3/include/sys/ |
D | stat.h | 95 static __inline__ int mkfifo(const char *__p, mode_t __m) in mkfifo() argument 97 return mknod(__p, (__m & ~S_IFMT) | S_IFIFO, (dev_t)0); in mkfifo()
|
/development/ndk/platforms/android-3/header-patches/include/sys/ |
D | stat.h | 97 static __inline__ int mkfifo(const char *__p, mode_t __m) in mkfifo() argument 99 return mknod(__p, (__m & ~S_IFMT) | S_IFIFO, (dev_t)0); in mkfifo()
|
/development/ndk/platforms/android-9/include/sys/ |
D | stat.h | 129 static __inline__ int mkfifo(const char *__p, mode_t __m) in mkfifo() argument 131 return mknod(__p, (__m & ~S_IFMT) | S_IFIFO, (dev_t)0); in mkfifo()
|
/development/ndk/platforms/android-12/include/sys/ |
D | stat.h | 129 static __inline__ int mkfifo(const char *__p, mode_t __m) in mkfifo() argument 131 return mknod(__p, (__m & ~S_IFMT) | S_IFIFO, (dev_t)0); in mkfifo()
|
/development/ndk/platforms/android-19/include/sys/ |
D | stat.h | 129 static __inline__ int mkfifo(const char *__p, mode_t __m) in mkfifo() argument 131 return mknod(__p, (__m & ~S_IFMT) | S_IFIFO, (dev_t)0); in mkfifo()
|