Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 4036) sorted by relevance

12345678910>>...162

/onnv-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.lquantzero.d.out4 value ------------- Distribution ------------- count
9 value ------------- Distribution ------------- count
14 value ------------- Distribution ------------- count
19 value ------------- Distribution ------------- count
24 value ------------- Distribution ------------- count
29 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
44 value ------------- Distribution ------------- count
49 value ------------- Distribution ------------- count
[all …]
H A Dtst.negorder.d.out4 value ------------- Distribution ------------- count
10 value ------------- Distribution ------------- count
16 value ------------- Distribution ------------- count
22 value ------------- Distribution ------------- count
28 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
40 value ------------- Distribution ------------- count
46 value ------------- Distribution ------------- count
52 value ------------- Distribution ------------- count
58 value ------------- Distribution ------------- count
[all …]
H A Dtst.quantmany.d.out3 value ------------- Distribution ------------- count
10 value ------------- Distribution ------------- count
21 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
49 value ------------- Distribution ------------- count
66 value ------------- Distribution ------------- count
85 value ------------- Distribution ------------- count
106 value ------------- Distribution ------------- count
129 value ------------- Distribution ------------- count
154 value ------------- Distribution ------------- count
[all …]
H A Dtst.quantzero.d.out3 value ------------- Distribution ------------- count
9 value ------------- Distribution ------------- count
15 value ------------- Distribution ------------- count
21 value ------------- Distribution ------------- count
27 value ------------- Distribution ------------- count
33 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
45 value ------------- Distribution ------------- count
51 value ------------- Distribution ------------- count
57 value ------------- Distribution ------------- count
[all …]
/onnv-gate/usr/src/common/openssl/crypto/asn1/
H A Da_utf8.c79 unsigned long value; in UTF8_getc() local
86 value = *p++ & 0x7f; in UTF8_getc()
91 value = (*p++ & 0x1f) << 6; in UTF8_getc()
92 value |= *p++ & 0x3f; in UTF8_getc()
93 if(value < 0x80) return -4; in UTF8_getc()
99 value = (*p++ & 0xf) << 12; in UTF8_getc()
100 value |= (*p++ & 0x3f) << 6; in UTF8_getc()
101 value |= *p++ & 0x3f; in UTF8_getc()
102 if(value < 0x800) return -4; in UTF8_getc()
109 value = ((unsigned long)(*p++ & 0x7)) << 18; in UTF8_getc()
[all …]
H A Da_mbstr.c65 int (*rfunc)(unsigned long value, void *in), void *arg);
66 static int in_utf8(unsigned long value, void *arg);
67 static int out_utf8(unsigned long value, void *arg);
68 static int type_str(unsigned long value, void *arg);
69 static int cpy_asc(unsigned long value, void *arg);
70 static int cpy_bmp(unsigned long value, void *arg);
71 static int cpy_univ(unsigned long value, void *arg);
72 static int cpy_utf8(unsigned long value, void *arg);
73 static int is_printable(unsigned long value);
251 int (*rfunc)(unsigned long value, void *in), void *arg) in traverse_string() argument
[all …]
/onnv-gate/usr/src/lib/libwrap/
H A Doptions.c144 char *value; local
158 if (*(value = curr_opt + strcspn(curr_opt, whitespace_eq))) {
159 if (*value != '=') {
160 *value++ = 0;
161 value += strspn(value, whitespace);
163 if (*value == '=') {
164 *value++ = 0;
165 value += strspn(value, whitespace);
168 if (*value == 0)
169 value = 0;
[all …]
/onnv-gate/usr/src/lib/libsip/common/
H A Dsip_parse_hdrs.c102 sip_hdr_value_t *value = NULL; in sip_parse_allow_header() local
122 value = calloc(1, sizeof (sip_hdr_value_t)); in sip_parse_allow_header()
123 if (value == NULL) { in sip_parse_allow_header()
128 last_value->sip_next_value = value; in sip_parse_allow_header()
130 parsed_header->value = (sip_value_t *)value; in sip_parse_allow_header()
132 value->sip_value_start = hdr->sip_hdr_current; in sip_parse_allow_header()
133 value->sip_value_header = parsed_header; in sip_parse_allow_header()
140 len = hdr->sip_hdr_current - value->sip_value_start; in sip_parse_allow_header()
142 if (strncmp(sip_methods[i].name, value->sip_value_start, in sip_parse_allow_header()
148 value->int_val = 0; in sip_parse_allow_header()
[all …]
H A Dsip_parse_generic.c381 parsed_header->value = NULL; in sip_parse_hdr_empty()
391 sip_parse_uri_str(sip_str_t *sip_str, sip_hdr_value_t *value) in sip_parse_uri_str() argument
399 value->sip_value_parsed_uri = sip_parse_uri(sip_str, &error); in sip_parse_uri_str()
400 if (value->sip_value_parsed_uri == NULL) in sip_parse_uri_str()
403 value->sip_value_parsed_uri->sip_uri_errflags != 0) { in sip_parse_uri_str()
404 value->sip_value_state = SIP_VALUE_BAD; in sip_parse_uri_str()
500 sip_hdr_value_t *value = NULL; in sip_parse_hdr_parser1() local
521 value = calloc(1, sizeof (sip_hdr_value_t)); in sip_parse_hdr_parser1()
522 if (value == NULL) { in sip_parse_hdr_parser1()
527 last_value->sip_next_value = value; in sip_parse_hdr_parser1()
[all …]
/onnv-gate/usr/src/uts/intel/asm/
H A Dbyteorder.h47 extern __inline__ uint16_t htons(uint16_t value) in htons() argument
50 __asm__("xchgb %h0, %b0" : "+Q" (value)); in htons()
52 __asm__("xchgb %h0, %b0" : "+q" (value)); in htons()
54 return (value); in htons()
57 extern __inline__ uint16_t ntohs(uint16_t value) in ntohs() argument
60 __asm__("xchgb %h0, %b0" : "+Q" (value)); in ntohs()
62 __asm__("xchgb %h0, %b0" : "+q" (value)); in ntohs()
64 return (value); in ntohs()
67 extern __inline__ uint32_t htonl(uint32_t value) in htonl() argument
69 __asm__("bswap %0" : "+r" (value)); in htonl()
[all …]
/onnv-gate/usr/src/cmd/ntfsprogs/
H A Dsd.c79 aa_ace->sid.identifier_authority.value[0] = 0; in init_system_file_sd()
80 aa_ace->sid.identifier_authority.value[1] = 0; in init_system_file_sd()
81 aa_ace->sid.identifier_authority.value[2] = 0; in init_system_file_sd()
82 aa_ace->sid.identifier_authority.value[3] = 0; in init_system_file_sd()
83 aa_ace->sid.identifier_authority.value[4] = 0; in init_system_file_sd()
85 aa_ace->sid.identifier_authority.value[5] = 5; in init_system_file_sd()
118 aa_ace->sid.identifier_authority.value[0] = 0; in init_system_file_sd()
119 aa_ace->sid.identifier_authority.value[1] = 0; in init_system_file_sd()
120 aa_ace->sid.identifier_authority.value[2] = 0; in init_system_file_sd()
121 aa_ace->sid.identifier_authority.value[3] = 0; in init_system_file_sd()
[all …]
/onnv-gate/usr/src/uts/sun4v/io/
H A Dvgen_stats.c172 ldckp->ipackets.value.ul = (uint32_t)statsp->ipackets + in vgen_kstat_update()
174 ldckp->ipackets64.value.ull = statsp->ipackets + in vgen_kstat_update()
176 ldckp->ierrors.value.ul = statsp->ierrors; in vgen_kstat_update()
177 ldckp->opackets.value.ul = (uint32_t)statsp->opackets + in vgen_kstat_update()
179 ldckp->opackets64.value.ull = statsp->opackets + in vgen_kstat_update()
181 ldckp->oerrors.value.ul = statsp->oerrors; in vgen_kstat_update()
186 ldckp->rbytes.value.ul = (uint32_t)statsp->rbytes + in vgen_kstat_update()
188 ldckp->rbytes64.value.ull = statsp->rbytes + in vgen_kstat_update()
190 ldckp->obytes.value.ul = (uint32_t)statsp->obytes + in vgen_kstat_update()
192 ldckp->obytes64.value.ull = statsp->obytes + in vgen_kstat_update()
[all …]
/onnv-gate/usr/src/uts/common/io/e1000g/
H A De1000g_stat.c66 e1000g_ksp->Crcerrs.value.ul--; in e1000_tbi_adjust_stats()
68 e1000g_ksp->Gprc.value.ul++; in e1000_tbi_adjust_stats()
73 carry_bit = 0x80000000 & e1000g_ksp->Gorl.value.ul; in e1000_tbi_adjust_stats()
74 e1000g_ksp->Gorl.value.ul += frame_len; in e1000_tbi_adjust_stats()
83 if (carry_bit && ((e1000g_ksp->Gorl.value.ul & 0x80000000) == 0)) { in e1000_tbi_adjust_stats()
84 e1000g_ksp->Gorh.value.ul++; in e1000_tbi_adjust_stats()
96 e1000g_ksp->Bprc.value.ul++; in e1000_tbi_adjust_stats()
101 e1000g_ksp->Mprc.value.ul++; in e1000_tbi_adjust_stats()
109 if (e1000g_ksp->Roc.value.ul > 0) in e1000_tbi_adjust_stats()
110 e1000g_ksp->Roc.value.ul--; in e1000_tbi_adjust_stats()
[all …]
/onnv-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_stat.c55 ixgbe_ks->link_speed.value.ui64 = ixgbe->link_speed; in ixgbe_update_stats()
56 ixgbe_ks->reset_count.value.ui64 = ixgbe->reset_count; in ixgbe_update_stats()
57 ixgbe_ks->lroc.value.ui64 = ixgbe->lro_pkt_count; in ixgbe_update_stats()
60 ixgbe_ks->rx_frame_error.value.ui64 = 0; in ixgbe_update_stats()
61 ixgbe_ks->rx_cksum_error.value.ui64 = 0; in ixgbe_update_stats()
62 ixgbe_ks->rx_exceed_pkt.value.ui64 = 0; in ixgbe_update_stats()
64 ixgbe_ks->rx_frame_error.value.ui64 += in ixgbe_update_stats()
66 ixgbe_ks->rx_cksum_error.value.ui64 += in ixgbe_update_stats()
68 ixgbe_ks->rx_exceed_pkt.value.ui64 += in ixgbe_update_stats()
72 ixgbe_ks->tx_overload.value.ui64 = 0; in ixgbe_update_stats()
[all …]
/onnv-gate/usr/src/lib/libc/port/gen/
H A Decvt.c56 ecvt(double value, int ndigit, int *decpt, int *sign) in ecvt() argument
58 return (cvt(value, ndigit, decpt, sign, 0)); in ecvt()
62 fcvt(double value, int ndigit, int *decpt, int *sign) in fcvt() argument
64 return (cvt(value, ndigit, decpt, sign, 1)); in fcvt()
68 cvt(double value, int ndigit, int *decpt, int *sign, int f_flag) in cvt() argument
75 if (IsNANorINF(value)) { in cvt()
76 if (IsINF(value)) /* value is an INF, return "inf" */ in cvt()
84 if ((*sign = (value < 0.0)) != 0) in cvt()
85 value = -value; in cvt()
87 if (value != 0.0) { in cvt()
[all …]
/onnv-gate/usr/src/lib/libcurses/screen/
H A Dinfotocap.c151 *infotocap(char *value, int *err) in infotocap() argument
157 if (strchr(value, '%') == NULLPTR) in infotocap()
158 return (value); in infotocap()
162 savevalue = value; in infotocap()
163 while (*value) in infotocap()
164 if (*value != '%') in infotocap()
165 *newvalue++ = *value++; in infotocap()
166 else if (lookat(value, "%p*%d", args)) { in infotocap()
171 value += 5; in infotocap()
172 } else if (lookat(value, "%p*%02d", args)) { in infotocap()
[all …]
/onnv-gate/usr/src/lib/libpkg/common/
H A Dckparam.c42 static int proc_name(char *param, char *value);
43 static int proc_arch(char *param, char *value);
44 static int proc_version(char *param, char *value);
45 static int proc_category(char *param, char *value);
46 static int bad_first_char(char *param, char *value);
55 char *value = strdup(val); in ckparam() local
59 ret_val = proc_name(param, value); in ckparam()
62 ret_val = proc_arch(param, value); in ckparam()
65 ret_val = proc_version(param, value); in ckparam()
68 ret_val = proc_category(param, value); in ckparam()
[all …]
/onnv-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_scfutil.c187 scf_value_t *value = NULL; in smb_smf_set_string_property() local
197 value = scf_value_create(handle->scf_handle); in smb_smf_set_string_property()
199 if (value != NULL && entry != NULL) { in smb_smf_set_string_property()
204 if (scf_value_set_astring(value, valstr) == 0) { in smb_smf_set_string_property()
205 if (scf_entry_add_value(entry, value) != 0) { in smb_smf_set_string_property()
207 scf_value_destroy(value); in smb_smf_set_string_property()
210 value = NULL; in smb_smf_set_string_property()
235 if (value != NULL) in smb_smf_set_string_property()
236 scf_value_destroy(value); in smb_smf_set_string_property()
251 scf_value_t *value; in smb_smf_get_string_property() local
[all …]
/onnv-gate/usr/src/lib/libshare/smbfs/
H A Dlibshare_smbfs.c193 range_check_validator(int index, char *section, char *value) in range_check_validator() argument
197 if (value == NULL) in range_check_validator()
199 if (strlen(value) == 0) in range_check_validator()
201 if (!is_a_number(value)) { in range_check_validator()
205 val = strtoul(value, NULL, 0); in range_check_validator()
218 string_length_check_validator(int index, char *section, char *value) in string_length_check_validator() argument
222 if (value == NULL) in string_length_check_validator()
224 if (strlen(value) == 0) in string_length_check_validator()
226 if (strlen(value) > smbclnt_proto_options[index].maxval) in string_length_check_validator()
236 yes_no_validator(int index, char *section, char *value) in yes_no_validator() argument
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dgoto_xs.t38 $value = Fcntl::constant($VALID);
39 print((!defined $value)
49 print(($ret == $value) ? "ok 2\n" : "not ok 2\n# ($ret != $value)\n");
56 print(($ret == $value) ? "ok 3\n" : "not ok 3\n# ($ret != $value)\n");
60 print(($ret == $value) ? "ok 4\n" : "not ok 4\n# ($ret != $value)\n");
62 print(($ret == $value) ? "ok 5\n" : "not ok 5\n# ($ret != $value)\n");
71 print(($ret == $value) ? "ok 6\n" : "not ok 6\n# ($ret != $value)\n");
78 print(($ret == $value) ? "ok 7\n" : "not ok 7\n# ($ret != $value)\n");
86 print(($ret == $value) ? "ok 8\n" : "not ok 8\n# ($ret != $value)\n");
92 print(($ret == $value) ? "ok 9\n" : "not ok 9\n# ($ret != $value)\n");
[all …]
/onnv-gate/usr/src/uts/common/io/nxge/npi/
H A Dnpi_txc.c145 uint64_t value, offset; in npi_txc_dump_tdc_fzc_regs() local
164 NXGE_REG_RD64(handle, offset, &value); in npi_txc_dump_tdc_fzc_regs()
167 offset, txc_fzc_dmc_name[i], value)); in npi_txc_dump_tdc_fzc_regs()
190 uint64_t value; in npi_txc_dump_fzc_regs() local
198 NXGE_REG_RD64(handle, txc_fzc_offset[i], &value); in npi_txc_dump_fzc_regs()
201 txc_fzc_offset[i], txc_fzc_name[i], value)); in npi_txc_dump_fzc_regs()
225 uint64_t value, offset; in npi_txc_dump_port_fzc_regs() local
236 NXGE_REG_RD64(handle, offset, &value); in npi_txc_dump_port_fzc_regs()
239 offset, txc_fzc_port_name[i], value)); in npi_txc_dump_port_fzc_regs()
397 NXGE_REG_RD64(handle, TXC_CONTROL_REG, &txc_control_p->value); in npi_txc_control()
[all …]
/onnv-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_stats.c514 template.rtoAlgorithm.value.ui32 = 4; in tcp_kstat_init()
515 template.maxConn.value.i32 = -1; in tcp_kstat_init()
562 tcpkp->currEstab.value.ui32 = 0; in tcp_kstat_update()
563 tcpkp->rtoMin.value.ui32 = tcps->tcps_rexmit_interval_min; in tcp_kstat_update()
564 tcpkp->rtoMax.value.ui32 = tcps->tcps_rexmit_interval_max; in tcp_kstat_update()
577 tcpkp->currEstab.value.ui32++; in tcp_kstat_update()
589 tcpkp->activeOpens.value.ui32 = tcp_mib.tcpActiveOpens; in tcp_kstat_update()
590 tcpkp->passiveOpens.value.ui32 = tcp_mib.tcpPassiveOpens; in tcp_kstat_update()
591 tcpkp->attemptFails.value.ui32 = tcp_mib.tcpAttemptFails; in tcp_kstat_update()
592 tcpkp->estabResets.value.ui32 = tcp_mib.tcpEstabResets; in tcp_kstat_update()
[all …]
/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dmdi.c112 struct mdi_pathinfo value; in mdipi() local
119 if (mdb_vread(&value, sizeof (struct mdi_pathinfo), addr) != in mdipi()
126 dump_string((uintptr_t)value.pi_addr, "PWWN,LUN (pi_addr)"); in mdipi()
130 value.pi_client); in mdipi()
131 mdb_printf("pi_phci: %27l#r::print struct mdi_phci\n", value.pi_phci); in mdipi()
132 mdb_printf("pi_pprivate: %23l#r\n", value.pi_pprivate); in mdipi()
134 value.pi_client_link); in mdipi()
136 value.pi_phci_link); in mdipi()
137 mdb_printf("pi_prop: %27l#r::print struct nv_list\n", value.pi_prop); in mdipi()
139 mdiprops((uintptr_t)value.pi_prop, flags, 0, NULL); in mdipi()
[all …]
/onnv-gate/usr/src/uts/common/io/nxge/
H A Dnxge_kstats.c547 statsp->opackets = tdc_kstatsp->opackets.value.ull; in nxge_tdc_stat_update()
548 statsp->obytes = tdc_kstatsp->obytes.value.ull; in nxge_tdc_stat_update()
549 statsp->oerrors = tdc_kstatsp->oerrors.value.ull; in nxge_tdc_stat_update()
550 statsp->mbox_err = tdc_kstatsp->mbox_err.value.ul; in nxge_tdc_stat_update()
551 statsp->pkt_size_err = tdc_kstatsp->pkt_size_err.value.ul; in nxge_tdc_stat_update()
552 statsp->tx_ring_oflow = tdc_kstatsp->tx_ring_oflow.value.ul; in nxge_tdc_stat_update()
554 tdc_kstatsp->pref_buf_ecc_err.value.ul; in nxge_tdc_stat_update()
555 statsp->nack_pref = tdc_kstatsp->nack_pref.value.ul; in nxge_tdc_stat_update()
556 statsp->nack_pkt_rd = tdc_kstatsp->nack_pkt_rd.value.ul; in nxge_tdc_stat_update()
557 statsp->conf_part_err = tdc_kstatsp->conf_part_err.value.ul; in nxge_tdc_stat_update()
[all …]
/onnv-gate/usr/src/uts/common/io/fibre-channel/fca/oce/
H A Doce_stat.c82 stats->rx_bytes_lo.value.ul = port_stats->rx_bytes_lsd; in oce_update_stats()
83 stats->rx_bytes_hi.value.ul = port_stats->rx_bytes_msd; in oce_update_stats()
85 stats->rx_frames.value.ul = port_stats->rx_total_frames; in oce_update_stats()
86 stats->rx_errors.value.ul = port_stats->rx_crc_errors + in oce_update_stats()
95 stats->rx_drops.value.ul = port_stats->rx_dropped_too_small + in oce_update_stats()
101 stats->tx_bytes_lo.value.ul = port_stats->tx_bytes_lsd; in oce_update_stats()
102 stats->tx_bytes_hi.value.ul = port_stats->tx_bytes_msd; in oce_update_stats()
104 stats->tx_frames.value.ul = port_stats->tx_unicast_frames + in oce_update_stats()
109 stats->tx_errors.value.ul = dev->tx_errors; in oce_update_stats()
111 stats->rx_unicast_frames.value.ul = in oce_update_stats()
[all …]

12345678910>>...162