Searched refs:num (Results 301 - 325 of 825) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/cmd/cron/
H A Dfuncs.c51 num(char **ptr) function
207 (void) num(&p);
/illumos-gate/usr/src/cmd/fruadm/
H A Dfruadm.c72 static int num = sizeof (serv_data_list)/sizeof (*serv_data_list); local
89 for (j = 0; j < num; j++) {
385 uint64_t num = 0; local
411 num = strtoll(field_value, (char **)NULL, 0);
412 if ((num == 0) && (errno == 0)) {
415 data = (void*)&num;
687 elem.num = 0;
692 for (elem_cnt = 0; elem_cnt < elem.num; elem_cnt++) {
/illumos-gate/usr/src/cmd/bnu/
H A Dpermission.c318 int num; local
335 num = 0;
336 while (*p && num < maxlist) {
337 list[num] = p;
346 DEBUG(7, "list (%s) ", list[num]);
347 num++;
349 DEBUG(7, "num = %d\n", num);
350 list[num] = NULL;
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/
H A Dmove.c159 Dbg_move_bad(Lm_list *lml, ulong_t num, const char *name, Addr addr) argument
164 dbg_print(lml, MSG_INTL(MSG_MOVE_BAD), EC_XWORD(num), name,
/illumos-gate/usr/src/uts/common/syscall/
H A Dmmapobjsys.c47 mmapobj_copy_64to32(mmapobj_result_t *source, mmapobj_result32_t *dest, int num) argument
51 for (i = 0; i < num; i++) {
/illumos-gate/usr/src/uts/common/sys/ib/adapters/hermon/
H A Dhermon_rsrc.h313 uint64_t rsrc_pool_size; /* table size (num x size) */
373 uint_t num, uint_t sleepflag, hermon_rsrc_t **hdl);
382 uint_t num, uint_t sleepflag, hermon_rsrc_t **hdl);
/illumos-gate/usr/src/uts/sun4u/snowbird/io/todds1307/
H A Dtodds1307.c99 static unsigned char int2bcd(int num);
100 static int bcd2int(unsigned char num);
655 int2bcd(int num) { argument
656 return (((num / 10) << 4) /* tens BCD digit in high four bits */
657 + (num % 10)); /* units digit goes in low four bits */
661 bcd2int(unsigned char num) { argument
662 return (((num >> 4) * 10) /* 10 times high-order four bits */
663 + (num & 0x0f)); /* plus low-order four bits */
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dprivlib.c88 * boolean tests (isfull, isempty) the name<->num mappings and
800 __priv_getbynum(const priv_data_t *d, int num) argument
804 return (priv_bynum(num, d->pd_nprivs, d->pd_privnames));
808 priv_getbynum(int num) argument
810 WITHPRIVLOCKED(const char *, NULL, __priv_getbynum(GETPRIVDATA(), num))
814 __priv_getsetbynum(const priv_data_t *d, int num) argument
818 return (priv_bynum(num, d->pd_nsets, d->pd_setnames));
822 priv_getsetbynum(int num) argument
824 return (__priv_getsetbynum(GETPRIVDATA(), num));
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Ditree.h135 int num; member in struct:iterinfo
/illumos-gate/usr/src/cmd/sendmail/include/sm/
H A Dheap.h50 # define sm_heap_checkptr_tagged(ptr, tag, num) ((void)0)
/illumos-gate/usr/src/cmd/bdiff/
H A Dbdiff.c366 offset_t num; local
381 lp = satoi(lp, &num);
382 num += linenum;
383 (void) printf("%lld", num);
/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_cfg.c275 uint32_t num, size; local
335 num = (20 + size) - 13; /* XXX - consider using PAGESHIFT */
337 num -= 1; /* if blueflame, only half the size for UARs */
338 cp->cp_log_num_uar = min(hermon_log_num_uar, num);
/illumos-gate/usr/src/uts/common/io/usb/clients/usbinput/usbwcm/
H A Dusbwcm.c973 int num = copyresp->cp_cmd & 0xff; local
985 switch (num) {
1041 if (num >= EUWACOMGETBM &&
1042 num < EUWACOMGETBM + EVT_USED) {
1043 int idx = num - EUWACOMGETBM;
1074 } else if (num >= EUWACOMGETABS &&
1075 num < EUWACOMGETABS + ABS_USED) {
1076 int idx = num - EUWACOMGETABS;
1156 int num = iocp->ioc_cmd & 0xff; local
1168 switch (num) {
[all...]
/illumos-gate/usr/src/lib/libadutils/common/
H A Dadutils.c879 int num = ad->num_known_domains; local
886 (void) strlcpy(ad->known_domains[num].name, domain,
887 sizeof (ad->known_domains[num].name));
888 (void) strlcpy(ad->known_domains[num].sid, sid,
889 sizeof (ad->known_domains[num].sid));
1323 int num; local
1341 num = adh->num_requests;
1344 "AD ldap_result error - %d queued requests", num);
1379 num = adh->num_requests;
1384 msgid, num);
1586 int num; local
[all...]
/illumos-gate/usr/src/uts/sun4u/starcat/io/
H A Dgptwo_pci.c442 char num[8]; local
457 numtos(i, num);
459 (void) sprintf(temp, "%s", num);
461 (void) sprintf(temp, "%s,%s", temp, num);
/illumos-gate/usr/src/uts/sun4u/lw8/sys/
H A Dlw8.h121 int num; /* no. events requested and no. returned */ member in struct:__anon9819
/illumos-gate/usr/src/uts/common/smbsrv/
H A Dsmb_privilege.h190 int smb_priv_presentable_ids(uint32_t *ids, int num);
/illumos-gate/usr/src/boot/sys/boot/fdt/dts/arm/
H A Drk3188.dtsi237 num-slots = <1>;
249 num-slots = <1>;
/illumos-gate/usr/src/boot/sys/boot/userboot/
H A Duserboot.h201 * 'num' is used as a handle for the callback to identify which
203 * each invocation will add 1 to the previous value of 'num'.
205 const char * (*getenv)(void *arg, int num);
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/
H A Dacl_common.kshlib275 typeset -i num=$2
298 if [[ $line == "$num":* ]]; then
299 (( next_num = num + 1 ))
308 if (( next_num == num )); then
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_cache.c274 uint32_t num = 0; local
277 num = (uint32_t)avl_numnodes(&chandle->ch_cache);
281 return (num);
/illumos-gate/usr/src/lib/libnsl/ipsec/
H A Dalgs.c49 _clean_trash(ipsec_proto_t *proto, int num) argument
56 while (num-- != 0) {
57 free(proto[num].proto_name);
58 free(proto[num].proto_pkg);
59 for (alg_offset = 0; alg_offset < proto[num].proto_numalgs;
61 freeipsecalgent(proto[num].proto_algs[alg_offset]);
62 free(proto[num].proto_algs);
63 for (alg_offset = 0; alg_offset < proto[num].proto_algs_npkgs;
65 free(proto[num].proto_algs_pkgs[alg_offset].pkg_name);
66 free(proto[num]
189 build_list(FILE *f, int *num) argument
[all...]
/illumos-gate/usr/src/lib/librcm/
H A Dlibrcm_event.c216 free_door_result(door_cookie_t *cook, uint64_t num) argument
222 while (tmp && tmp->seq_num != num) {
229 (unsigned long long)num);
/illumos-gate/usr/src/lib/libc/capabilities/sun4u/common/
H A Dmemcmp.s65 ! Count > 48. We will byte compare (8 + num of bytes to dbl align)
71 sub %o4, 8, %o4 ! o4 = -(num of bytes to dbl align)
73 sub %o3, %o4, %o3 ! o3 = 8 + (num of bytes to dbl align)
/illumos-gate/usr/src/lib/libcmd/common/
H A Djoin.c860 if (opt_info.num!=1 && opt_info.num!=2)
862 n = '0' + opt_info.num;
868 opt_info.num = strtol(cp, &e, 10);
878 jp->file[0].field = (int)(opt_info.num-1);
884 if (opt_info.num <=0)
886 jp->file[n-'1'].field = (int)(opt_info.num-1);
892 if (opt_info.num!=1 && opt_info.num!=2)
894 jp->outmode |= 1<<(opt_info.num
[all...]

Completed in 2582 milliseconds

<<11121314151617181920>>