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

1234567891011>>

/opensolaris-onvv-gate/usr/src/cmd/man/src/util/instant.src/tptregexp/
H A Dstrerror.c8 strerror(int num) argument
10 perror(num);
/opensolaris-onvv-gate/usr/src/lib/libgrubmgmt/common/
H A Dlibgrub_errno.h38 #define grub_errno_start(num) num,
39 #define grub_errno_def(num, desc) num,
40 #define grub_errno_end(num) num
/opensolaris-onvv-gate/usr/src/cmd/sgs/tsort/common/
H A Derrtag.c43 errtag(char *str, int num) argument
46 Err.tagnum = num;
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/lhash/
H A Dnum.pl10 $num{$a[3]}++;
13 @a=sort {$a <=> $b } keys %num;
16 printf "%4d:%4d\n",$_,$num{$_};
/opensolaris-onvv-gate/usr/src/lib/libc/port/gen/
H A Ddiv.c49 div(num, denom)
50 int num, denom;
54 r.quot = num / denom;
55 r.rem = num % denom;
66 * sign of num; if both are negative and r.quot has been
68 * have the opposite sign of num). These are considered
71 * If both are num and denom are positive, r will always
75 * if num >= 0, but r.rem < 0, we got the wrong answer.
79 if (num >= 0 && r.rem < 0) {
87 ldiv(num, deno
[all...]
H A Dcalloc.c41 calloc(size_t num, size_t size) argument
46 if (num == 0 || size == 0)
49 total = num * size;
52 if (total / num != size) {
/opensolaris-onvv-gate/usr/src/lib/libmapmalloc/common/
H A Dcalloc.c36 calloc(size_t num, size_t size) argument
40 num *= size;
41 mp = malloc(num);
44 (void) memset(mp, 0, num);
50 cfree(void *p, size_t num, size_t size) argument
/opensolaris-onvv-gate/usr/src/lib/krb5/dyn/
H A Ddyn_append.c22 int DynAppend(obj, els, num)
25 int num;
27 return DynInsert(obj, DynSize(obj), els, num);
H A Ddyn_insert.c19 int DynInsert(obj, idx, els_in, num)
22 int idx, num;
34 if (num < 1) {
37 num);
44 obj->el_size*idx, obj->el_size*(idx+num));
46 if ((ret = _DynResize(obj, obj->num_el + num)) != DYN_OK)
49 memmove(obj->array + obj->el_size*(idx + num),
54 obj->array + obj->el_size*(idx + num),
60 obj->el_size*num, els, obj->array, obj->el_size*idx);
63 memmove(obj->array + obj->el_size*idx, els, obj->el_size*num);
[all...]
/opensolaris-onvv-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash_log2.c49 __kdb2_log2(num)
50 u_int32_t num;
55 for (i = 0; limit < num; limit = limit << 1, i++);
/opensolaris-onvv-gate/usr/src/cmd/agents/snmp/snmprelayd/
H A Drelay.conf80 trap-num = 1, 2-5, 6
84 trap-num = 4
88 trap-num = 0, 2, 5
96 trap-num = 1, 3
100 trap-num = 1-3
/opensolaris-onvv-gate/usr/src/common/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...]
H A Denc_read.c101 long num=0,rnum; local
160 /* num=0; */
161 n2l(p,num);
162 /* num should be rounded up to the next group of eight
165 if ((num > MAXWRITE) || (num < 0)) /* error */
167 rnum=(num < 8)?8:((num+7)/8*8);
181 if (len < num)
184 DES_pcbc_encrypt(net,unnet,num,sche
[all...]
/opensolaris-onvv-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_log2.c60 __db_log2(num)
61 u_int32_t num;
66 for (i = 0; limit < num; limit = limit << 1, i++)
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/md4/
H A Dmd4s.cpp38 void md4_block_x86(MD4_CTX *ctx, unsigned char *buffer,int num);
49 int i,num=0,numm; local
53 num=atoi(argv[1]);
55 if (num == 0) num=16;
56 if (num > 250) num=16;
57 numm=num+2;
58 num*=64;
70 md4_block_x86(&ctx,buffer,num);
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/md5/
H A Dmd5s.cpp38 void md5_block_x86(MD5_CTX *ctx, unsigned char *buffer,int num);
49 int i,num=0,numm; local
53 num=atoi(argv[1]);
55 if (num == 0) num=16;
56 if (num > 250) num=16;
57 numm=num+2;
58 num*=64;
70 md5_block_x86(&ctx,buffer,num);
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/ripemd/asm/
H A Drips.cpp40 void ripemd160_block_x86(RIPEMD160_CTX *ctx, unsigned char *buffer,int num);
51 int i,num=0,numm; local
55 num=atoi(argv[1]);
57 if (num == 0) num=16;
58 if (num > 250) num=16;
59 numm=num+2;
61 num*=64;
74 ripemd160_block_x86(&ctx,buffer,num);
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/sha/
H A Dsha1s.cpp39 void sha1_block_x86(SHA_CTX *ctx, unsigned char *buffer,int num);
50 int i,num=0,numm; local
54 num=atoi(argv[1]);
56 if (num == 0) num=16;
57 if (num > 250) num=16;
58 numm=num+2;
60 num*=64;
73 sha1_block_x86(&ctx,buffer,num);
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/ipp/ipgpc/
H A Dtrie.h64 /* sets the bit at position pos of num to 1 if val == 1 */
65 #define SETBIT_CMN(num, pos, val) (num |= (val << pos))
67 #define SETBIT(num, pos, val, len) (SETBIT_CMN(num, pos, val))
69 #define SETBIT(num, pos, val, len) \
70 (SETBIT_CMN(num, (COMPUTE_BIT_POS(len, pos)), val))
73 /* sets the bit at position pos of num to 0 */
74 #define UNSETBIT_CMN(num, pos) (num
[all...]
/opensolaris-onvv-gate/usr/src/lib/libbc/libc/gen/common/
H A Dcalloc.c48 calloc(unsigned num, unsigned size) argument
53 num *= size;
54 mp = malloc(num);
57 bzero(mp, num);
62 cfree(ptr_t p, unsigned num, unsigned size) argument
/opensolaris-onvv-gate/usr/src/lib/libcommputil/common/
H A Dcommp_util.c84 commp_atoi(const char *begin, const char *end, int *num) argument
88 *num = 0;
91 *num = (*num * 10) + (*begin - '0');
107 commp_strtoull(const char *begin, const char *end, uint64_t *num) argument
111 *num = 0;
114 *num = (*num * 10) + (*begin - '0');
130 commp_strtoub(const char *begin, const char *end, uint8_t *num) argument
134 *num
153 commp_atoui(const char *begin, const char *end, uint_t *num) argument
192 commp_time_to_secs(const char *begin, const char *end, uint64_t *num) argument
[all...]
/opensolaris-onvv-gate/usr/src/common/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);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/aes/
H A Daes_cfb.c121 * 128bit block we have used is contained in *num;
126 unsigned char *ivec, int *num, const int enc) {
132 assert(in && out && key && ivec && num);
134 n = *num;
156 *num=n;
165 int n,rem,num; local
174 num = (nbits+7)/8;
176 for(n=0 ; n < num ; ++n)
179 for(n=0 ; n < num ; ++n)
183 num
124 AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, const unsigned long length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
194 AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, const unsigned long length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
213 AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, const unsigned long length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/rc4/
H A Drc4s.cpp45 int i,num=64,numm; local
49 num=atoi(argv[1]);
51 if (num == 0) num=256;
52 if (num > 1024-16) num=1024-16;
53 numm=num+8;
64 RC4(&ctx,num,buffer,buffer);
66 RC4(&ctx,num,buffer,buffer);
69 printf("RC4 (%d bytes) %d %d (%d) - 8 bytes\n",num,
[all...]
/opensolaris-onvv-gate/usr/src/lib/libnsl/dial/
H A Dgetargs.c87 int num; local
104 for (num = 0, cp = str;
107 num <<= 3;
108 num += *cp - '0';
112 if (num == 0) {
116 *to++ = (char)num;

Completed in 298 milliseconds

1234567891011>>