Searched defs:type (Results 1 - 25 of 133) sorted by relevance

123456

/bionic/libc/bionic/
H A Dgetauxval.cpp38 extern "C" unsigned long int getauxval(unsigned long int type) { argument
40 if (v->a_type == type) {
H A Dsocket.cpp21 int socket(int domain, int type, int protocol) { argument
22 return __netdClientDispatch.socket(domain, type, protocol);
H A Dbionic_netlink.cpp56 bool NetlinkConnection::SendRequest(int type) { argument
73 request.hdr.nlmsg_type = type;
/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_llrint.c4 #define type double macro
H A Ds_llrintf.c4 #define type float macro
H A Ds_llrintl.c4 #define type long double macro
H A Ds_lrintf.c4 #define type float macro
H A Ds_lrintl.c4 #define type long double macro
H A Ds_llround.c4 #define type double macro
H A Ds_llroundf.c4 #define type float macro
H A Ds_llroundl.c4 #define type long double macro
H A Ds_lrint.c31 #ifndef type
33 #define type double macro
43 * significant bits than 'type'. Hence, we bend over backwards for the
47 fn(type x)
H A Ds_lroundf.c4 #define type float macro
H A Ds_lroundl.c4 #define type long double macro
H A Ds_lround.c32 #ifndef type
34 #define type double macro
43 * If type has more precision than dtype, the endpoints dtype_(min|max) are
45 * from 0. On the other hand, if type has less precision than dtype, then
50 static const type dtype_min = DTYPE_MIN - 0.5;
51 static const type dtype_max = DTYPE_MAX + 0.5;
56 fn(type x)
/bionic/libc/kernel/uapi/linux/
H A Datm_he.h31 char type; member in struct:he_ioctl_reg
H A Duserio.h30 __u8 type; member in struct:userio_cmd
H A Divtv.h26 enum v4l2_buf_type type; member in struct:ivtv_dma_frame
H A Datm_tcp.h39 int type; member in struct:atmtcp_control
H A Datmarp.h42 enum atmarp_ctrl_type type; member in struct:atmarp_ctrl
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_AUDIT.h32 __u8 type; member in struct:xt_audit_info
H A Dxt_l2tp.h32 __u8 type; member in struct:xt_l2tp_info
/bionic/libc/kernel/uapi/linux/usb/
H A Dgadgetfs.h40 enum usb_gadgetfs_event_type type; member in struct:usb_gadgetfs_event
/bionic/libc/private/
H A DKernelArgumentBlock.h54 unsigned long getauxval(unsigned long type) { argument
56 if (v->a_type == type) {
/bionic/libc/stdio/
H A Dstdio_ext.cpp78 int __fsetlocking(FILE* fp, int type) { argument
80 if (type == FSETLOCKING_QUERY) {
84 if (type != FSETLOCKING_INTERNAL && type != FSETLOCKING_BYCALLER) {
86 __libc_fatal("Bad type (%d) passed to __fsetlocking", type);
89 _EXT(fp)->_caller_handles_locking = (type == FSETLOCKING_BYCALLER);

Completed in 657 milliseconds

123456