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

12345

/bionic/libc/bionic/
H A Dgetauxval.cpp37 extern "C" unsigned long int getauxval(unsigned long int type) { argument
39 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 Dcrtbrand.c37 * following struct with a PROGBITS type. However, the section should be
38 * of NOTE type, according to the Generic SysV ABI spec.
40 * Unfortunately, there is no clean way to tell gcc to use another section type,
45 * - Edit the .s file to change the 'progbits' type to 'note', for the section
54 int32_t type; member in struct:__anon4
H A Dfpclassify.cpp94 int type = __fpclassifyd(d); local
95 return ((type != FP_NAN) && (type != FP_INFINITE));
100 int type = __fpclassifyf(f); local
101 return ((type != FP_NAN) && (type != FP_INFINITE));
147 int type = __fpclassifyl(ld); local
148 return ((type != FP_NAN) && (type != FP_INFINITE));
/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 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
H A Dnetrom.h35 int type; member in struct:nr_route_struct
/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 // between the inability to find the given type and its value just happening to be 0.
55 unsigned long getauxval(unsigned long type, bool* found_match = NULL) { argument
57 if (v->a_type == type) {

Completed in 2561 milliseconds

12345