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

1234567891011>>

/freebsd-10.0-release/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.0-release/crypto/openssl/util/
H A Dtab_num.pl3 $num=1;
14 print $_.("\t" x $i).$num."\n";
15 $num++;
/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/contrib/lukemftpd/libnetbsd/
H A Dstrsuftoll.c144 long long num, t; local
157 num = strtoll(val, &expr, 10);
166 t = num;
167 num *= 512; /* 1 block */
168 if (t > num)
173 t = num;
174 num *= 1024; /* 1 kilobyte */
175 if (t > num)
180 t = num;
181 num *
[all...]
/freebsd-10.0-release/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.0-release/lib/libc/stdlib/
H A Ddiv.c42 div(num, denom)
43 int num, denom;
47 r.quot = num / denom;
48 r.rem = num % denom;
59 * sign of num; if both are negative and r.quot has been
61 * have the opposite sign of num). These are considered
64 * If both are num and denom are positive, r will always
68 * if num >= 0, but r.rem < 0, we got the wrong answer.
72 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;
51 if (num >= 0 && r.rem < 0) {
/freebsd-10.0-release/contrib/ipfilter/lib/
H A Dparsefields.c11 int num; local
14 num = 0;
30 num++;
34 fields = realloc(fields, (num + 1) * sizeof(*fields));
38 fields[num - 1].w_word = f->w_word;
40 fields[num - 1].w_word = t;
42 fields[num - 1].w_value = f->w_value;
43 fields[num].w_word = NULL;
44 fields[num].w_value = 0;
/freebsd-10.0-release/crypto/openssl/crypto/des/
H A Dofb_enc.c74 register int num=numbits; local
78 if (num > 64) return;
79 if (num > 32)
82 if (num >= 64)
85 mask1=(1L<<(num-32))-1;
89 if (num == 32)
92 mask0=(1L<<num)-1;
115 if (num == 32)
117 else if (num == 64)
119 else if (num > 3
[all...]
/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/cddl/contrib/dtracetoolkit/Proc/
H A Dsyscallbyproc.d10 syscall:::entry { @num[execname] = count(); }
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/System/
H A Dsyscallbysysc.d10 syscall:::entry { @num[probefunc] = count(); }
/freebsd-10.0-release/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) return(1);
72 neg = (BN_is_negative(num))?"-":"";
75 if (BN_is_zero(num))
82 if (BN_num_bytes(num) <= BN_BYTES)
85 (unsigned long)num->d[0],neg,(unsigned long)num->d[0])
94 n=BN_bn2bin(num,&buf[1]);
/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/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...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/asm/x86/
H A Dsqr.pl13 $num="ebx";
17 &mov($num,&wparam(2)); #
19 &and($num,0xfffffff8); # num / 8
36 &sub($num,8);
40 &mov($num,&wparam(2)); # get num
41 &and($num,7);
51 &dec($num) if ($i != 7-1);

Completed in 274 milliseconds

1234567891011>>