Searched refs:num (Results 126 - 150 of 1076) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/uts/sun4u/opl/sys/
H A Dfiomp.h58 int num; /* number of devices */ member in struct:fiompdev
87 int num; /* number of instances */ member in struct:fiomp_all_devinfo
110 int num; /* number of paths */ member in struct:fiompprop
156 int num; /* number of paths */ member in struct:fiomppath
179 int num; /* number of paths */ member in struct:fiomp_all_stat
186 int num; /* number of all paths */ member in struct:fiompchg
208 int num; /* instance number(meta management) or */ member in struct:fiompevent
230 #define FIOMP_PROP_PATH_NUM "iomp-path-num"
/opensolaris-onvv-gate/usr/src/common/mc/mc-amd/
H A Dmcamd_unumtopa.c50 uint64_t num, holesz; local
69 mc, MCAMD_PROP_NUM, &num,
73 "failed to lookup num, dramhole for MC 0x%p\n", mc);
76 if (num == unump->unum_chip)
93 if (!mcamd_get_numprop(hdl, dimm, MCAMD_PROP_NUM, &num)) {
95 "failed to lookup num for dimm 0xx%p\n",
99 if (num == unump->unum_dimms[0])
/opensolaris-onvv-gate/usr/src/cmd/file/
H A Dmagicutils.c90 uint64_t num; member in union:entry::__anon471
488 ep->e_value.num = strtoull((const char *)p,
635 (uint8_t)(ep->e_value.num))
641 (uint16_t)(ep->e_value.num))
647 (uint32_t)(ep->e_value.num))
652 if (u64_val != ep->e_value.num)
664 (int8_t)(ep->e_value.num))
671 (uint8_t)(ep->e_value.num))
677 (int16_t)(ep->e_value.num))
684 (uint16_t)(ep->e_value.num))
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/
H A DSubstrHash.pm181 my $num = shift;
182 $num = int($num + 1) unless $num == int $num;
183 return $num;
194 my $num = ceil(shift);
195 return 2 if $num <= 2;
197 $num++ unless $num
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/bio/
H A Dbss_conn.c92 /* int socket; this will be kept in bio->num so that it is
101 static int conn_write(BIO *h, const char *buf, int num);
221 b->num=ret;
228 if (!BIO_socket_nbio(b->num,1))
241 i=setsockopt(b->num,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
255 ret=connect(b->num,
282 i=BIO_sock_error(b->num);
361 bi->num=INVALID_SOCKET;
374 if (bio->num != INVALID_SOCKET)
378 shutdown(bio->num,
452 conn_ctrl(BIO *b, int cmd, long num, void *ptr) argument
[all...]
H A Dbio_cb.c89 bio->num,argi,bio->method->name,bio->num);
92 bio->num,argi,bio->method->name);
97 bio->num,argi,bio->method->name,bio->num);
100 bio->num,argi,bio->method->name);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/
H A Dcrypto.h365 #define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__)
366 #define OPENSSL_realloc(addr,num) \
367 CRYPTO_realloc((char *)addr,(int)num,__FILE__,__LINE__)
368 #define OPENSSL_realloc_clean(addr,old_num,num) \
369 CRYPTO_realloc_clean(addr,old_num,num,__FILE__,__LINE__)
370 #define OPENSSL_remalloc(addr,num) \
371 CRYPTO_remalloc((char **)addr,(int)num,__FILE__,__LINE__)
375 #define OPENSSL_malloc_locked(num) \
376 CRYPTO_malloc_locked((int)num,__FILE_
[all...]
/opensolaris-onvv-gate/usr/src/stand/lib/tcp/
H A Dtcp_sack.c51 * tcp_seq begin: starting seq num of the new blk.
52 * tcp_seq end: ending seq num of the new blk.
53 * int32_t *num: (referenced) total num of SACK blks on the list.
56 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num) argument
62 if (*num == 0) {
65 *num = 1;
81 old_num = *num;
126 *num = new_num + 1;
135 * tcp_seq end: to remove all sack blk with seq num les
139 tcp_sack_remove(sack_blk_t *head, tcp_seq end, int32_t *num) argument
198 tcp_notsack_insert(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
342 tcp_notsack_remove(notsack_blk_t **head, tcp_seq end, int32_t *num, uint32_t *sum) argument
398 tcp_notsack_update(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_sack.c45 * tcp_seq begin: starting seq num of the new blk.
46 * tcp_seq end: ending seq num of the new blk.
47 * int32_t *num: (referenced) total num of SACK blks on the list.
50 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num) argument
56 if (*num == 0) {
59 *num = 1;
75 old_num = *num;
120 *num = new_num + 1;
129 * tcp_seq end: to remove all sack blk with seq num les
133 tcp_sack_remove(sack_blk_t *head, tcp_seq end, int32_t *num) argument
192 tcp_notsack_insert(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
337 tcp_notsack_remove(notsack_blk_t **head, tcp_seq end, int32_t *num, uint32_t *sum) argument
391 tcp_notsack_update(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/audio/utilities/
H A DFir.cc39 #define BCOPY(src, dest, num) memmove(dest, src, num)
208 int num = getFlushSize(); local
209 if (num > 0) {
210 short *in = new short[num];
211 memset(in, 0, num * sizeof (short));
212 num = filter_noadjust(in, num, out);
215 return (num);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/asn1/
H A Devp_asn1.c78 int ret,num; local
89 num=ret;
91 num=max_len;
92 memcpy(data,p,num);
96 int ASN1_TYPE_set_int_octetstring(ASN1_TYPE *a, long num, unsigned char *data, argument
110 ASN1_INTEGER_set(&in,num);
135 /* we return the actual length..., num may be missing, in which
138 int ASN1_TYPE_get_int_octetstring(ASN1_TYPE *a, long *num, unsigned char *data, argument
169 if (num != NULL)
170 *num
[all...]
H A Df_int.c109 int num=0,slen=0,first=1; local
166 if (num+i > slen)
170 (unsigned int)num+i*2);
172 sp=OPENSSL_realloc_clean(s,slen,num+i*2);
180 slen=num+i*2;
198 s[num+j]<<=4;
199 s[num+j]|=m;
202 num+=i;
208 bs->length=num;
/opensolaris-onvv-gate/usr/src/cmd/format/
H A Dpartition.c115 change_partition(int num) argument
138 if (num > cur_parts->etoc->efi_nparts - 1) {
142 print_efi_partition(cur_parts->etoc, num, 1);
147 deflt = cur_parts->etoc->efi_parts[num].p_tag;
155 deflt = cur_parts->etoc->efi_parts[num].p_flag;
164 if ((cur_parts->etoc->efi_parts[num].p_start != 0) &&
165 (cur_parts->etoc->efi_parts[num].p_size != 0)) {
167 cur_parts->etoc->efi_parts[num].p_start;
176 efi_deflt.end_sector = cur_parts->etoc->efi_parts[num].p_size;
190 cur_parts->etoc->efi_parts[num]
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dsyslog.pl72 local(@words, $num, $numpri, $numfac, $sum);
81 $num = &xlate($_); # Translate word to number.
82 if (/^kern$/ || $num < 0) {
85 elsif ($num <= &LOG_PRIMASK) {
87 $numpri = $num;
93 $numfac = $num;
/opensolaris-onvv-gate/usr/src/lib/libast/common/string/
H A Dstrperm.c49 int num; local
64 op = num = who = typ = 0;
250 num = (num << 3) | (c - '0');
255 typ |= modei(num);
256 num = 0;
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/bn/
H A Dbn_print.c105 int i=0,num, ok = 0; local
112 * num <= (BN_num_bits(a) + 1) * log(2)
117 num=(i/10+i/1000+1)+1;
118 bn_data=(BN_ULONG *)OPENSSL_malloc((num/BN_DEC_NUM+1)*sizeof(BN_ULONG));
119 buf=(char *)OPENSSL_malloc(num+3);
127 #define BUF_REMAIN (num+3 - (size_t)(p - buf))
177 int num; local
186 num=i+neg;
187 if (bn == NULL) return(num);
233 return(num);
244 int num; local
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/engine/
H A Deng_ctrl.c87 static int int_ctrl_cmd_by_num(const ENGINE_CMD_DEFN *defn, unsigned int num) argument
92 while(!int_ctrl_cmd_is_null(defn) && (defn->cmd_num < num))
97 if(defn->cmd_num == num)
254 int num; local
262 if((e->ctrl == NULL) || ((num = ENGINE_ctrl(e,
283 if (ENGINE_ctrl(e, num, i, p, f))
291 int num, flags; local
300 if((e->ctrl == NULL) || ((num = ENGINE_ctrl(e,
319 if(!ENGINE_cmd_is_executable(e, num))
325 if((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num, NUL
[all...]
/opensolaris-onvv-gate/usr/src/lib/libparted/common/libparted/fs/ext2/
H A Dext2_block_relocator.c29 * block's original location is "num", and its new location is "dest".
38 * num, refblock/refoffset/isindirectblock, dest.
42 blk_t num; member in struct:ext2_block_entry
71 * indirectness (0-3). Each level has two items: dst and num. "num"
88 int num; member in struct:ext2_block_relocator_state::__anon4014
102 if (b0->num < b1->num)
105 if (b0->num > b1->num)
453 int num; local
577 int num; local
682 int num; local
[all...]
/opensolaris-onvv-gate/usr/src/cmd/infocmp/
H A Dinfocmp.c111 static struct numstruct *num; /* array of number information */ variable in typeref:struct:numstruct
182 num = (struct numstruct *) malloc((unsigned) numnums *
192 if ((ibool == NULL) || (num == NULL) || (str == NULL) ||
213 num[i].infoname = numnames[i];
214 num[i].capname = numcodes[i];
219 num[i].fullname = numfnames[i];
220 num[i].changed = FALSE;
221 num[i].seenagain = FALSE;
311 qsort((char *) num, (unsigned) numnums,
573 if (((num[
[all...]
/opensolaris-onvv-gate/usr/src/cmd/sgs/rtld/common/
H A Dmove.c53 elf_move_bad(Lm_list *lml, Rt_map *lmp, Sym *sym, ulong_t num, Addr addr) argument
71 (void) printf(MSG_INTL(MSG_LDD_MOVE_ERR), EC_XWORD(num), name,
74 DBG_CALL(Dbg_move_bad(lml, num, name, addr));
85 ulong_t num, mvnum = MOVESZ(lmp) / MOVEENT(lmp); local
97 for (num = 0; num < mvnum; num++, mv++) {
118 elf_move_bad(lml, lmp, sym, num, taddr);
/opensolaris-onvv-gate/usr/src/cmd/tip/
H A Dlog.c22 logent(char *group, char *num, char *acu, char *message) argument
49 num,
/opensolaris-onvv-gate/usr/src/common/openssl/apps/
H A Drand.c72 * num - write 'num' bytes
88 int num = -1; local
138 if (num < 0)
140 r = sscanf(argv[i], "%d", &num);
141 if (r == 0 || num < 0)
151 if (num < 0)
156 BIO_printf(bio_err, "Usage: rand [options] num\n");
202 while (num > 0)
207 chunk = num;
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/bf/
H A Dblowfish.h118 const BF_KEY *schedule, unsigned char *ivec, int *num, int enc);
120 const BF_KEY *schedule, unsigned char *ivec, int *num);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/cast/
H A Dcast.h96 int *num, int enc);
99 int *num);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/idea/
H A Didea.h92 int *num,int enc);
94 long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv, int *num);

Completed in 101 milliseconds

1234567891011>>