Home
last modified time | relevance | path

Searched refs:offset (Results 1 – 25 of 1690) sorted by relevance

12345678910>>...68

/titanic_52/usr/src/lib/gss_mechs/mech_krb5/et/
H A Derror_message.c34 int offset; local
41 offset = (int) l_offset;
45 cp = strerror(offset);
51 if (offset < sys_nerr)
52 return(sys_errlist[offset]);
62 return(ggss_error_table(offset));
64 return(kadm_error_table(offset));
66 return(kdb5_error_table(offset));
68 return(kdc5_error_table(offset));
70 return(kpws_error_table(offset));
[all...]
/titanic_52/usr/src/uts/common/io/fibre-channel/fca/fcoei/
H A Dfcoei_lv.c842 int offset; in fcoei_initiate_ct_req() local
877 offset = 0; in fcoei_initiate_ct_req()
878 FCOE_V2B_1(ct->ct_rev, FPLD + offset); in fcoei_initiate_ct_req()
880 offset = 1; in fcoei_initiate_ct_req()
881 FCOE_V2B_3(ct->ct_inid, FPLD + offset); in fcoei_initiate_ct_req()
883 offset = 4; in fcoei_initiate_ct_req()
884 FCOE_V2B_1(ct->ct_fcstype, FPLD + offset); in fcoei_initiate_ct_req()
886 offset = 5; in fcoei_initiate_ct_req()
887 FCOE_V2B_1(ct->ct_fcssubtype, FPLD + offset); in fcoei_initiate_ct_req()
889 offset in fcoei_initiate_ct_req()
1043 int offset = 0; fcoei_initiate_fcp_cmd() local
1345 int offset; fcoei_fill_els_logi_cmd() local
1431 int offset = 0; fcoei_fill_els_prli_cmd() local
1502 int offset; fcoei_fill_els_scr_cmd() local
1529 int offset; fcoei_fill_els_adisc_cmd() local
1586 int offset; fcoei_fill_els_logo_cmd() local
1602 int offset; fcoei_fill_els_rls_cmd() local
1615 int offset; fcoei_fill_els_rnid_cmd() local
1641 int offset; fcoei_fill_els_acc_resp() local
1668 int offset; fcoei_fill_els_rjt_resp() local
1701 int offset; fcoei_fill_els_adisc_resp() local
[all...]
H A Dfcoei_eth.c217 int offset; in fcoei_process_unsol_xfer_rdy() local
233 * offset is based on the exchange not the sequence. in fcoei_process_unsol_xfer_rdy()
237 offset = FCOE_B2V_4(frm->frm_payload); in fcoei_process_unsol_xfer_rdy()
261 bcopy(offset + (uint8_t *)xch->xch_fpkt->pkt_data, in fcoei_process_unsol_xfer_rdy()
272 FFM_PARAM(offset, nfrm); in fcoei_process_unsol_xfer_rdy()
281 * Update offset and left_size in fcoei_process_unsol_xfer_rdy()
283 offset += data_size; in fcoei_process_unsol_xfer_rdy()
303 bcopy(offset + (uint8_t *)xch->xch_fpkt->pkt_data, in fcoei_process_unsol_xfer_rdy()
322 FFM_PARAM(offset, nfrm); in fcoei_process_unsol_xfer_rdy()
356 uint32_t offset; in fcoei_process_unsol_els_req() local
852 int offset; fcoei_fill_els_fpkt_resp() local
1082 int offset; fcoei_fill_fcp_resp() local
[all...]
/titanic_52/usr/src/cmd/auditstat/
H A Dauditstat.c124 int offset[12]; /* used to line the header up correctly */ local
129 s->as_generated, &(offset[0]),
130 s->as_nonattrib, &(offset[1]),
131 s->as_kernel, &(offset[2]),
132 s->as_audit, &(offset[3]),
133 s->as_auditctl, &(offset[4]),
134 s->as_enqueue, &(offset[5]),
135 s->as_written, &(offset[6]),
136 s->as_wblocked, &(offset[7]),
137 s->as_rblocked, &(offset[
[all...]
/titanic_52/usr/src/cmd/mdb/sun4u/modules/serengeti/sgsbbc/
H A Dsgsbbc.c55 uint_t offset = 0; /* offset into soft state structure */ in display_sbbc_softstate_t() local
73 offset = (int)(uintptr_t)&softp.dip - (int)(uintptr_t)&softp; in display_sbbc_softstate_t()
74 mdb_printf("%p: dip: %31ll#r\n", addr + offset, softp.dip); in display_sbbc_softstate_t()
76 offset = (int)(uintptr_t)&softp.sram - (int)(uintptr_t)&softp; in display_sbbc_softstate_t()
77 mdb_printf("%p: sram: %30ll#r\n", addr + offset, softp.sram); in display_sbbc_softstate_t()
79 offset = (int)(uintptr_t)&softp.sbbc_regs - (int)(uintptr_t)&softp; in display_sbbc_softstate_t()
80 mdb_printf("%p: sbbc_regs: %25ll#r\n", addr + offset, softp.sbbc_regs); in display_sbbc_softstate_t()
82 offset = (int)(uintptr_t)&softp.port_int_regs - (int)(uintptr_t)&softp; in display_sbbc_softstate_t()
83 mdb_printf("%p: port_int_regs: %21ll#r\n", addr + offset, in display_sbbc_softstate_t()
[all...]
/titanic_52/usr/src/uts/common/sys/nxge/
H A Dnxge_common_impl.h187 #define NXGE_PIO_READ8(handle, devaddr, offset) \ argument
188 (ddi_get8(handle, (uint8_t *)((caddr_t)devaddr + offset)))
190 #define NXGE_PIO_READ16(handle, devaddr, offset) \ argument
191 (ddi_get16(handle, (uint16_t *)((caddr_t)devaddr + offset)))
193 #define NXGE_PIO_READ32(handle, devaddr, offset) \ argument
194 (ddi_get32(handle, (uint32_t *)((caddr_t)devaddr + offset)))
196 #define NXGE_PIO_READ64(handle, devaddr, offset) \ argument
197 (ddi_get64(handle, (uint64_t *)((caddr_t)devaddr + offset)))
199 #define NXGE_PIO_WRITE8(handle, devaddr, offset, data) \ argument
200 (ddi_put8(handle, (uint8_t *)((caddr_t)devaddr + offset), dat
202 NXGE_PIO_WRITE16(handle,devaddr,offset,data) global() argument
205 NXGE_PIO_WRITE32(handle,devaddr,offset,data) global() argument
208 NXGE_PIO_WRITE64(handle,devaddr,offset,data) global() argument
211 NXGE_NPI_PIO_READ8(npi_handle,offset) global() argument
215 NXGE_NPI_PIO_READ16(npi_handle,offset) global() argument
219 NXGE_NPI_PIO_READ32(npi_handle,offset) global() argument
224 NXGE_NPI_PIO_READ64(npi_handle,offset) global() argument
228 NXGE_NPI_PIO_READ64(npi_handle,offset) global() argument
233 NXGE_NPI_PIO_WRITE8(npi_handle,offset,data) global() argument
237 NXGE_NPI_PIO_WRITE16(npi_handle,offset,data) global() argument
241 NXGE_NPI_PIO_WRITE32(npi_handle,offset,data) global() argument
246 NXGE_NPI_PIO_WRITE64(npi_handle,offset,data) global() argument
250 NXGE_NPI_PIO_WRITE64(npi_handle,offset,data) global() argument
314 NXGE_REG_RD64(handle,offset,val_p) global() argument
324 NXGE_REG_RD64(handle,offset,val_p) global() argument
329 NXGE_REG_RD64(handle,offset,val_p) global() argument
335 NXGE_REG_WR64(handle,offset,val) global() argument
345 NXGE_REG_WR64(handle,offset,val) global() argument
350 NXGE_REG_WR64(handle,offset,val) global() argument
[all...]
/titanic_52/usr/src/uts/common/sys/
H A Dvuid_store.h65 ushort_t offset; /* Offset of value from seg addr */ member
95 #define vuid_set_boolean_bit(seg, offset) \ argument
96 (seg)->booleans[(offset)/BITSPERBYTE] |= \
97 (1<<((BITSPERBYTE-1)-((offset)%BITSPERBYTE)))
98 #define vuid_clear_boolean_bit(seg, offset) \ argument
99 (seg)->booleans[(offset)/BITSPERBYTE] &= \
100 (~(1<<((BITSPERBYTE-1)-((offset)%BITSPERBYTE))))
101 #define vuid_get_boolean_bit(seg, offset) \ argument
102 ((seg)->booleans[(offset)/BITSPERBYTE] & \
103 (1<<((BITSPERBYTE-1)-((offset)
105 vuid_set_int_bit(seg,offset) global() argument
108 vuid_clear_int_bit(seg,offset) global() argument
111 vuid_get_int_bit(seg,offset) global() argument
[all...]
/titanic_52/usr/src/uts/common/io/hxge/
H A Dhpi_pfc.c173 uint64_t offset; in hpi_pfc_set_config() local
175 offset = PFC_CONFIG; in hpi_pfc_set_config()
176 REG_PIO_WRITE64(handle, offset, config.value); in hpi_pfc_set_config()
184 uint64_t offset; in hpi_pfc_get_config() local
186 offset = PFC_CONFIG; in hpi_pfc_get_config()
187 REG_PIO_READ64(handle, offset, &configp->value); in hpi_pfc_get_config()
326 int offset; in hpi_pfc_cfg_vlan_table_clear() local
333 offset = PFC_VLAN_TABLE + i * step; in hpi_pfc_cfg_vlan_table_clear()
334 REG_PIO_WRITE64(handle, offset, table_entry.value); in hpi_pfc_cfg_vlan_table_clear()
343 uint64_t offset; in hpi_pfc_cfg_vlan_table_entry_clear() local
366 uint64_t offset; hpi_pfc_cfg_vlan_table_entry_set() local
414 uint64_t offset; hpi_pfc_get_vlan_parity_log() local
425 uint64_t offset; hpi_pfc_set_mac_address() local
450 uint64_t offset, moffset; hpi_pfc_clear_mac_address() local
471 uint64_t offset; hpi_pfc_clear_multicast_hash_table() local
486 uint64_t offset; hpi_pfc_set_multicast_hash_table() local
502 uint64_t offset; hpi_pfc_set_l2_class_slot() local
528 uint64_t offset; hpi_pfc_set_l3_class_config() local
556 uint64_t offset; hpi_pfc_get_l3_class_config() local
580 uint64_t offset; hpi_pfc_set_tcam_control() local
655 uint64_t offset; hpi_pfc_get_tcam_parity_log() local
666 uint64_t offset; hpi_pfc_get_tcam_auto_init() local
677 uint64_t offset; hpi_pfc_set_tcp_control_discard() local
698 uint64_t offset; hpi_pfc_set_tcp_control_fin() local
718 uint64_t offset; hpi_pfc_set_tcp_control_syn() local
738 uint64_t offset; hpi_pfc_set_tcp_control_rst() local
758 uint64_t offset; hpi_pfc_set_tcp_control_psh() local
778 uint64_t offset; hpi_pfc_set_tcp_control_ack() local
798 uint64_t offset; hpi_pfc_set_hash_seed_value() local
813 uint64_t offset; hpi_pfc_get_interrupt_status() local
824 uint64_t offset; hpi_pfc_clear_interrupt_status() local
837 uint64_t offset; hpi_pfc_set_interrupt_mask() local
865 uint64_t offset; hpi_pfc_get_drop_log() local
878 uint64_t offset; hpi_pfc_set_drop_log_mask() local
903 uint64_t offset; hpi_pfc_get_bad_csum_counter() local
914 uint64_t offset; hpi_pfc_get_drop_counter() local
[all...]
H A Dhxge_common_impl.h142 #define HXGE_HPI_PIO_READ32(hpi_handle, offset) \ argument
144 (uint32_t *)(HPI_REGP(hpi_handle) + offset)))
147 #define HXGE_HPI_PIO_READ64(hpi_handle, offset) \ argument
149 (uint64_t *)(HPI_REGP(hpi_handle) + (uint32_t)offset)))
151 #define HXGE_HPI_PIO_READ64(hpi_handle, offset) \ argument
153 (uint64_t *)(HPI_REGP(hpi_handle) + offset)))
158 #define HXGE_HPI_PIO_WRITE32(hpi_handle, offset, data) { \ argument
162 (uint32_t)offset), data); \
165 #define HXGE_HPI_PIO_WRITE64(hpi_handle, offset, data) { \ argument
169 (uint32_t)offset), dat
184 HXGE_REG_RD64(handle,offset,val_p) global() argument
189 HXGE_REG_RD32(handle,offset,val_p) global() argument
197 HXGE_HPI_PIO_WRITE32(hpi_handle,offset,data) global() argument
200 HXGE_HPI_PIO_WRITE64(hpi_handle,offset,data) global() argument
210 HXGE_REG_RD64(handle,offset,val_p) global() argument
213 HXGE_REG_RD32(handle,offset,val_p) global() argument
219 HXGE_REG_WR64(handle,offset,val) global() argument
222 HXGE_REG_WR32(handle,offset,val) global() argument
[all...]
/titanic_52/usr/src/lib/libsocket/inet/
H A Dinet6_opt.c71 inet6_opt_append(void *extbuf, socklen_t extlen, int offset, uint8_t type, in inet6_opt_append() argument
94 remainder = (offset + 2 + len) % align; in inet6_opt_append()
101 endlen = offset + padbytes + 2 + len; in inet6_opt_append()
110 p = (uint8_t *)extbuf + offset; in inet6_opt_append()
143 inet6_opt_finish(void *extbuf, socklen_t extlen, int offset) in inet6_opt_finish() argument
158 padbytes = 8 - (offset % 8); in inet6_opt_finish()
162 if ((offset + padbytes > extlen) || !extbuf) { in inet6_opt_finish()
166 return (offset + padbytes); in inet6_opt_finish()
170 p = (uint8_t *)extbuf + offset; in inet6_opt_finish()
189 return (offset in inet6_opt_finish()
197 inet6_opt_set_val(void * databuf,int offset,void * val,socklen_t vallen) inet6_opt_set_val() argument
212 inet6_opt_next(void * extbuf,socklen_t extlen,int offset,uint8_t * typep,socklen_t * lenp,void ** databufp) inet6_opt_next() argument
273 inet6_opt_find(void * extbuf,socklen_t extlen,int offset,uint8_t type,socklen_t * lenp,void ** databufp) inet6_opt_find() argument
296 inet6_opt_get_val(void * databuf,int offset,void * val,socklen_t vallen) inet6_opt_get_val() argument
[all...]
/titanic_52/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dasn1.c841 CK_ULONG buf_len, offset, len, field_len; in ber_decode_PrivateKeyInfo() local
851 offset = 0; in ber_decode_PrivateKeyInfo()
852 rc = ber_decode_INTEGER(buf + offset, &ver, &len, &field_len); in ber_decode_PrivateKeyInfo()
856 offset += field_len; in ber_decode_PrivateKeyInfo()
858 rc = ber_decode_SEQUENCE(buf + offset, &alg, &len, &field_len); in ber_decode_PrivateKeyInfo()
897 CK_ULONG len, offset; in ber_encode_RSAPrivateKey() local
901 offset = 0; in ber_encode_RSAPrivateKey()
906 offset += len; in ber_encode_RSAPrivateKey()
909 offset += len; in ber_encode_RSAPrivateKey()
912 offset in ber_encode_RSAPrivateKey()
1077 CK_ULONG offset, buf_len, field_len, len; ber_decode_RSAPrivateKey() local
[all...]
/titanic_52/usr/src/common/crypto/modes/
H A Dmodes.c38 * and by setting current_offset to an offset within the current iovec or mp.
43 offset_t offset; in crypto_init_ptrs() local
54 offset = out->cd_offset; in crypto_init_ptrs()
56 offset >= uiop->uio_iov[vec_idx].iov_len; in crypto_init_ptrs()
57 offset -= uiop->uio_iov[vec_idx++].iov_len) in crypto_init_ptrs()
60 *current_offset = offset; in crypto_init_ptrs()
68 offset = out->cd_offset; in crypto_init_ptrs()
69 for (mp = out->cd_mp; mp != NULL && offset >= MBLKL(mp); in crypto_init_ptrs()
70 offset -= MBLKL(mp), mp = mp->b_cont) in crypto_init_ptrs()
73 *current_offset = offset; in crypto_init_ptrs()
91 offset_t offset; crypto_get_ptrs() local
112 offset_t offset; crypto_get_ptrs() local
[all...]
/titanic_52/usr/src/uts/common/io/audio/drv/audiocmi/
H A Daudiocmi.h288 uint32_t offset; /* in bytes */ member
324 #define GET8(dev, offset) \ argument
325 ddi_get8(dev->acch, (uint8_t *)(dev->regs + (offset)))
326 #define GET16(dev, offset) \ argument
327 ddi_get16(dev->acch, (uint16_t *)(void *)(dev->regs + (offset)))
328 #define GET32(dev, offset) \ argument
329 ddi_get32(dev->acch, (uint32_t *)(void *)(dev->regs + (offset)))
330 #define PUT8(dev, offset, v) \ argument
331 ddi_put8(dev->acch, (uint8_t *)(dev->regs + (offset)), v)
332 #define PUT16(dev, offset, argument
334 PUT32(dev,offset,v) global() argument
337 CLR8(dev,offset,v) global() argument
338 SET8(dev,offset,v) global() argument
339 CLR16(dev,offset,v) global() argument
340 SET16(dev,offset,v) global() argument
341 CLR32(dev,offset,v) global() argument
342 SET32(dev,offset,v) global() argument
[all...]
/titanic_52/usr/src/lib/smbsrv/libmlsvc/common/
H A Dsrvsvc_sd.c37 /* Size of offset members in mslm_security_descriptor structure */
267 int offset, len, i; in srvsvc_sd_set_relative() local
283 offset = sizeof (mslm_security_descriptor_t) - SRVSVC_SD_OFFSET_SZ; in srvsvc_sd_set_relative()
288 msd->offset_owner = offset; in srvsvc_sd_set_relative()
294 bcopy(sd->sd_owner, &sdbuf[offset], len); in srvsvc_sd_set_relative()
295 offset += len; in srvsvc_sd_set_relative()
299 msd->offset_group = offset; in srvsvc_sd_set_relative()
305 bcopy(sd->sd_group, &sdbuf[offset], len); in srvsvc_sd_set_relative()
306 offset += len; in srvsvc_sd_set_relative()
310 msd->offset_sacl = offset; in srvsvc_sd_set_relative()
396 srvsvc_acl_set_absolute(uint8_t * sdbuf,int * offset) srvsvc_acl_set_absolute() argument
428 int offset, i, sid_size; srvsvc_sd_set_absolute() local
[all...]
/titanic_52/usr/src/contrib/ast/src/lib/libast/disc/
H A Dsfdcdos.c83 static struct map *getmapping(Dosdisc_t *dp, Sfoff_t offset, register int whence) in getmapping() argument
85 static struct map *getmapping(dp, offset, whence) in getmapping()
87 Sfoff_t offset;
93 if(offset <= dp->begin)
95 dummy.logical = dummy.physical = offset;
104 while((++mp)->logical && (whence==SEEK_CUR?mp->physical:mp->logical) <= offset);
224 * returns the current offset
225 * <offset> must be in the current buffer
226 * if <whence> is SEEK_CUR, physical offset converted to logical offset
230 cur_offset(Dosdisc_t * dp,Sfoff_t offset,Sfio_t * iop,register int whence) cur_offset() argument
276 dos_seek(Sfio_t * iop,Sfoff_t offset,register int whence,Sfdisc_t * disc) dos_seek() argument
[all...]
/titanic_52/usr/src/lib/libdwarf/common/
H A Ddwarf_loc.c81 Dwarf_Unsigned offset = 0; in _dwarf_get_locdesc() local
108 offset = 0; in _dwarf_get_locdesc()
110 while (offset < loc_len) { in _dwarf_get_locdesc()
118 offset++; in _dwarf_get_locdesc()
127 curr_loc->lc_offset = offset; in _dwarf_get_locdesc()
168 offset = offset + leb128_length; in _dwarf_get_locdesc()
210 offset += address_size; in _dwarf_get_locdesc()
216 offset = offset in _dwarf_get_locdesc()
591 Dwarf_Off offset = loclist_offset; _dwarf_get_loclist_count() local
1036 dwarf_get_loclist_entry(Dwarf_Debug dbg,Dwarf_Unsigned offset,Dwarf_Addr * hipc_offset,Dwarf_Addr * lopc_offset,Dwarf_Ptr * data,Dwarf_Unsigned * entry_len,Dwarf_Unsigned * next_entry,Dwarf_Error * error) dwarf_get_loclist_entry() argument
[all...]
/titanic_52/usr/src/uts/common/io/nxge/npi/
H A Dnpi_fflp.c29 /* macros to compute calss configuration register offset */
181 uint64_t offset; in npi_fflp_vlan_tbl_dump() local
193 offset = FFLP_VLAN_OFFSET(vlan_id, FFLP_ENET_VLAN_TBL_REG); in npi_fflp_vlan_tbl_dump()
194 REG_PIO_READ64(handle, offset, &value); in npi_fflp_vlan_tbl_dump()
196 "%x\t %llx\t %llx\n", vlan_id, offset, value)); in npi_fflp_vlan_tbl_dump()
971 uint64_t offset; in npi_fflp_cfg_fcram_partition() local
982 offset = FFLP_PART_OFFSET(partid, FFLP_FLW_PRT_SEL_REG); in npi_fflp_cfg_fcram_partition()
987 REG_PIO_WRITE64(handle, offset, sel.value); in npi_fflp_cfg_fcram_partition()
1011 uint64_t offset; in npi_fflp_cfg_fcram_partition_enable() local
1022 offset in npi_fflp_cfg_fcram_partition_enable()
1049 uint64_t offset; npi_fflp_cfg_fcram_partition_disable() local
1076 uint64_t offset; npi_fflp_cfg_cam_errorcheck_disable() local
1097 uint64_t offset; npi_fflp_cfg_cam_errorcheck_enable() local
1119 uint64_t offset; npi_fflp_cfg_llcsnap_enable() local
1142 uint64_t offset; npi_fflp_cfg_llcsnap_disable() local
1180 uint64_t offset; npi_fflp_cfg_fcram_refresh_time() local
1266 uint64_t offset; npi_fflp_fcram_get_pio_err_log() local
1314 uint64_t offset; npi_fflp_fcram_clr_pio_err_log() local
1360 uint64_t offset; npi_fflp_tcam_get_err_log() local
1413 uint64_t offset; npi_fflp_tcam_clr_err_log() local
1518 uint64_t offset; npi_fflp_cfg_enet_vlan_table_assoc() local
1634 uint64_t offset; npi_fflp_cfg_enet_vlan_table_set_pri() local
1715 uint64_t offset; npi_fflp_cfg_vlan_table_clear() local
1755 uint64_t offset; npi_fflp_vlan_tbl_get_err_log() local
1799 uint64_t offset; npi_fflp_vlan_tbl_clr_err_log() local
1829 uint64_t offset; npi_fflp_cfg_enet_usr_cls_set() local
1872 uint64_t offset; npi_fflp_cfg_enet_usr_cls_enable() local
1907 uint64_t offset; npi_fflp_cfg_enet_usr_cls_disable() local
1950 uint64_t offset; npi_fflp_cfg_ip_usr_cls_set() local
1997 uint64_t offset, val; npi_fflp_cfg_ip_usr_cls_set_iptun() local
2051 uint64_t offset; npi_fflp_cfg_ip_usr_cls_get_iptun() local
2094 uint64_t offset; npi_fflp_cfg_ip_usr_cls_enable() local
2130 uint64_t offset; npi_fflp_cfg_ip_usr_cls_disable() local
2174 uint64_t offset; npi_fflp_cfg_ip_cls_tcam_key() local
2249 uint64_t offset; npi_fflp_cfg_ip_cls_flow_key() local
2311 uint64_t offset; npi_fflp_cfg_ip_cls_flow_key_get() local
2421 uint64_t offset; npi_fflp_cfg_ip_cls_flow_key_rfnl() local
2494 uint64_t offset; npi_fflp_cfg_sym_ip_cls_flow_key() local
2531 uint64_t offset; npi_fflp_cfg_ip_cls_flow_key_get_rfnl() local
2626 uint64_t offset; npi_fflp_cfg_ip_cls_tcam_key_get() local
2683 uint64_t offset; npi_fflp_cfg_fcram_access() local
2720 uint64_t offset; npi_fflp_cfg_tcam_access() local
2762 uint64_t offset; npi_fflp_cfg_hash_h1poly() local
2790 uint64_t offset; npi_fflp_cfg_hash_h2poly() local
2824 uint64_t offset; npi_fflp_cfg_fcram_reset() local
2850 uint64_t offset; npi_fflp_cfg_init_done() local
2866 uint64_t offset; npi_fflp_cfg_init_start() local
2886 uint64_t offset; npi_fflp_cfg_tcam_enable() local
2906 uint64_t offset; npi_fflp_cfg_tcam_disable() local
3015 uint64_t offset; npi_fflp_fcram_error_get() local
3028 uint64_t offset; npi_fflp_fcram_error_clear() local
[all...]
/titanic_52/usr/src/uts/common/io/igb/
H A Digb_debug.c51 off_t offset; in pci_dump() local
149 offset = cap_ptr; in pci_dump()
153 pci_config_get8(handle, offset)); in pci_dump()
155 next_ptr = pci_config_get8(handle, offset + 1); in pci_dump()
161 pci_config_get16(handle, offset + PCI_PMCAP)); in pci_dump()
164 pci_config_get16(handle, offset + PCI_PMCSR)); in pci_dump()
167 pci_config_get8(handle, offset + PCI_PMCSR_BSE)); in pci_dump()
170 pci_config_get8(handle, offset + PCI_PMDATA)); in pci_dump()
173 offset = next_ptr; in pci_dump()
177 pci_config_get8(handle, offset)); in pci_dump()
[all...]
/titanic_52/usr/src/uts/common/io/e1000api/
H A De1000_phy.h39 s32 e1000_null_read_reg(struct e1000_hw *hw, u32 offset, u16 *data);
42 s32 e1000_null_write_reg(struct e1000_hw *hw, u32 offset, u16 data);
73 s32 e1000_read_kmrn_reg_generic(struct e1000_hw *hw, u32 offset, u16 *data);
74 s32 e1000_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data);
76 s32 e1000_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data);
77 s32 e1000_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data);
78 s32 e1000_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data);
81 s32 e1000_write_kmrn_reg_generic(struct e1000_hw *hw, u32 offset, u16 data);
82 s32 e1000_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data);
83 s32 e1000_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u1
164 BM_PHY_REG_PAGE(offset) global() argument
166 BM_PHY_REG_NUM(offset) global() argument
[all...]
/titanic_52/usr/src/uts/common/io/e1000g/
H A De1000g_debug.c57 uint32_t offset; member
168 int i, ret, sign, size, lines, offset = 0; in eeprom_dump() local
204 if (ret = e1000_read_nvm(hw, offset, WPL, eeprom)) { in eeprom_dump()
212 offset, in eeprom_dump()
215 offset += WPL; in eeprom_dump()
230 /* offset to each phy register */ in phy_dump()
231 int32_t offset[] = in phy_dump() local
243 for (i = 0; i < ((sizeof (offset)) / sizeof (offset[0])); i++) { in phy_dump()
245 stat = e1000_read_phy_reg(hw, offset[ in phy_dump()
259 e1000_read_reg(struct e1000_hw * hw,uint32_t offset) e1000_read_reg() argument
375 off_t offset; pciconfig_dump() local
538 pciconfig_bar(void * instance,uint32_t offset,char * name) pciconfig_bar() argument
[all...]
/titanic_52/usr/src/lib/iconv_modules/ko/common/
H A Dutf_to_njh_main.c134 short int offset; in _icv_iconv() local
137 offset = 2; in _icv_iconv()
139 offset = 3; in _icv_iconv()
141 offset = 4; in _icv_iconv()
143 offset = 5; in _icv_iconv()
145 offset = 6; in _icv_iconv()
147 offset = 1; in _icv_iconv()
149 if ((ibtail - ib) < offset) in _icv_iconv()
156 if (!is_valid_utf8_string(ib, offset)) in _icv_iconv()
163 ib += offset; in _icv_iconv()
[all...]
H A Dutf_to_ojh_main.c134 short int offset; in _icv_iconv() local
137 offset = 2; in _icv_iconv()
139 offset = 3; in _icv_iconv()
141 offset = 4; in _icv_iconv()
143 offset = 5; in _icv_iconv()
145 offset = 6; in _icv_iconv()
147 offset = 1; in _icv_iconv()
149 if ((ibtail - ib) < offset) in _icv_iconv()
156 if (!is_valid_utf8_string(ib, offset)) in _icv_iconv()
163 ib += offset; in _icv_iconv()
[all...]
/titanic_52/usr/src/cmd/truss/
H A Dexpound.c156 show_utimens(private_t *pri, long offset) in show_utimens() argument
163 if (offset == 0) in show_utimens()
167 if (Pread(Proc, &utimbuf, sizeof (utimbuf), offset) in show_utimens()
176 if (Pread(Proc, &utimbuf32, sizeof (utimbuf32), offset) in show_utimens()
203 long offset; in show_timeofday() local
205 if (pri->sys_nargs < 1 || (offset = pri->sys_args[0]) == NULL) in show_timeofday()
209 if (Pread(Proc, &tod, sizeof (tod), offset) in show_timeofday()
215 if (Pread(Proc, &tod32, sizeof (tod32), offset) in show_timeofday()
226 show_itimerval(private_t *pri, long offset, const char *name) in show_itimerval() argument
230 if (offset in show_itimerval()
258 show_timeval(private_t * pri,long offset,const char * name) show_timeval() argument
288 show_timestruc(private_t * pri,long offset,const char * name) show_timestruc() argument
330 long offset; show_times() local
370 show_uname(private_t * pri,long offset) show_uname() argument
398 show_ustat(private_t * pri,long offset) show_ustat() argument
416 show_ustat32(private_t * pri,long offset) show_ustat32() argument
434 show_fusers(private_t * pri,long offset,long nproc) show_fusers() argument
501 show_cladm(private_t * pri,int code,int function,long offset) show_cladm() argument
569 show_mutex(private_t * pri,long offset) show_mutex() argument
581 show_condvar(private_t * pri,long offset) show_condvar() argument
594 show_sema(private_t * pri,long offset) show_sema() argument
607 show_rwlock(private_t * pri,long offset) show_rwlock() argument
635 show_termio(private_t * pri,long offset) show_termio() argument
659 show_termios(private_t * pri,long offset) show_termios() argument
686 show_termiox(private_t * pri,long offset) show_termiox() argument
706 show_sgttyb(private_t * pri,long offset) show_sgttyb() argument
726 show_ltchars(private_t * pri,long offset) show_ltchars() argument
743 show_tchars(private_t * pri,long offset) show_tchars() argument
759 show_termcb(private_t * pri,long offset) show_termcb() argument
778 show_strint(private_t * pri,int code,long offset) show_strint() argument
807 show_strioctl(private_t * pri,long offset) show_strioctl() argument
830 show_strioctl32(private_t * pri,long offset) show_strioctl32() argument
946 show_strpeek(private_t * pri,long offset) show_strpeek() argument
964 show_strpeek32(private_t * pri,long offset) show_strpeek32() argument
982 show_strfdinsert(private_t * pri,long offset) show_strfdinsert() argument
1002 show_strfdinsert32(private_t * pri,long offset) show_strfdinsert32() argument
1022 show_strrecvfd(private_t * pri,long offset) show_strrecvfd() argument
1038 show_strlist(private_t * pri,long offset) show_strlist() argument
1068 show_strlist32(private_t * pri,long offset) show_strlist32() argument
1098 show_jwinsize(private_t * pri,long offset) show_jwinsize() argument
1115 show_winsize(private_t * pri,long offset) show_winsize() argument
1294 show_audio_info(private_t * pri,long offset) show_audio_info() argument
1313 show_ioctl(private_t * pri,int code,long offset) show_ioctl() argument
1514 long offset; show_statvfs() local
1560 long offset; show_statvfs32() local
1606 long offset; show_statvfs64() local
1651 long offset; show_statfs() local
1677 long offset; show_statfs32() local
1701 show_flock32(private_t * pri,long offset) show_flock32() argument
1742 show_flock64(private_t * pri,long offset) show_flock64() argument
1783 show_share(private_t * pri,long offset) show_share() argument
1858 long offset; show_fcntl() local
1930 show_strbuf(private_t * pri,long offset,const char * name,int dump) show_strbuf() argument
1940 show_strbuf32(private_t * pri,long offset,const char * name,int dump) show_strbuf32() argument
1952 long offset; show_gp_msg() local
1999 show_int(private_t * pri,long offset,const char * name) show_int() argument
2012 show_hhex_int(private_t * pri,long offset,const char * name) show_hhex_int() argument
2074 show_all_pollfds(private_t * pri,long offset,int nfds) show_all_pollfds() argument
2110 long offset; show_pollsys() local
2189 show_msgctl64(private_t * pri,long offset) show_msgctl64() argument
2212 show_msgctl(private_t * pri,long offset) show_msgctl() argument
2237 show_msgctl32(private_t * pri,long offset) show_msgctl32() argument
2262 show_msgbuf(private_t * pri,long offset,long msgsz) show_msgbuf() argument
2287 show_msgbuf32(private_t * pri,long offset,long msgsz) show_msgbuf32() argument
2412 show_semctl64(private_t * pri,long offset) show_semctl64() argument
2428 show_semctl(private_t * pri,long offset) show_semctl() argument
2447 show_semctl32(private_t * pri,long offset) show_semctl32() argument
2466 show_semop(private_t * pri,long offset,long nsops,long timeout) show_semop() argument
2551 show_shmctl64(private_t * pri,long offset) show_shmctl64() argument
2575 show_shmctl(private_t * pri,long offset) show_shmctl() argument
2600 show_shmctl32(private_t * pri,long offset) show_shmctl32() argument
2668 show_groups(private_t * pri,long offset,long count) show_groups() argument
2713 show_sigset(private_t * pri,long offset,const char * name) show_sigset() argument
2726 show_sigaltstack32(private_t * pri,long offset,const char * name) show_sigaltstack32() argument
2744 show_sigaltstack(private_t * pri,long offset,const char * name) show_sigaltstack() argument
2768 show_sigaction32(private_t * pri,long offset,const char * name,long odisp) show_sigaction32() argument
2790 show_sigaction(private_t * pri,long offset,const char * name,long odisp) show_sigaction() argument
3132 show_siginfo32(private_t * pri,long offset) show_siginfo32() argument
3143 show_siginfo(private_t * pri,long offset) show_siginfo() argument
3159 show_bool(private_t * pri,long offset,int count) show_bool() argument
3191 show_iovec32(private_t * pri,long offset,int niov,int showbuf,long count) show_iovec32() argument
3231 show_iovec(private_t * pri,long offset,long niov,int showbuf,long count) show_iovec() argument
3276 show_dents32(private_t * pri,long offset,long count) show_dents32() argument
3334 show_dents64(private_t * pri,long offset,long count) show_dents64() argument
3392 show_rlimit32(private_t * pri,long offset) show_rlimit32() argument
3431 show_rlimit64(private_t * pri,long offset) show_rlimit64() argument
3472 show_nuname(private_t * pri,long offset) show_nuname() argument
3558 show_msghdr(private_t * pri,long offset) show_msghdr() argument
3591 show_msghdr32(private_t * pri,long offset) show_msghdr32() argument
3628 show_doorargs(private_t * pri,long offset) show_doorargs() argument
3672 show_ucred(private_t * pri,long offset) show_ucred() argument
3705 show_privset(private_t * pri,long offset,size_t size,char * label) show_privset() argument
3726 show_doorinfo(private_t * pri,long offset) show_doorinfo() argument
3744 show_doorparam(private_t * pri,long offset) show_doorparam() argument
3758 show_doorargs32(private_t * pri,long offset) show_doorargs32() argument
3779 show_doorparam32(private_t * pri,long offset) show_doorparam32() argument
3830 show_portargs(private_t * pri,long offset) show_portargs() argument
3850 show_portargs32(private_t * pri,long offset) show_portargs32() argument
4082 show_memcntl_mha(private_t * pri,long offset) show_memcntl_mha() argument
4109 show_memcntl_mha32(private_t * pri,long offset) show_memcntl_mha32() argument
4152 show_ids(private_t * pri,long offset,int count) show_ids() argument
4192 long offset; show_ntp_gettime() local
4296 long offset; show_ntp_adjtime() local
4324 show_getrusage(long offset) show_getrusage() argument
4367 show_getrusage32(long offset) show_getrusage32() argument
4415 show_packed_nvlist(private_t * pri,uintptr_t offset,size_t size) show_packed_nvlist() argument
4445 show_zone_create_args(private_t * pri,long offset) show_zone_create_args() argument
4530 show_zone_create_args32(private_t * pri,long offset) show_zone_create_args32() argument
[all...]
/titanic_52/usr/src/uts/common/io/xge/hal/include/
H A Dxge-os-pal.h54 volatile int offset; /* offset within the tracebuf */ member
69 int offset = tb->offset; \
71 int leftsize = tb->size - offset; \
73 xge_os_memzero(tb->data + offset, leftsize); \
74 offset = 0; \
77 xge_os_memcpy(tb->data + offset, tb->msg, msgsize-1); \
78 *(tb->data + offset + msgsize-1) = '\n'; \
79 *(tb->data + offset
[all...]
/titanic_52/usr/src/uts/common/avs/ns/nsctl/
H A Dnsc_gen.c78 v[def->offset] = dp->value; in nsc_decode_param()
83 if ((!dp || !dp->name) && !v[def->offset]) in nsc_decode_param()
84 v[def->offset] = def->value; in nsc_decode_param()
158 * size_t size, ulong_t offset)
171 int nslot, size_t size, ulong_t offset) in _nsc_rmmap_init() argument
187 if (!map->offset) in _nsc_rmmap_init()
188 map->offset = offset; in _nsc_rmmap_init()
200 (uint32_t)size != map->size || (int32_t)offset != map->offset) { in _nsc_rmmap_init()
230 ulong_t offset; _nsc_rmmap_alloc() local
393 ulong_t offset; _nsc_rmmap_avail() local
436 ulong_t offset = (*offsetp); _nsc_rmmap_inuse() local
879 ulong_t offset = 0UL; nsc_fatal() local
[all...]

12345678910>>...68