Searched refs:id (Results 1 - 25 of 240) sorted by relevance

12345678910

/bionic/libc/kernel/uapi/linux/
H A Dadb.h22 #define ADB_FLUSH(id) (0x01 | ((id) << 4))
23 #define ADB_WRITEREG(id,reg) (0x08 | (reg) | ((id) << 4))
24 #define ADB_READREG(id,reg) (0x0C | (reg) | ((id) << 4))
H A Dpatchkey.h27 #define _PATCHKEY(id) (0xfd00 | id)
29 #define _PATCHKEY(id) ((id << 8) | 0x00fd)
H A Dtls.h25 #define TLS_VERSION_NUMBER(id) ((((id ##_VERSION_MAJOR) & 0xFF) << 8) | ((id ##_VERSION_MINOR) & 0xFF))
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dadb.h22 #define ADB_FLUSH(id) (0x01 | ((id) << 4))
23 #define ADB_WRITEREG(id,reg) (0x08 | (reg) | ((id) << 4))
24 #define ADB_READREG(id,reg) (0x0C | (reg) | ((id) << 4))
H A Dpatchkey.h27 #define _PATCHKEY(id) (0xfd00 | id)
29 #define _PATCHKEY(id) ((id << 8) | 0x00fd)
H A Dtls.h25 #define TLS_VERSION_NUMBER(id) ((((id ##_VERSION_MAJOR) & 0xFF) << 8) | ((id ##_VERSION_MINOR) & 0xFF))
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dadb.h22 #define ADB_FLUSH(id) (0x01 | ((id) << 4))
23 #define ADB_WRITEREG(id,reg) (0x08 | (reg) | ((id) << 4))
24 #define ADB_READREG(id,reg) (0x0C | (reg) | ((id) << 4))
H A Dpatchkey.h27 #define _PATCHKEY(id) (0xfd00 | id)
29 #define _PATCHKEY(id) ((id << 8) | 0x00fd)
/bionic/libc/bionic/
H A Dsys_shm.cpp34 void* shmat(int id, const void* address, int flags) { argument
36 return reinterpret_cast<void*>(syscall(SYS_shmat, id, address, flags));
40 if (syscall(SYS_ipc, SHMAT, id, flags, &result, address, 0) == -1) {
47 int shmctl(int id, int cmd, struct shmid_ds* buf) { argument
54 return syscall(SYS_shmctl, id, cmd, buf);
56 return syscall(SYS_ipc, SHMCTL, id, cmd, 0, buf, 0);
H A Dsys_msg.cpp34 int msgctl(int id, int cmd, msqid_ds* buf) { argument
41 return syscall(SYS_msgctl, id, cmd, buf);
43 return syscall(SYS_ipc, MSGCTL, id, cmd, 0, buf, 0);
55 ssize_t msgrcv(int id, void* msg, size_t n, long type, int flags) { argument
57 return syscall(SYS_msgrcv, id, msg, n, type, flags);
59 return syscall(SYS_ipc, IPCCALL(1, MSGRCV), id, n, flags, msg, type);
63 int msgsnd(int id, const void* msg, size_t n, int flags) { argument
65 return syscall(SYS_msgsnd, id, msg, n, flags);
67 return syscall(SYS_ipc, MSGSND, id, n, flags, msg, 0);
H A Dsys_sem.cpp35 int semctl(int id, int num, int cmd, ...) { argument
46 return syscall(SYS_semctl, id, num, cmd, arg);
48 return syscall(SYS_ipc, SEMCTL, id, num, cmd, &arg, 0);
60 int semop(int id, sembuf* ops, size_t op_count) { argument
61 return semtimedop(id, ops, op_count, nullptr);
64 int semtimedop(int id, sembuf* ops, size_t op_count, const timespec* ts) { argument
66 return syscall(SYS_semtimedop, id, ops, op_count, ts);
68 return syscall(SYS_ipc, SEMTIMEDOP, id, op_count, 0, ops, ts);
H A Dwait.cpp32 extern "C" int __waitid(idtype_t which, id_t id, siginfo_t* info, int options, struct rusage* ru);
42 int waitid(idtype_t which, id_t id, siginfo_t* info, int options) { argument
44 return __waitid(which, id, info, options, NULL);
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_LED.h23 char id[27]; member in struct:xt_led_info
H A Dxt_realm.h23 __u32 id; member in struct:xt_realm_info
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/netfilter/
H A Dxt_LED.h23 char id[27]; member in struct:xt_led_info
H A Dxt_realm.h23 __u32 id; member in struct:xt_realm_info
/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_atanf.c52 int32_t ix,hx,id; local
65 id = -1;
70 id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
72 id = 1; x = (x-one)/(x+one);
76 id = 2; x = (x-(float)1.5)/(one+(float)1.5*x);
78 id = 3; x = -(float)1.0/x;
87 if (id<0) return x - x*(s1+s2);
89 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A Ds_atan.c77 int32_t ix,hx,id; local
93 id = -1;
98 id = 0; x = (2.0*x-one)/(2.0+x);
100 id = 1; x = (x-one)/(x+one);
104 id = 2; x = (x-1.5)/(one+1.5*x);
106 id = 3; x = -1.0/x;
115 if (id<0) return x - x*(s1+s2);
117 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A Ds_atanl.c37 int id; local
58 id = -1;
63 id = 0; x = (2.0*x-one)/(2.0+x);
65 id = 1; x = (x-one)/(x+one);
69 id = 2; x = (x-1.5)/(one+1.5*x);
71 id = 3; x = -1.0/x;
80 if (id<0) return x - x*(s1+s2);
82 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/netfilter/
H A Dxt_LED.h23 char id[27]; member in struct:xt_led_info
H A Dxt_realm.h23 __u32 id; member in struct:xt_realm_info
/bionic/libc/upstream-openbsd/lib/libc/gen/
H A Dftok.c33 ftok(const char *path, int id) argument
41 ((id & 0xff) << 24 | (st.st_dev & 0xff) << 16 | (st.st_ino & 0xffff));
/bionic/libc/kernel/uapi/rdma/
H A Drdma_user_cm.h66 __u32 id; member in struct:rdma_ucm_create_id_resp
70 __u32 id; member in struct:rdma_ucm_destroy_id
79 __u32 id; member in struct:rdma_ucm_bind_ip
82 __u32 id; member in struct:rdma_ucm_bind
90 __u32 id; member in struct:rdma_ucm_resolve_ip
94 __u32 id; member in struct:rdma_ucm_resolve_addr
103 __u32 id; member in struct:rdma_ucm_resolve_route
113 __u32 id; member in struct:rdma_ucm_query
163 __u32 id; member in struct:rdma_ucm_connect
167 __u32 id; member in struct:rdma_ucm_listen
173 __u32 id; member in struct:rdma_ucm_accept
177 __u32 id; member in struct:rdma_ucm_reject
183 __u32 id; member in struct:rdma_ucm_disconnect
187 __u32 id; member in struct:rdma_ucm_init_qp_attr
191 __u32 id; member in struct:rdma_ucm_notify
198 __u32 id; member in struct:rdma_ucm_join_ip_mcast
208 __u32 id; member in struct:rdma_ucm_join_mcast
218 __u32 id; member in struct:rdma_ucm_event_resp
238 __u32 id; member in struct:rdma_ucm_set_option
245 __u32 id; member in struct:rdma_ucm_migrate_id
[all...]
/bionic/libc/versioner-dependencies/common/kernel_uapi/rdma/
H A Drdma_user_cm.h66 __u32 id; member in struct:rdma_ucm_create_id_resp
70 __u32 id; member in struct:rdma_ucm_destroy_id
79 __u32 id; member in struct:rdma_ucm_bind_ip
82 __u32 id; member in struct:rdma_ucm_bind
90 __u32 id; member in struct:rdma_ucm_resolve_ip
94 __u32 id; member in struct:rdma_ucm_resolve_addr
103 __u32 id; member in struct:rdma_ucm_resolve_route
113 __u32 id; member in struct:rdma_ucm_query
163 __u32 id; member in struct:rdma_ucm_connect
167 __u32 id; member in struct:rdma_ucm_listen
173 __u32 id; member in struct:rdma_ucm_accept
177 __u32 id; member in struct:rdma_ucm_reject
183 __u32 id; member in struct:rdma_ucm_disconnect
187 __u32 id; member in struct:rdma_ucm_init_qp_attr
191 __u32 id; member in struct:rdma_ucm_notify
198 __u32 id; member in struct:rdma_ucm_join_ip_mcast
208 __u32 id; member in struct:rdma_ucm_join_mcast
218 __u32 id; member in struct:rdma_ucm_event_resp
238 __u32 id; member in struct:rdma_ucm_set_option
245 __u32 id; member in struct:rdma_ucm_migrate_id
[all...]
/bionic/tools/versioner/dependencies/common/kernel_uapi/rdma/
H A Drdma_user_cm.h66 __u32 id; member in struct:rdma_ucm_create_id_resp
70 __u32 id; member in struct:rdma_ucm_destroy_id
79 __u32 id; member in struct:rdma_ucm_bind_ip
82 __u32 id; member in struct:rdma_ucm_bind
90 __u32 id; member in struct:rdma_ucm_resolve_ip
94 __u32 id; member in struct:rdma_ucm_resolve_addr
103 __u32 id; member in struct:rdma_ucm_resolve_route
113 __u32 id; member in struct:rdma_ucm_query
163 __u32 id; member in struct:rdma_ucm_connect
167 __u32 id; member in struct:rdma_ucm_listen
173 __u32 id; member in struct:rdma_ucm_accept
177 __u32 id; member in struct:rdma_ucm_reject
183 __u32 id; member in struct:rdma_ucm_disconnect
187 __u32 id; member in struct:rdma_ucm_init_qp_attr
191 __u32 id; member in struct:rdma_ucm_notify
198 __u32 id; member in struct:rdma_ucm_join_ip_mcast
208 __u32 id; member in struct:rdma_ucm_join_mcast
218 __u32 id; member in struct:rdma_ucm_event_resp
238 __u32 id; member in struct:rdma_ucm_set_option
245 __u32 id; member in struct:rdma_ucm_migrate_id
[all...]

Completed in 213 milliseconds

12345678910