Searched refs:num (Results 1 - 20 of 20) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/stdlib/
H A Ddiv.c47 div(int num, int denom) argument
51 r.quot = num / denom;
52 r.rem = num % denom;
63 * sign of num; if both are negative and r.quot has been
65 * have the opposite sign of num). These are considered
68 * If both are num and denom are positive, r will always
72 * if num >= 0, but r.rem < 0, we got the wrong answer.
76 if (num >= 0 && r.rem < 0) {
H A Dldiv.c47 ldiv(long num, long denom) argument
53 r.quot = num / denom;
54 r.rem = num % denom;
55 if (num >= 0 && r.rem < 0) {
H A Dlldiv.c53 lldiv(long long int num, long long int denom)
59 r.quot = num / denom;
60 r.rem = num % denom;
61 if (num >= 0 && r.rem < 0) {
/bionic/libc/kernel/uapi/linux/hsi/
H A Dhsi_char.h22 #define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype)
24 #define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype)
25 #define HSC_IOWR(num, dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
26 #define HSC_IO(num) _IO(HSI_CHAR_MAGIC, num)
/bionic/libc/kernel/uapi/linux/
H A Dvirtio_ring.h57 unsigned int num; member in struct:vring
64 #define vring_used_event(vr) ((vr)->avail->ring[(vr)->num])
65 #define vring_avail_event(vr) (*(__u16 *)&(vr)->used->ring[(vr)->num])
H A Domapfb.h25 #define OMAP_IOW(num, dtype) _IOW('O', num, dtype)
26 #define OMAP_IOR(num, dtype) _IOR('O', num, dtype)
27 #define OMAP_IOWR(num, dtype) _IOWR('O', num, dtype)
29 #define OMAP_IO(num) _IO('O', num)
H A Disdn_ppp.h66 int num; member in struct:isdn_ppp_comp_data
H A Dmic_common.h65 __le16 num; member in struct:mic_vqconfig
H A Dvhost.h30 unsigned int num; member in struct:vhost_vring_state
H A Dsoundcard.h749 int num; member in struct:mixer_vol_table
/bionic/libc/kernel/uapi/xen/
H A Dprivcmd.h37 int num; member in struct:privcmd_mmap
44 int num; member in struct:privcmd_mmapbatch
54 unsigned int num; member in struct:privcmd_mmapbatch_v2
/bionic/libc/kernel/uapi/linux/dvb/
H A Dca.h22 int num; member in struct:ca_slot_info
37 unsigned int num; member in struct:ca_descr_info
H A Ddmx.h126 unsigned int num; member in struct:dmx_stc
H A Dfrontend.h491 __u32 num; member in struct:dtv_properties
/bionic/libc/dns/
H A Dgethnamaddr.c161 # define dprintf(msg, res, num) ((void)0) /*nada*/
1038 int num; local
1046 num = 0;
1047 while ((p = _gethtent()) != NULL && num < MAXADDRS) {
1057 if (num == 0) {
1086 num++;
1089 if (num == 0) return NULL;
1114 while (num--) {
1205 addrsort(char **ap, int num, res_state res) argument
1215 for (i = 0; i < num;
[all...]
/bionic/libc/tzcode/
H A Dlocaltime.c702 register int num; local
706 num = 0;
708 num = num * 10 + (c - '0');
709 if (num > max)
713 if (num < min)
715 *nump = num;
730 int num; local
738 strp = getnum(strp, &num, 0, HOURSPERDAY * DAYSPERWEEK - 1);
741 *secsp = num * (int_fast32_
[all...]
/bionic/libc/kernel/tools/
H A Dcpp.py225 num = self.peekNChar(3)
226 if num != None:
228 for d in num:
233 result += num
237 num = self.peekNChar(2)
238 if num != None:
240 for d in num:
245 result += num
249 num = self.peekNChar(4)
250 if num !
[all...]
/bionic/libc/kernel/uapi/linux/genwqe/
H A Dgenwqe_card.h180 __u64 num; member in struct:genwqe_reg_io
/bionic/libc/kernel/uapi/sound/
H A Dcompress_params.h192 __u32 num; member in struct:snd_enc_flac
/bionic/libc/kernel/uapi/drm/
H A Ddrm.h307 unsigned int num; member in struct:drm_update_draw

Completed in 299 milliseconds