Searched refs:num (Results 76 - 100 of 3431) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/ntp/dist/libntp/
H A Drefidsmear.c38 convertLFPToRefID(l_fp num) argument
48 L_ADDUF(&num, 0x200);
49 num.l_ui &= 3;
52 temp = (num.l_ui << 22) | (num.l_uf >> 10);
/netbsd-current/external/bsd/pcc/dist/pcc/mip/
H A Dunicode.c105 cp2u16(long num, unsigned short *s) argument
108 if (num <= 0xd7ff || (num >= 0xe000 && num <= 0xffffL)) {
109 *s = num;
110 } else if (num >= 0x010000L && num <= 0x10ffffL) {
111 num -= 0x010000L;
112 s[0] = ((num >> 10) + 0xd800);
113 s[1] = ((num
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_ppc.c16 const BN_ULONG *np, const BN_ULONG *n0, int num)
19 const BN_ULONG *np, const BN_ULONG *n0, int num);
21 const BN_ULONG *np, const BN_ULONG *n0, int num);
23 if (num < 4)
26 if ((num & 3) == 0)
27 return bn_mul4x_mont_int(rp, ap, bp, np, n0, num);
37 return bn_mul_mont_int(rp, ap, bp, np, n0, num);
15 bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np, const BN_ULONG *n0, int num) argument
/netbsd-current/external/gpl3/gdb/dist/readline/readline/
H A Dparse-colors.c105 char num; /* For numerical codes */ local
117 num = 0;
165 num = *p - '0';
170 num = 0;
173 num = '\a';
176 num = '\b';
179 num = 27;
182 num = '\f';
185 num = '\n';
188 num
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/readline/readline/
H A Dparse-colors.c105 char num; /* For numerical codes */ local
117 num = 0;
165 num = *p - '0';
170 num = 0;
173 num = '\a';
176 num = '\b';
179 num = 27;
182 num = '\f';
185 num = '\n';
188 num
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mach-o/
H A Ddysymtab-3.d8 ( )+local symbols: idx:( )+0 num: 4( )+\(nxtidx: 4\)
9 ( )+external symbols: idx:( )+4 num: 1( )+\(nxtidx: 5\)
10 ( )+undefined symbols: idx:( )+5 num: 0( )+\(nxtidx: 5\)
11 ( )+table of content: off: 0x00000000 num: 0( )+\(endoff: 0x00000000\)
12 ( )+module table: off: 0x00000000 num: 0( )+\(endoff: 0x00000000\)
13 ( )+external reference table: off: 0x00000000 num: 0( )+\(endoff: 0x00000000\)
14 ( )+indirect symbol table: off: 0x00000170 num: 4( )+\(endoff: 0x00000180\)
15 ( )+external relocation table: off: 0x00000000 num: 0( )+\(endoff: 0x00000000\)
16 ( )+local relocation table: off: 0x00000000 num: 0( )+\(endoff: 0x00000000\)
/netbsd-current/games/boggle/boggle/
H A Dprtable.c55 * num - number of entries
66 prtable(const char *const base[], int num, int d_cols, int width, argument
74 if (num == 0)
76 maxlen = get_maxlen(base, num, length) + 1;
83 nrows = (num - 1) / cols + 1;
86 for (j = 0; j < num; j++) {
91 while (j < num) {
96 for (j++; j < num; j++) {
101 if (j < num) {
116 get_maxlen(const char *const base[], int num, argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/
H A Dsolib.py40 num = self.solib_count
43 while num > 0 and iteration > 0:
47 do_test_load = "call do_test_load (%d)" % num
50 self.measure.measure(func, num)
52 do_test_unload = "call do_test_unload (%d)" % num
56 do_test_load = "call do_test_load (%d)" % num
59 do_test_unload = "call do_test_unload (%d)" % num
62 self.measure.measure(func, num)
64 num = num /
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/rx/
H A Derr.c91 execution_error (enum execution_error num, unsigned long address) argument
93 if (ee_actions[num] != SIM_ERRACTION_IGNORE)
94 last_error = num;
96 if (ee_actions[num] == SIM_ERRACTION_EXIT
97 || ee_actions[num] == SIM_ERRACTION_WARN)
99 switch (num)
115 printf ("Unknown execution error %d\n", num);
120 if (ee_actions[num] == SIM_ERRACTION_EXIT)
137 execution_error_set_action (enum execution_error num, enum execution_error_action act) argument
139 ee_actions[num]
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Drand.h23 int (*seed) (const void *buf, int num);
24 int (*bytes) (unsigned char *buf, int num);
26 int (*add) (const void *buf, int num, double randomness);
27 int (*pseudorand) (unsigned char *buf, int num);
42 int RAND_bytes(unsigned char *buf, int num);
43 int RAND_priv_bytes(unsigned char *buf, int num);
44 DEPRECATEDIN_1_1_0(int RAND_pseudo_bytes(unsigned char *buf, int num))
46 void RAND_seed(const void *buf, int num);
52 void RAND_add(const void *buf, int num, double randomness);
55 const char *RAND_file_name(char *file, size_t num);
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/
H A Dsolib.py41 num = self.solib_count
44 while num > 0 and iteration > 0:
48 do_test_load = "call do_test_load (%d)" % num
51 self.measure.measure(func, num)
53 do_test_unload = "call do_test_unload (%d)" % num
57 do_test_load = "call do_test_load (%d)" % num
60 do_test_unload = "call do_test_unload (%d)" % num
63 self.measure.measure(func, num)
65 num = num /
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/rx/
H A Derr.c85 execution_error (enum execution_error num, unsigned long address) argument
87 if (ee_actions[num] != SIM_ERRACTION_IGNORE)
88 last_error = num;
90 if (ee_actions[num] == SIM_ERRACTION_EXIT
91 || ee_actions[num] == SIM_ERRACTION_WARN)
93 switch (num)
109 printf ("Unknown execution error %d\n", num);
114 if (ee_actions[num] == SIM_ERRACTION_EXIT)
131 execution_error_set_action (enum execution_error num, enum execution_error_action act) argument
133 ee_actions[num]
[all...]
/netbsd-current/crypto/external/bsd/openssl/lib/libdes/
H A Doenc_read.c100 long num=0,rnum; local
159 /* num=0; */
160 n2l(p,num);
161 /* num should be rounded up to the next group of eight
164 if ((num > MAXWRITE) || (num < 0)) /* error */
166 rnum=(num < 8)?8:((num+7)/8*8);
180 if (len < num)
183 des_pcbc_encrypt(net,unnet,num,sche
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/lib/libdes/
H A Doenc_read.c100 long num=0,rnum; local
159 /* num=0; */
160 n2l(p,num);
161 /* num should be rounded up to the next group of eight
164 if ((num > MAXWRITE) || (num < 0)) /* error */
166 rnum=(num < 8)?8:((num+7)/8*8);
180 if (len < num)
183 des_pcbc_encrypt(net,unnet,num,sche
[all...]
/netbsd-current/external/bsd/unbound/dist/testdata/fwd_three.tdir/
H A Dfwd_three.conf3 num-threads: 5
7 outgoing-num-tcp: 2
12 num-queries-per-thread: 1
/netbsd-current/lib/libterminfo/
H A Dterm_private.h56 * cap length, num flags, index, char,
57 * cap length, num numbers, index, number,
58 * cap length, num strings, index, string,
59 * cap length, num undefined caps, name, type (char), flag, number, string
106 int num; member in struct:__anon12
197 int num = (int16_t)le16dec(*cap); local
200 return num;
206 int num = (int32_t)le32dec(*cap); local
209 return num;
223 _ti_encode_16(char **cap, size_t num) argument
231 _ti_encode_32(char **cap, size_t num) argument
255 _ti_encode_buf_16(TBUF *tbuf, size_t num) argument
263 _ti_encode_buf_32(TBUF *tbuf, size_t num) argument
279 _ti_encode_buf_num(TBUF *tbuf, int num, int rtype) argument
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mpq/
H A Dset_str.c44 char *num; local
58 num = __GMP_ALLOCATE_FUNC_TYPE (numlen+1, char);
59 memcpy (num, str, numlen);
60 num[numlen] = '\0';
61 ret = mpz_set_str (mpq_numref(q), num, base);
62 __GMP_FREE_FUNC_TYPE (num, numlen+1, char);
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/aes/
H A Daes_cfb.c16 * used is contained in *num;
21 unsigned char *ivec, int *num, const int enc)
24 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
31 unsigned char *ivec, int *num, const int enc)
33 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
39 unsigned char *ivec, int *num, const int enc)
41 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
19 AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
29 AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
37 AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/camellia/
H A Dcmll_cfb.c16 * used is contained in *num;
21 unsigned char *ivec, int *num, const int enc)
24 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
31 unsigned char *ivec, int *num, const int enc)
33 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
39 unsigned char *ivec, int *num, const int enc)
41 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
19 Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
29 Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
37 Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/rand/
H A Drand_meth.c15 static int drbg_add(const void *buf, int num, double randomness) argument
19 if (drbg == NULL || num <= 0)
22 return EVP_RAND_reseed(drbg, 0, NULL, 0, buf, num);
26 static int drbg_seed(const void *buf, int num) argument
28 return drbg_add(buf, num, num);
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Devp_asn1.c36 int ret, num; local
46 num = ret;
48 num = max_len;
49 if (num > 0 && data != NULL)
50 memcpy(data, p, num);
64 long *num, unsigned char *data, int max_len)
68 if (num != NULL)
69 *num = anum;
83 int32_t num; member in struct:__anon100
88 ASN1_EMBED(asn1_int_oct, num, INT3
63 asn1_type_get_int_oct(ASN1_OCTET_STRING *oct, int32_t anum, long *num, unsigned char *data, int max_len) argument
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/camellia/
H A Dcmll_cfb.c22 * used is contained in *num;
27 unsigned char *ivec, int *num, const int enc)
30 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
37 unsigned char *ivec, int *num, const int enc)
39 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
45 unsigned char *ivec, int *num, const int enc)
47 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
25 Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
35 Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
43 Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc) argument
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/aes/
H A Daes_cfb.c22 * used is contained in *num;
27 unsigned char *ivec, int *num, const int enc)
30 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
37 unsigned char *ivec, int *num, const int enc)
39 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
45 unsigned char *ivec, int *num, const int enc)
47 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
25 AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
35 AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
43 AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
/netbsd-current/sys/arch/i386/include/
H A Di82093reg.h11 #define ioapic_asm_ack(num) \
15 #define x2apic_asm_ack(num) \
23 #define ioapic_asm_lock(num) \
30 #define ioapic_asm_unlock(num) \
35 #define ioapic_asm_lock(num)
36 #define ioapic_asm_unlock(num)
40 #define ioapic_mask(num) \
42 ioapic_asm_lock(num) ;\
54 ioapic_asm_unlock(num)
62 #define ioapic_unmask(num) \
[all...]
/netbsd-current/sys/arch/amd64/include/
H A Di82093reg.h11 #define ioapic_asm_ack(num) \
15 #define x2apic_asm_ack(num) \
23 #define ioapic_asm_lock(num) \
38 #define ioapic_asm_unlock(num) \
43 #define ioapic_asm_lock(num)
44 #define ioapic_asm_unlock(num)
49 #define ioapic_mask(num) \
51 ioapic_asm_lock(num) ;\
63 ioapic_asm_unlock(num)
65 #define ioapic_unmask(num) \
[all...]

Completed in 179 milliseconds

1234567891011>>