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

1234567891011>>

/freebsd-10-stable/sys/amd64/vmm/
H A Dvmm_ipi.h33 void vmm_ipi_free(int num);
/freebsd-10-stable/crypto/openssl/crypto/lhash/
H A Dnum.pl10 $num{$a[3]}++;
13 @a=sort {$a <=> $b } keys %num;
16 printf "%4d:%4d\n",$_,$num{$_};
/freebsd-10-stable/crypto/openssl/util/
H A Dtab_num.pl3 $num=1;
14 print $_.("\t" x $i).$num."\n";
15 $num++;
/freebsd-10-stable/contrib/xz/src/common/
H A Dtuklib_integer.h10 /// - Byte swapping: bswapXX(num)
11 /// - Byte order conversions to/from native: convXXYe(num)
13 /// - Aligned writes: writeXXYe(ptr, num)
15 /// - Unaligned writes (16/32-bit only): unaligned_writeXXYe(ptr, num)
25 /// - Bit scan reverse (find highest non-zero bit): bsr32(num)
26 /// - Count leading zeros: clz32(num)
27 /// - Count trailing zeros: ctz32(num)
28 /// - Bit scan forward (simply an alias for ctz32()): bsf32(num)
30 /// The above bit scan operations return 0-31. If num is zero,
55 # define bswap16(num) bswap_1
179 uint16_t num = *(const uint16_t *)buf; local
187 uint16_t num = *(const uint16_t *)buf; local
195 uint32_t num = *(const uint32_t *)buf; local
203 uint32_t num = *(const uint32_t *)buf; local
211 uint64_t num = *(const uint64_t *)buf; local
219 uint64_t num = *(const uint64_t *)buf; local
239 write16ne(uint8_t *buf, uint16_t num) argument
247 write32ne(uint8_t *buf, uint32_t num) argument
255 write64ne(uint8_t *buf, uint64_t num) argument
286 uint16_t num = ((uint16_t)buf[0] << 8) | (uint16_t)buf[1]; local
294 uint16_t num = ((uint16_t)buf[0]) | ((uint16_t)buf[1] << 8); local
302 uint32_t num = (uint32_t)buf[0] << 24; local
313 uint32_t num = (uint32_t)buf[0]; local
322 unaligned_write16be(uint8_t *buf, uint16_t num) argument
331 unaligned_write16le(uint8_t *buf, uint16_t num) argument
340 unaligned_write32be(uint8_t *buf, uint32_t num) argument
351 unaligned_write32le(uint8_t *buf, uint32_t num) argument
[all...]
/freebsd-10-stable/contrib/gcc/config/
H A Dudivmodsi4.c2 udivmodsi4(unsigned long num, unsigned long den, int modwanted) argument
7 while (den < num && bit && !(den & (1L<<31)))
14 if (num >= den)
16 num -= den;
22 if (modwanted) return num;
/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Dclosefrom.c48 int num = getdtablesize(); local
50 if (num < 0)
51 num = 1024; /* XXX */
53 for (; fd <= num; fd++)
/freebsd-10-stable/lib/libnetbsd/
H A Dstrsuftoll.c111 long long num, t; local
120 num = strtoll(val, &expr, 10);
129 t = num;
130 num *= 512; /* 1 block */
131 if (t > num)
136 t = num;
137 num *= 1024; /* 1 kilobyte */
138 if (t > num)
143 t = num;
144 num *
[all...]
/freebsd-10-stable/lib/libc/stdlib/
H A Ddiv.c42 div(num, denom)
43 int num, denom;
47 r.quot = num / denom;
48 r.rem = num % denom;
60 * sign of num; if both are negative and r.quot has been
62 * have the opposite sign of num). These are considered
65 * If both are num and denom are positive, r will always
69 * if num >= 0, but r.rem < 0, we got the wrong answer.
73 if (num >= 0 && r.rem < 0) {
H A Dldiv.c42 ldiv(num, denom)
43 long num, denom;
49 r.quot = num / denom;
50 r.rem = num % denom;
52 if (num >= 0 && r.rem < 0) {
/freebsd-10-stable/crypto/openssl/crypto/des/
H A Dofb_enc.c74 register int num = numbits; local
78 if (num > 64)
80 if (num > 32) {
82 if (num >= 64)
85 mask1 = (1L << (num - 32)) - 1;
87 if (num == 32)
90 mask0 = (1L << num) - 1;
112 if (num == 32) {
115 } else if (num == 64) {
118 } else if (num > 3
[all...]
/freebsd-10-stable/sys/arm/conf/
H A Dgenboardid.awk36 BEGIN { nr = 0; boardid[nr] = "ARM_BOARD_ID_NONE"; num[nr++] = 0; }
42 num[nr] = $4;
51 printf("#define %-30s %d\n", boardid[i], num[i]);
/freebsd-10-stable/sys/kern/
H A Dposix4_mib.c59 #define P1B_SYSCTL(num, name) \
60 SYSCTL_INT(_p1003_1b, num, name, CTLFLAG_RD | CTLFLAG_CAPRD, \
61 facility + num - 1, 0, "");
62 #define P1B_SYSCTL_RW(num, name) \
63 SYSCTL_PROC(_p1003_1b, num, name, CTLTYPE_INT | CTLFLAG_RW, NULL, num, \
70 #define P1B_SYSCTL(num, name) \
72 facility + num - 1, 0, "");
73 #define P1B_SYSCTL_RW(num, name) \
75 num, p31b_sysctl_pro
112 int error, num, val; local
127 p31b_setcfg(int num, int value) argument
137 p31b_unsetcfg(int num) argument
145 p31b_getcfg(int num) argument
154 p31b_iscfg(int num) argument
[all...]
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Bin/
H A Dsyscallbyproc.d10 syscall:::entry { @num[execname] = count(); }
H A Dsyscallbysysc.d10 syscall:::entry { @num[probefunc] = count(); }
H A Dcswstat.d49 num = 0;
55 num++;
70 printf("%20Y %8d %12d %12d\n", walltimestamp, num, times/1000,
71 num == 0 ? 0 : times/(1000 * num));
73 num = 0;
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Proc/
H A Dsyscallbyproc.d10 syscall:::entry { @num[execname] = count(); }
/freebsd-10-stable/cddl/contrib/dtracetoolkit/System/
H A Dsyscallbysysc.d10 syscall:::entry { @num[probefunc] = count(); }
/freebsd-10-stable/crypto/openssl/crypto/asn1/
H A Dt_pkey.c65 int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, argument
71 if (num == NULL)
73 neg = (BN_is_negative(num)) ? "-" : "";
76 if (BN_is_zero(num)) {
82 if (BN_num_bytes(num) <= BN_BYTES) {
84 (unsigned long)num->d[0], neg,
85 (unsigned long)num->d[0])
93 n = BN_bn2bin(num, &buf[1]);
/freebsd-10-stable/sys/gnu/dts/include/dt-bindings/interrupt-controller/
H A Darm-gic.h20 #define GIC_CPU_MASK_SIMPLE(num) GIC_CPU_MASK_RAW((1 << (num)) - 1)
/freebsd-10-stable/contrib/ntp/include/
H A Drefidsmear.h3 extern uint32_t convertLFPToRefID(l_fp num);
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Kernel/
H A Dcswstat.d49 num = 0;
55 num++;
70 printf("%20Y %8d %12d %12d\n", walltimestamp, num, times/1000,
71 num == 0 ? 0 : times/(1000 * num));
73 num = 0;
/freebsd-10-stable/contrib/ldns/compat/
H A Dcalloc.c15 calloc(size_t num, size_t size) argument
17 void *new = malloc(num * size);
21 bzero(new, num * size);
/freebsd-10-stable/lib/libc/i386/sys/
H A Di386_get_ldt.c37 i386_get_ldt(int start, union descriptor *descs, int num) argument
43 p.num = num;
H A Di386_set_ldt.c37 i386_set_ldt(int start, union descriptor *descs, int num) argument
43 p.num = num;
/freebsd-10-stable/sys/dev/virtio/
H A Dvirtio_ring.h86 unsigned int num; member in struct:vring
94 * looks like this. We assume num is a power of 2.
98 * struct vring_desc desc[num];
103 * __u16 available[num];
112 * struct vring_used_elem used[num];
123 #define vring_used_event(vr) ((vr)->avail->ring[(vr)->num])
124 #define vring_avail_event(vr) (*(uint16_t *)&(vr)->used->ring[(vr)->num])
127 vring_size(unsigned int num, unsigned long align) argument
131 size = num * sizeof(struct vring_desc);
132 size += sizeof(struct vring_avail) + (num * sizeo
141 vring_init(struct vring *vr, unsigned int num, uint8_t *p, unsigned long align) argument
[all...]

Completed in 123 milliseconds

1234567891011>>