Home
last modified time | relevance | path

Searched defs:type (Results 1 – 25 of 172) sorted by relevance

1234567

/bionic/libc/kernel/uapi/asm-generic/
Dioctl.h46 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr) << _I… argument
48 #define _IO(type,nr) _IOC(_IOC_NONE, (type), (nr), 0) argument
49 #define _IOR(type,nr,size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size))) argument
50 #define _IOW(type,nr,size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument
51 #define _IOWR(type,nr,size) _IOC(_IOC_READ | _IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument
52 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ, (type), (nr), sizeof(size)) argument
53 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE, (type), (nr), sizeof(size)) argument
54 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ | _IOC_WRITE, (type), (nr), sizeof(size)) argument
/bionic/tools/versioner/src/
DDriver.cpp59 CompilationType type; member in VersionerASTConsumer
61 VersionerASTConsumer(HeaderDatabase* header_database, CompilationType type) in VersionerASTConsumer()
73 CompilationType type; member in VersionerASTAction
75 VersionerASTAction(HeaderDatabase* header_database, CompilationType type) in VersionerASTAction()
98 CompilationType type, in generateTargetCC1Flags()
175 static std::vector<const char*> getCC1Command(CompilationType type, const std::string& filename) { in getCC1Command()
203 for (const CompilationType type : types) { in initializeTargetCC1FlagCache() local
230 HeaderDatabase* header_database, CompilationType type, in compileHeader()
DSymbolDatabase.cpp68 static std::string readPlatformFile(const CompilationType& type, llvm::StringRef platform_dir, in readPlatformFile()
96 static std::map<std::string, NdkSymbolType> parsePlatform(const CompilationType& type, in parsePlatform()
148 for (const CompilationType& type : types) { in parsePlatforms() local
DCompilationType.cpp22 std::string to_string(const CompilationType& type) { in to_string()
/bionic/libc/kernel/uapi/linux/
Dcryptouser.h57 char type[CRYPTO_MAX_NAME]; member
60 char type[CRYPTO_MAX_NAME]; member
65 char type[CRYPTO_MAX_ALG_NAME]; member
71 char type[CRYPTO_MAX_NAME]; member
79 char type[CRYPTO_MAX_NAME]; member
86 char type[CRYPTO_MAX_NAME]; member
89 char type[CRYPTO_MAX_NAME]; member
93 char type[CRYPTO_MAX_NAME]; member
96 char type[CRYPTO_MAX_NAME]; member
99 char type[CRYPTO_MAX_NAME]; member
/bionic/libc/kernel/uapi/sound/
Dfirewire.h28 unsigned int type; member
31 unsigned int type; member
35 unsigned int type; member
49 unsigned int type; member
53 unsigned int type; member
73 unsigned int type; member
/bionic/libc/include/sys/
Dqueue.h86 #define LIST_HEAD(name, type) \ argument
94 #define LIST_ENTRY(type) \ argument
152 #define SLIST_HEAD(name, type) \ argument
160 #define SLIST_ENTRY(type) \ argument
186 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
213 #define STAILQ_HEAD(name, type) \ argument
222 #define STAILQ_ENTRY(type) \ argument
258 #define STAILQ_REMOVE(head, elm, type, field) do { \ argument
287 #define SIMPLEQ_HEAD(name, type) \ argument
296 #define SIMPLEQ_ENTRY(type) \ argument
[all …]
/bionic/libc/kernel/uapi/linux/netfilter/
Dxt_sctp.h45 #define bytes(type) (sizeof(type) * 8) argument
46 #define SCTP_CHUNKMAP_SET(chunkmap,type) do { (chunkmap)[type / bytes(__u32)] |= 1 << (type % bytes… argument
47 #define SCTP_CHUNKMAP_CLEAR(chunkmap,type) do { (chunkmap)[type / bytes(__u32)] &= ~(1 << (type % b… argument
48 #define SCTP_CHUNKMAP_IS_SET(chunkmap,type) \ argument
/bionic/libc/bionic/
Dgetauxval.cpp38 extern "C" unsigned long int getauxval(unsigned long int type) { in getauxval()
Dsocket.cpp21 int socket(int domain, int type, int protocol) { in socket()
Dfpclassify.cpp95 int type = __fpclassifyd(d); in __isfinite() local
101 int type = __fpclassifyf(f); in __isfinitef() local
148 int type = __fpclassifyl(ld); in __isfinitel() local
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_fdim.c32 #define DECL(type, fn) \ argument
Ds_llrintl.c4 #define type long double macro
Ds_llrint.c4 #define type double macro
Ds_llrintf.c4 #define type float macro
Ds_lrintl.c4 #define type long double macro
Ds_nearbyint.c44 #define DECL(type, fn, rint) \ argument
Ds_lrintf.c4 #define type float macro
Ds_llroundf.c4 #define type float macro
Ds_llround.c4 #define type double macro
Ds_llroundl.c4 #define type long double macro
Ds_lroundl.c4 #define type long double macro
Ds_lroundf.c4 #define type float macro
/bionic/libc/upstream-netbsd/lib/libc/include/isc/
Dlist.h24 #define LIST(type) struct { type *head, *tail; } argument
28 #define LINK(type) struct { type *prev, *next; } argument
29 #define INIT_LINK_TYPE(elt, link, type) \ argument
67 #define UNLINK_TYPE(list, elt, link, type) \ argument
/bionic/libc/kernel/uapi/linux/netfilter_bridge/
Debt_802_3.h34 __be16 type; member
41 __be16 type; member
54 __be16 type; member

1234567