HomeSort by relevance Sort by last modified time
    Searched refs:num (Results 1 - 25 of 1101) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/man/src/util/instant.src/tptregexp/
strerror.c 8 strerror(int num)
10 perror(num);
  /onnv/onnv-gate/usr/src/lib/libgrubmgmt/common/
libgrub_errno.h 38 #define grub_errno_start(num) num,
39 #define grub_errno_def(num, desc) num,
40 #define grub_errno_end(num) num
  /onnv/onnv-gate/usr/src/cmd/sgs/tsort/common/
errtag.c 43 errtag(char *str, int num)
46 Err.tagnum = num;
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
div.c 49 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, denom
    [all...]
calloc.c 41 calloc(size_t num, size_t size)
46 if (num == 0 || size == 0)
49 total = num * size;
52 if (total / num != size) {
  /onnv/onnv-gate/usr/src/lib/libmapmalloc/common/
calloc.c 36 calloc(size_t num, size_t size)
40 num *= size;
41 mp = malloc(num);
44 (void) memset(mp, 0, num);
50 cfree(void *p, size_t num, size_t size)
  /onnv/onnv-gate/usr/src/lib/krb5/dyn/
dyn_append.c 22 int DynAppend(obj, els, num)
25 int num;
27 return DynInsert(obj, DynSize(obj), els, num);
  /onnv/onnv-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
hash_log2.c 49 __kdb2_log2(num)
50 u_int32_t num;
55 for (i = 0; limit < num; limit = limit << 1, i++);
  /onnv/onnv-gate/usr/src/common/openssl/crypto/lhash/
num.pl 10 $num{$a[3]}++;
13 @a=sort {$a <=> $b } keys %num;
16 printf "%4d:%4d\n",$_,$num{$_};
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/snmprelayd/
relay.conf 80 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
  /onnv/onnv-gate/usr/src/cmd/fmli/sys/
varcreate.c 38 * create a new v_array with space in it for "num" elements of size "size"
42 array_create(size, num)
44 unsigned num;
50 realsize = size * num + sizeof(struct v_array);
51 initstep = num / 10;
57 ptr->tot_left = num;
  /onnv/onnv-gate/usr/src/common/openssl/crypto/des/
ofb_enc.c 74 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 > 32) /* && num != 64 *
    [all...]
enc_read.c 101 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,sched,iv,DES_DECRYPT)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/db/db/
db_log2.c 60 __db_log2(num)
61 u_int32_t num;
66 for (i = 0; limit < num; limit = limit << 1, i++)
  /onnv/onnv-gate/usr/src/common/openssl/crypto/md4/
md4s.cpp 38 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...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/md5/
md5s.cpp 38 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...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/ripemd/asm/
rips.cpp 40 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...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/sha/
sha1s.cpp 39 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...]
  /onnv/onnv-gate/usr/src/uts/common/ipp/ipgpc/
trie.h 64 /* 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 &= (~(1 << pos))
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
calloc.c 48 calloc(unsigned num, unsigned size)
53 num *= size;
54 mp = malloc(num);
57 bzero(mp, num);
62 cfree(ptr_t p, unsigned num, unsigned size)
  /onnv/onnv-gate/usr/src/lib/libcommputil/common/
commp_util.c 84 commp_atoi(const char *begin, const char *end, int *num)
88 *num = 0;
91 *num = (*num * 10) + (*begin - '0');
107 commp_strtoull(const char *begin, const char *end, uint64_t *num)
111 *num = 0;
114 *num = (*num * 10) + (*begin - '0');
130 commp_strtoub(const char *begin, const char *end, uint8_t *num)
134 *num = 0
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/aes/
aes_cfb.c 121 * 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 = nbits/8
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/rc4/
rc4s.cpp 45 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...]
  /onnv/onnv-gate/usr/src/lib/libnsl/dial/
getargs.c 87 int num; local
104 for (num = 0, cp = str;
107 num <<= 3;
108 num += *cp - '0';
112 if (num == 0) {
116 *to++ = (char)num;
  /onnv/onnv-gate/usr/src/cmd/fmli/qued/
mfuncs.c 46 fdelline(num)
47 int num;
59 winsdelln(v->subwin, -num);
63 winsdelln (v->win, -num);
71 if ((i + num) <= LASTROW)
72 fcopyline(i + num, i);
84 finsline(num, after)
85 int num, after;
97 winsdelln(v->subwin, num);
101 winsdelln(v->win, num);
    [all...]

Completed in 3290 milliseconds

1 2 3 4 5 6 7 8 91011>>