Searched refs:num (Results 51 - 75 of 825) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libldap5/sources/ldap/ssldap/
H A Derrormap.c168 PRErrorCode num; local
177 num = errStrings[i].errNum;
178 if (num <= lastNum) {
195 num, errStrings[i].errString, 0 );
203 num, errStrings[i].errString);
207 lastNum = num;
215 num = errStrings[i].errNum;
216 if (errNum == num)
218 if (errNum < num)
272 PRErrorCode num; local
[all...]
/illumos-gate/usr/src/uts/common/sys/usb/clients/usbser/
H A Dusbser_rseq.h60 typedef int (*rseq_cb_t)(rseq_t *rseq, int num, uintptr_t arg);
95 * num - number of entries in the array;
103 int rseq_do(rseq_t *rseq, int num, uintptr_t arg, int flags);
104 int rseq_undo(rseq_t *rseq, int num, uintptr_t arg, int flags);
112 int rseq_do_debug(rseq_t *rseq, int num, uintptr_t arg, int flags,
114 int rseq_undo_debug(rseq_t *rseq, int num, uintptr_t arg, int flags,
134 * for i = 0..num
159 * int my_do_cb(rseq_t *rseq, int num)
160 * { return (rseq[num].rval == 0) ? RSEQ_OK : RSEQ_UNDO; }
162 * int my_undo_cb(rseq_t *rseq, int num)
[all...]
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_rm.c91 ulong_t num = (ulong_t)rm_asrss(as) << (PAGESHIFT-1); local
96 num >>= (-shift);
99 while (shift > 0 && (num & 0x80000000) == 0) {
101 num <<= 1;
106 return (num / total);
/illumos-gate/usr/src/cmd/dtrace/demo/ip/
H A Dtcprst.d106 num[self->conn_id] = 0;
128 num[self->conn_id] = (rollover[self->conn_id]?
161 self->i = (end_ptr[self->conn_id] + MAX_RECORDS - num[self->conn_id]
166 /(self->flags & TH_RST) && (num[self->conn_id] >= 10)/
171 num[self->conn_id]--;
175 /(self->flags & TH_RST) && (num[self->conn_id] >= 9)/
180 num[self->conn_id]--;
184 /(self->flags & TH_RST) && (num[self->conn_id] >= 8)/
189 num[self->conn_id]--;
193 /(self->flags & TH_RST) && (num[sel
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrerror.c58 isc_strerror(int num) { argument
68 errnum = num; /*%< convert to unsigned */
74 ret = strerror(num); /*%< call strerror() in libc */
/illumos-gate/usr/src/lib/libgrubmgmt/common/
H A Dlibgrub_errno.def28 #define grub_errno_start(num)
32 #define grub_errno_def(num, desc)
36 #define grub_errno_end(num)
/illumos-gate/usr/src/cmd/bnu/
H A Dgetargs.c93 register int num; local
112 for ( num = 0, cp = str
117 num <<= 3;
118 num += *cp - '0';
123 if (num == 0) {
127 *to++ = (char) num;
/illumos-gate/usr/src/cmd/tip/aculib/
H A Dhayes.c27 hayes_dialer(char *num, char *acu) argument
38 logent(value(HOST), num, "hayes", "can't synch up"); local
57 logent(value(HOST), num, "hayes", line); local
65 if (*num == 'S')
69 (void) write(FD, num, strlen(num));
H A Dbiz31.c35 biz_dialer(char *num, char *mod) argument
55 echo(num);
71 logent(value(HOST), num, "biz", line); local
85 biz31w_dialer(char *num, char *acu) argument
88 return (biz_dialer(num, "w"));
93 biz31f_dialer(char *num, char *acu) argument
96 return (biz_dialer(num, "f"));
H A Dv3451.c29 v3451_dialer(char *num, char *acu) argument
50 logent(value(HOST), num, "vadic", "can't synch up"); local
62 logent(value(HOST), num, "vadic", "will not accept dial"); local
66 (void) strlcpy(phone, num, sizeof (phone));
72 logent(value(HOST), num, "vadic", "will not accept number"); local
87 logent(value(HOST), num, "vadic", "failed to dial"); local
98 logent(value(HOST), num, "vadic", "call failed"); local
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/
H A Dzfs_acl_chmod_rwx_001_pos.ksh65 function test_chmod_ACE_list #$opt $num $ace-spec $node
68 typeset -i num=$2
90 cur_ace=$(get_ACE $node $num)
95 if [[ "$num:$ace" != "$cur_ace" ]]; then
108 for num in $nums; do
112 test_chmod_ACE_list $opt $num $ace $testfile
118 test_chmod_ACE_list $opt $num $ace $testdir
/illumos-gate/usr/src/common/net/wanboot/crypt/
H A Ddes3_test.c118 int num; local
126 num = sizeof (td) / sizeof (test_data_t);
127 for (i = 0; i < num; i++) {
170 int num; local
175 num = sizeof (gk) / sizeof (test_keys_t);
176 for (i = 0; i < num; i++) {
190 num = sizeof (bk) / sizeof (test_keys_t);
191 for (i = 0; i < num; i++) {
/illumos-gate/usr/src/cmd/sgs/librtld_db/demo/common/
H A Dutils.c46 ulong_t num = 0; local
51 num = num * 16 +((int)str[i] - (int)'0');
53 num = num * 16 +((int)str[i] - (int)'a' + 10);
55 num = num * 16 + ((int)str[i] - (int)'A' + 10);
56 return (num);
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A DgssapiP_generic.h69 num should be at least this big, or the extra shifts may do weird
72 #define TWRITE_INT(ptr, num, bigend) \
73 (ptr)[0] = (char) ((bigend)?((num)>>24):((num)&0xff)); \
74 (ptr)[1] = (char) ((bigend)?(((num)>>16)&0xff):(((num)>>8)&0xff)); \
75 (ptr)[2] = (char) ((bigend)?(((num)>>8)&0xff):(((num)>>16)&0xff)); \
76 (ptr)[3] = (char) ((bigend)?((num)&0xff):((num)>>2
[all...]
/illumos-gate/usr/src/lib/libast/common/include/
H A Dmc.h67 int num; member in struct:__anon2628
74 int num; member in struct:__anon2629
/illumos-gate/usr/src/lib/libast/common/string/
H A Dstrsearch.c32 * name in the (*comparf*)() sorted tab of num elements of
40 strsearch(const void* tab, size_t num, size_t siz, Strcmp_f comparf, const char* name, void* context) argument
43 register char* hi = lo + (num - 1) * siz;
/illumos-gate/usr/src/cmd/lvm/metassist/common/
H A Dvolume_string.h85 * @param num
98 extern int str_to_uint16(char *str, uint16_t *num);
104 * @param num
121 extern int ll_to_str(long long num, char **str);
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dttimeout.c113 _settimeout(int num) argument
116 if (num > 0) {
118 PROGTTYS.c_cc[VTIME] = (num > 25500) ? 255 : (num + 99) / 100;
/illumos-gate/usr/src/cmd/format/
H A Dpartition.h59 void change_partition(int num);
/illumos-gate/usr/src/cmd/ast/msgcc/
H A Dmsgget.c59 int num; local
82 set = num = 0;
84 mcindex(s, NiL, &set, &num);
104 s = mcget(mc, set, num, msg);
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs.conf84 # num-iocbs: Sets the number of iocb buffers to allocate.
88 num-iocbs=1024;
233 # num-nodes: Number of fibre channel nodes (NPorts) the driver will support.
239 num-nodes=0;
/illumos-gate/usr/src/cmd/mandoc/
H A Dmandoc_aux.c50 mandoc_calloc(size_t num, size_t size) argument
54 ptr = calloc(num, size);
82 mandoc_reallocarray(void *ptr, size_t num, size_t size) argument
85 ptr = reallocarray(ptr, num, size);
/illumos-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"
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_missing_003_pos.ksh152 typeset -i num=0
157 while (( num < $GROUP_NUM )); do
158 vdev1="$vdev1 ${DEVICE_DIR}/${DEVICE_FILE}$num"
159 (( num = num + 1 ))
177 (( num = begin ))
178 while (( num <= end )); do
179 vdev2="$vdev2 ${DEVICE_DIR}/${DEVICE_FILE}$num"
180 (( num = num
[all...]
/illumos-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])

Completed in 2543 milliseconds

1234567891011>>