Home
last modified time | relevance | path

Searched refs:value (Results 176 – 200 of 3750) sorted by relevance

12345678910>>...150

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.neglquant.d.out3 value ------------- Distribution ------------- count
9 value ------------- Distribution ------------- count
15 value ------------- Distribution ------------- count
22 value ------------- Distribution ------------- count
29 value ------------- Distribution ------------- count
42 value ------------- Distribution ------------- count
54 value ------------- Distribution ------------- count
H A Dtst.negquant.d.out3 value ------------- Distribution ------------- count
9 value ------------- Distribution ------------- count
15 value ------------- Distribution ------------- count
23 value ------------- Distribution ------------- count
30 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
48 value ------------- Distribution ------------- count
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_set/
H A Dzfs_set_common.kshlib226 typeset value=$(random_string ALL_CHAR $len)
228 echo "$value"
243 typeset value=$(zfs get -p -H -o value "$user_prop" $dtst 2>&1)
245 if [[ "$expect_value" == "$value" ]]; then
283 typeset value="$3"
311 typeset value=$(get_prop "$prop" "$checked_dtst")
314 if [[ "$value" != "$inherited_value" || \
336 typeset value="$3"
343 if [[ "$received" == "$value" ]]
364 value=$(zfs get -H -o value "$prop" "$dataset")
[all …]
H A Dsnapdir_001_pos.ksh59 typeset value=$2
65 if [[ $value == "visible" ]]; then
73 if [[ $value == "visible" ]]; then
98 for value in hidden visible; do
100 set_n_check_prop "$value" "snapdir" \
103 set_n_check_prop "$value" "snapdir" \
105 verify_snapdir_visible $dataset $value
107 log_fail "$dataset/.zfs is not $value as expect."
/illumos-gate/usr/src/common/atomic/sparc/
H A Datomic.S99 ld [%o0], %o2 ! read old value
101 add %o2, %o1, %o5 ! add value to the old value
108 mov %o5, %o2 ! %o2 = old value
173 ld [%o0], %o2 ! read old value
175 add %o1, %o2, %o5 ! add value to the old value
336 ld [%o0], %o2 ! read old value
372 ld [%o0], %o2 ! read old value
458 ld [%o0], %o2 ! read old value
494 ld [%o0], %o2 ! read old value
574 ld [%o0], %o4 ! read old value
[all …]
/illumos-gate/usr/src/uts/intel/asm/
H A Dcpu.h140 __set_ds(selector_t value) in __set_ds() argument
145 : "r" (value)); in __set_ds()
149 __set_es(selector_t value) in __set_es() argument
154 : "r" (value)); in __set_es()
158 __set_fs(selector_t value) in __set_fs() argument
163 : "r" (value)); in __set_fs()
167 __set_gs(selector_t value) in __set_gs() argument
172 : "r" (value)); in __set_gs()
/illumos-gate/usr/src/common/bignum/
H A Dbignumimpl.c447 dest->value[i] = src->value[i]; in big_copy()
468 number->value = big_realloc(number->value, in big_extend()
658 if (aa->value[i] > bb->value[i]) { in big_cmp_abs()
660 } else if (aa->value[i] < bb->value[i]) { in big_cmp_abs()
866 res1.value = result->value + lendiff; in big_sub_pos_high()
868 aa1.value = aa->value + lendiff; in big_sub_pos_high()
872 if (result->value != aa->value) { in big_sub_pos_high()
874 result->value[i] = aa->value[i]; in big_sub_pos_high()
896 aa1.value = aa->value + lendiff; in big_cmp_abs_high()
2554 t2.value[t2.len - 1] = 2 * t1.value[t1.len - 1] - 1; in big_sqrt_pos()
[all …]
/illumos-gate/usr/src/cmd/pcitool/
H A Dpcitool_ui.c913 char *value; in parse_nexus_opts() local
938 if (value == NULL) { in parse_nexus_opts()
970 if (value == NULL) { in parse_nexus_opts()
1293 uint64_t value; in parse_ino_opts() local
1309 if (*ino_arg != value) { in parse_ino_opts()
1320 *cpu_arg = (int)value; in parse_ino_opts()
1332 if (*ino_arg != value) { in parse_ino_opts()
1359 uint64_t value; in parse_msi_opts() local
1368 if (*msi_arg != value) { in parse_msi_opts()
1385 if (*msi_arg != value) { in parse_msi_opts()
[all …]
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dsmb_autohome.c467 char *value; in smb_autohome_parse_options() local
485 if ((value = strsep(&bp, ",")) == NULL) in smb_autohome_parse_options()
487 } while (*value == '\0'); in smb_autohome_parse_options()
489 if (value == NULL) in smb_autohome_parse_options()
492 *ap++ = value; in smb_autohome_parse_options()
500 value = *ap; in smb_autohome_parse_options()
507 if (strncasecmp(value, "csc=", 4) == 0) { in smb_autohome_parse_options()
508 smb_shr_sa_csc_option((value + 4), si); in smb_autohome_parse_options()
523 if (strncasecmp(value, "rw=", 3) == 0) { in smb_autohome_parse_options()
529 if (strncasecmp(value, "ro=", 3) == 0) { in smb_autohome_parse_options()
[all …]
/illumos-gate/usr/src/lib/nsswitch/user/common/
H A Dgetprinter.c44 char *value = NULL; in _nss_user_printers_convert() local
47 if ((value = strpbrk(entry, "\t ")) != NULL) { in _nss_user_printers_convert()
48 *value = '\0'; in _nss_user_printers_convert()
49 value++; in _nss_user_printers_convert()
51 while ((*value != '\0') && (isspace(*value) != 0)) in _nss_user_printers_convert()
52 value++; in _nss_user_printers_convert()
54 if ((key = strpbrk(value, "\n\t ")) != NULL) in _nss_user_printers_convert()
59 if ((value == NULL) || (*value == '\0')) { /* bad value */ in _nss_user_printers_convert()
73 while ((length < args->buf.buflen) && (*value != '\0')) { in _nss_user_printers_convert()
74 if (*value == ':') in _nss_user_printers_convert()
[all …]
/illumos-gate/usr/src/lib/auditd_plugins/remote/
H A Dtransport.c206 memcmp(out_buf.value, in_buf.value, out_buf.length) != 0) { in prot_ver_negotiate()
211 free(in_buf.value); in prot_ver_negotiate()
226 free(in_buf.value); in prot_ver_negotiate()
235 free(in_buf.value); in prot_ver_negotiate()
488 free(tok->value); in recv_token()
489 tok->value = NULL; in recv_token()
876 free(in_buf.value); in send_record()
890 free(in_buf.value); in send_record()
901 free(in_buf.value); in send_record()
1093 in_buf_mic.value = (char *)in_buf.value + sizeof (r_seq_num); in recv_record()
[all …]
/illumos-gate/usr/src/uts/common/sys/nxge/
H A Dnxge_hw.h87 uint64_t value; member
119 uint64_t value; member
160 uint64_t value; member
217 uint64_t value; member
258 uint64_t value; member
276 uint64_t value; member
315 uint64_t value; member
347 uint64_t value; member
376 uint64_t value; member
415 uint64_t value; member
[all …]
/illumos-gate/usr/src/uts/i86pc/os/
H A Dfakebop.c426 value, strlen(value) + 1); in bsetprops()
433 (void *)&value, sizeof (value)); in bsetprop32()
440 (void *)&value, sizeof (value)); in bsetprop64()
760 if (v_len >= 2 && value[0] == value[v_len - 1] && in read_bootenvrc()
761 (value[0] == '\'' || value[0] == '"')) { in read_bootenvrc()
762 ++value; in read_bootenvrc()
1611 ++value; in build_boot_properties()
1616 while (*value && !ISSPACE(*value) && *value != '=') { in build_boot_properties()
1628 value++; in build_boot_properties()
1669 ++value; in build_boot_properties()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dcpu.c3338 csskd->cpu_ticks_idle.value.ui64 = in cpu_sys_stats_ks_update()
3340 csskd->cpu_ticks_user.value.ui64 = in cpu_sys_stats_ks_update()
3355 csskd->trap.value.ui64 = css->trap; in cpu_sys_stats_ks_update()
3356 csskd->intr.value.ui64 = 0; in cpu_sys_stats_ks_update()
3373 csskd->msg.value.ui64 = css->msg; in cpu_sys_stats_ks_update()
3374 csskd->sema.value.ui64 = css->sema; in cpu_sys_stats_ks_update()
3381 csskd->intrthread.value.ui64 = 0; in cpu_sys_stats_ks_update()
3419 cvskd->pgin.value.ui64 = cvs->pgin; in cpu_vm_stats_ks_update()
3427 cvskd->zfod.value.ui64 = cvs->zfod; in cpu_vm_stats_ks_update()
3429 cvskd->scan.value.ui64 = cvs->scan; in cpu_vm_stats_ks_update()
[all …]
/illumos-gate/usr/src/cmd/sgs/rtld/sparc/
H A Dsparc_elf.c760 value = basebgn; in elf_reloc()
800 value = pvalue; in elf_reloc()
910 pvalue = value; in elf_reloc()
934 value -= roffset; in elf_reloc()
948 value)) == 0) { in elf_reloc()
965 value = 0; in elf_reloc()
973 value = basebgn; in elf_reloc()
1004 value += reladd; in elf_reloc()
1006 set_sparc_g1(value); in elf_reloc()
1063 (Xword)value)); in elf_reloc()
[all …]
/illumos-gate/usr/src/uts/sun4v/io/n2rng/
H A Dn2rng_kstat.c139 n2rng->n_stats[i] = dkp->ns_algs[i].value.ull; in n2rng_ksupdate()
145 (void) strcpy(dkp->ns_status.value.c, "failed"); in n2rng_ksupdate()
151 (void) strcpy(dkp->ns_status.value.c, "online"); in n2rng_ksupdate()
155 dkp->ns_algs[i].value.ull = n2rng->n_stats[i]; in n2rng_ksupdate()
168 dkp->ns_rngstate[i].value.c, in n2rng_ksupdate()
173 dkp->ns_rngstate[i].value.c, in n2rng_ksupdate()
178 dkp->ns_rngstate[i].value.c, in n2rng_ksupdate()
183 dkp->ns_rngstate[i].value.c, in n2rng_ksupdate()
188 dkp->ns_rngstate[i].value.c, in n2rng_ksupdate()
193 dkp->ns_rngbias[i][j].value.ull = in n2rng_ksupdate()
[all …]
/illumos-gate/usr/src/lib/libsecdb/common/
H A Dsecdb.c57 return (data[i].value); in kva_match()
82 if (data[i].value != NULL) { in _kva_free()
83 free(data[i].value); in _kva_free()
84 data[i].value = NULL; in _kva_free()
110 free(data->value); in _kva_free_value()
111 data->value = NULL; in _kva_free_value()
244 if (data[i].value != NULL) in _insert2kva()
245 free(data[i].value); in _insert2kva()
246 data[i].value = _strdup_null(value); in _insert2kva()
274 new_data[i].value = _strdup_null(old_data[i].value); in _kva_dup()
[all …]
/illumos-gate/usr/src/cmd/lp/lib/filters/
H A Dregex.c46 char * value in match() argument
49 match (re, value) in match()
51 register char * value;
64 ret = advance(value, re);
79 char * value, in replace() argument
83 replace (pp, result, value) in replace()
86 char * value;
120 SCPY (value);
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dutil_set.c37 void *value; member
63 int g_set_entry_add(g_set_elt *s, void *key, void *value) in g_set_entry_add() argument
71 first->value = value; in g_set_entry_add()
96 int g_set_entry_get(g_set_elt *s, void *key, void **value) in g_set_entry_get() argument
102 *value = p->value; in g_set_entry_get()
108 *value = NULL; in g_set_entry_get()
/illumos-gate/usr/src/uts/intel/sys/
H A Dddi_isa.h80 uint8_t value);
82 uint16_t value);
84 uint32_t value);
86 uint64_t value);
153 i_ddi_vaddr_put8(ddi_acc_impl_t *hdlp, uint8_t *addr, uint8_t value);
260 i_ddi_io_put8(ddi_acc_impl_t *hdlp, uint8_t *addr, uint8_t value);
263 i_ddi_io_put16(ddi_acc_impl_t *hdlp, uint16_t *addr, uint16_t value);
266 i_ddi_io_put32(ddi_acc_impl_t *hdlp, uint32_t *addr, uint32_t value);
375 uint16_t value);
379 uint32_t value);
[all …]
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_re.c307 if (!value(vi_EDCOMPATIBLE)) in compsub()
438 if (value(vi_MAGIC)) { in comprhs()
446 error(value(vi_TERSE) ? in comprhs()
464 error(value(vi_TERSE) ? in comprhs()
481 if (value(vi_MAGIC)) in comprhs()
488 error(value(vi_TERSE) ? in comprhs()
813 cerror(value(vi_TERSE) ? in vi_compile()
871 if (value(vi_MAGIC) == 0) in vi_compile()
991 if (value(vi_MAGIC)) in vi_compile()
1080 if(value(vi_IGNORECASE)) { in execute()
[all …]
/illumos-gate/usr/src/tools/smatch/src/
H A Dsmatch_buf_size.c70 return sval.value; in estate_to_size()
78 sval.value = size; in size_to_estate()
88 sval.value = size; in size_to_rl()
297 return sval.value; in get_real_array_size_from_type()
418 if (sval.value != 0 && sval.value != 1) in last_member_is_resizable()
467 {.value = value}, in alloc_int_rl()
770 size.value++; in match_strndup()
789 if (sval.value < 0 || sval.value > 10) in match_alloc_pages()
793 sval.value = 1 << sval.value; in match_alloc_pages()
854 (sval.value == -1 || sval.value == 0))) in struct_member_callback()
[all …]
/illumos-gate/usr/src/cmd/bhyve/
H A Dvirtio.c569 uint32_t value; in vi_pci_read() local
644 value = vs->vs_curq; in vi_pci_read()
647 value = 0; /* XXX */ in vi_pci_read()
653 value = vs->vs_isr; in vi_pci_read()
655 if (value) in vi_pci_read()
670 return (value); in vi_pci_read()
681 uint64_t value) in vi_pci_write() argument
770 vs->vs_curq = value; in vi_pci_write()
775 name, (int)value); in vi_pci_write()
786 name, (int)value); in vi_pci_write()
[all …]
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dconfig.c64 scf_value_t *value = NULL; in load_config() local
79 value = scf_value_create(handle); in load_config()
84 prop == NULL || value == NULL || value_iter == NULL) { in load_config()
126 if (scf_property_get_value(prop, value) == -1) { in load_config()
133 if (scf_value_get_count(value, &esi_threshold) == -1) { in load_config()
156 if (scf_property_get_value(prop, value) == -1) { in load_config()
163 if (scf_value_get_boolean(value, &mgmt_scn) == -1) { in load_config()
180 if (scf_property_get_value(prop, value) == -1) { in load_config()
220 while (scf_iter_next_value(value_iter, value) != 0) { in load_config()
261 if (value != NULL) { in load_config()
[all …]
/illumos-gate/usr/src/uts/common/io/chxge/
H A Dsge.c1820 = chkp->tx_need_cpl_space.value.ui32; in sge_kstat_update()
1826 statsp->rx_cmdq0 = chkp->rx_cmdq0.value.ui32; in sge_kstat_update()
1828 statsp->rx_flq0 = chkp->rx_flq0.value.ui32; in sge_kstat_update()
1829 statsp->rx_flq1 = chkp->rx_flq1.value.ui32; in sge_kstat_update()
1856 chkp->freelistQ_empty.value.ui32 in sge_kstat_update()
1869 chkp->tx_need_cpl_space.value.ui32 in sge_kstat_update()
1878 chkp->rx_flq0.value.ui32 = statsp->rx_flq0; in sge_kstat_update()
1879 chkp->rx_flq1.value.ui32 = statsp->rx_flq1; in sge_kstat_update()
1889 chkp->rx_flbuf_fails.value.ui32 in sge_kstat_update()
1891 chkp->rx_flbuf_allocs.value.ui32 in sge_kstat_update()
[all …]

12345678910>>...150