/titanic_50/usr/src/lib/libm/common/C/ |
H A D | __rem_pio2m.c | 170 double z, fw, f[20], fq[20], q[20]; in __rem_pio2m() local 195 for (j = 0, fw = zero; j <= jx; j++) in __rem_pio2m() 196 fw += x[j] * f[jx+i-j]; in __rem_pio2m() 197 q[i] = fw; in __rem_pio2m() 204 fw = (double)((int)(twon24 * z)); in __rem_pio2m() 205 iq[i] = (int)(z - two24 * fw); in __rem_pio2m() 206 z = q[j-1] + fw; in __rem_pio2m() 270 for (j = 0, fw = zero; j <= jx; j++) in __rem_pio2m() 271 fw += x[j] * f[jx+i-j]; in __rem_pio2m() 272 q[i] = fw; in __rem_pio2m() [all …]
|
/titanic_50/usr/src/cmd/mdb/common/modules/qlc/ |
H A D | qlc.c | 1857 ql_fw_dump_t *fw; in ql_23xx_dump_dcmd() local 1861 fw = (ql_fw_dump_t *)mdb_alloc(ha->ql_dump_size, UM_SLEEP); in ql_23xx_dump_dcmd() 1863 if (mdb_vread(fw, ha->ql_dump_size, in ql_23xx_dump_dcmd() 1866 mdb_free(fw, ha->ql_dump_size); in ql_23xx_dump_dcmd() 1883 for (cnt = 0; cnt < sizeof (fw->pbiu_reg) / 2; cnt++) { in ql_23xx_dump_dcmd() 1887 mdb_printf("%04x ", fw->pbiu_reg[cnt]); in ql_23xx_dump_dcmd() 1892 for (cnt = 0; cnt < sizeof (fw->risc_host_reg) / 2; cnt++) { in ql_23xx_dump_dcmd() 1896 mdb_printf("%04x ", fw->risc_host_reg[cnt]); in ql_23xx_dump_dcmd() 1906 mdb_printf("%04x ", fw->mailbox_reg[cnt]); in ql_23xx_dump_dcmd() 1911 for (cnt = 0; cnt < sizeof (fw->resp_dma_reg) / 2; cnt++) { in ql_23xx_dump_dcmd() [all …]
|
/titanic_50/usr/src/lib/libast/common/sfio/ |
H A D | sfmove.c | 34 Sfoff_t sfmove(Sfio_t* fr, Sfio_t* fw, Sfoff_t n, reg int rc) in sfmove() argument 36 Sfoff_t sfmove(fr,fw,n,rc) in sfmove() 38 Sfio_t* fw; /* moving data to this stream */ 51 SFMTXDECL2(fw); 54 if(fw) 55 SFMTXBEGIN2(fw, (Sfoff_t)0); 64 if(fw && (w = SFWRITE(fw, cp, r)) != r) 67 if(fw->extent >= 0 && w > 0) 68 (void)SFSEEK(fw,(Sfoff_t)(-w),SEEK_CUR); 87 if(fw) [all …]
|
/titanic_50/usr/src/uts/common/io/fibre-channel/fca/emlxs/ |
H A D | emlxs_fw.c | 85 emlxs_fw_get(emlxs_firmware_t *fw) in emlxs_fw_get() argument 94 if ((fw_table->id == fw->id) && in emlxs_fw_get() 95 (fw_table->kern == fw->kern) && in emlxs_fw_get() 96 (fw_table->stub == fw->stub) && in emlxs_fw_get() 97 (fw_table->sli1 == fw->sli1) && in emlxs_fw_get() 98 (fw_table->sli2 == fw->sli2) && in emlxs_fw_get() 99 (fw_table->sli3 == fw->sli3) && in emlxs_fw_get() 100 (fw_table->sli4 == fw->sli4)) { in emlxs_fw_get() 102 fw->image = fw_table->image; in emlxs_fw_get() 103 fw->size = fw_table->size; in emlxs_fw_get() [all …]
|
/titanic_50/usr/src/uts/common/io/fibre-channel/fca/qlc/ |
H A D | ql_api.c | 11988 ql_fw_dump_t *fw = ha->ql_dump_ptr; in ql_ascii_fw_dump() local 12013 for (cnt = 0; cnt < sizeof (fw->pbiu_reg) / 2; cnt++) { in ql_ascii_fw_dump() 12017 (void) sprintf(bp, "%04x ", fw->pbiu_reg[cnt]); in ql_ascii_fw_dump() 12025 for (cnt = 0; cnt < sizeof (fw->risc_host_reg) / 2; cnt++) { in ql_ascii_fw_dump() 12029 (void) sprintf(bp, "%04x ", fw->risc_host_reg[cnt]); in ql_ascii_fw_dump() 12041 (void) sprintf(bp, "%04x ", fw->mailbox_reg[cnt]); in ql_ascii_fw_dump() 12048 for (cnt = 0; cnt < sizeof (fw->resp_dma_reg) / 2; cnt++) { in ql_ascii_fw_dump() 12052 (void) sprintf(bp, "%04x ", fw->resp_dma_reg[cnt]); in ql_ascii_fw_dump() 12059 for (cnt = 0; cnt < sizeof (fw->dma_reg) / 2; cnt++) { in ql_ascii_fw_dump() 12063 (void) sprintf(bp, "%04x ", fw->dma_reg[cnt]); in ql_ascii_fw_dump() [all …]
|
/titanic_50/usr/src/uts/common/sys/scsi/adapters/pmcs/ |
H A D | pmcs_mpi.h | 46 #define PMCS_FW_TYPE(hwp) (hwp->fw & 0xf) 51 #define PMCS_FW_VARIANT(hwp) ((hwp->fw >> 4) & 0xf) 52 #define PMCS_FW_MAJOR(hwp) ((hwp->fw >> 24) & 0xff) 53 #define PMCS_FW_MINOR(hwp) ((hwp->fw >> 16) & 0xff) 54 #define PMCS_FW_MICRO(hwp) ((hwp->fw >> 8) & 0xff) 55 #define PMCS_FW_REV(hwp) ((hwp->fw >> 8) & 0xffffff)
|
/titanic_50/usr/src/lib/efcode/engine/ |
H A D | env.c | 394 fmt_args(fcode_env_t *env, int cw, int fw, char format, long *arg, in fmt_args() argument 402 if (fw > 0) { /* check for normal (not long) formats */ in fmt_args() 534 int l, cw, fw, bytes; in fmt_str() local 546 fw = cfstr.fwidth; in fmt_str() 571 if (fw > 0) { /* process normal (not long) formats */ in fmt_str() 572 bytes = pct - fmt + fw; in fmt_str() 578 bytes = pct - fmt - fw; in fmt_str() 582 bytes = pct - fmt - fw - 2; in fmt_str() 591 if ((l - abs(fw)) != 0) { in fmt_str() 592 fmt_str(env, pct+abs(fw), (tbuf + strlen(tbuf)), in fmt_str() [all …]
|
/titanic_50/usr/src/lib/libast/common/features/ |
H A D | sfio | 17 FILE* fw; 36 if (!(fw = fopen(file, "w"))) 40 fclose(fw); 47 fclose(fw); 51 if (fwrite(data, sizeof(data), 1, fw) != 1) 53 fclose(fw);
|
/titanic_50/usr/src/cmd/mdb/common/modules/sctp/ |
H A D | sctp.c | 1052 find_next_hash_item(fanout_walk_data_t *fw) in find_next_hash_item() argument 1058 if (fw->sctp != NULL) { in find_next_hash_item() 1060 if (mdb_vread(&sctp, sizeof (sctp), fw->sctp) == -1) { in find_next_hash_item() 1061 mdb_warn("failed to read sctp at %p", fw->sctp); in find_next_hash_item() 1064 fw->sctp = fw->getnext(&sctp); in find_next_hash_item() 1065 if (fw->sctp != NULL) in find_next_hash_item() 1066 return (fw->sctp); in find_next_hash_item() 1069 fw->index++; in find_next_hash_item() 1073 for (; fw->index < fw->size; fw->index++) { in find_next_hash_item() 1076 (uintptr_t)(fw->fanout + fw->index)) == -1) { in find_next_hash_item() [all …]
|
/titanic_50/usr/src/uts/common/io/nxge/ |
H A D | nxge_fflp_hash.c | 333 uint32_t w, fw, i, crch1 = crcin; in nxge_compute_h1_table4() local 340 fw = buf[i]; in nxge_compute_h1_table4() 342 fw = flip32(buf[i]); in nxge_compute_h1_table4() 343 fw = buf[i]; in nxge_compute_h1_table4() 345 w = crch1 ^ fw; in nxge_compute_h1_table4()
|
/titanic_50/usr/src/pkg/manifests/ |
H A D | driver-network-iwh.mf | 60 license usr/src/uts/common/io/iwh/fw-iw/fw_5000/LICENSE \ 61 license=usr/src/uts/common/io/iwh/fw-iw/fw_5000/LICENSE 62 license usr/src/uts/common/io/iwh/fw-iw/fw_5150/LICENSE \ 63 license=usr/src/uts/common/io/iwh/fw-iw/fw_5150/LICENSE
|
H A D | driver-network-iwk.mf | 50 license usr/src/uts/common/io/iwk/fw-iw/LICENSE \ 51 license=usr/src/uts/common/io/iwk/fw-iw/LICENSE
|
H A D | driver-network-ipw.mf | 52 license usr/src/uts/common/io/ipw/fw-ipw2100/LICENSE \ 53 license=usr/src/uts/common/io/ipw/fw-ipw2100/LICENSE
|
H A D | driver-network-iwp.mf | 54 license usr/src/uts/common/io/iwp/fw-iw/LICENSE \ 55 license=usr/src/uts/common/io/iwp/fw-iw/LICENSE
|
H A D | driver-network-iwi.mf | 61 license usr/src/uts/common/io/iwi/fw-ipw2200/LICENSE \ 62 license=usr/src/uts/common/io/iwi/fw-ipw2200/LICENSE
|
H A D | driver-network-rwn.mf | 58 license usr/src/uts/common/io/rwn/fw-rt2860/LICENSE \ 59 license=usr/src/uts/common/io/rwn/fw-rt2860/LICENSE
|
H A D | driver-network-wpi.mf | 65 license usr/src/uts/common/io/wpi/fw-wpi/LICENSE \ 66 license=usr/src/uts/common/io/wpi/fw-wpi/LICENSE
|
/titanic_50/usr/src/uts/common/inet/ipf/ |
H A D | ip_fil_solaris.c | 2087 hook_pkt_event_t *fw; in ipf_hook() local 2096 fw = (hook_pkt_event_t *)info; in ipf_hook() 2098 ASSERT(fw != NULL); in ipf_hook() 2099 phy = (out == 0) ? fw->hpe_ifp : fw->hpe_ofp; in ipf_hook() 2101 ip = fw->hpe_hdr; in ipf_hook() 2108 qpi.qpi_m = fw->hpe_mb; in ipf_hook() 2109 qpi.qpi_data = fw->hpe_hdr; in ipf_hook() 2110 qpi.qpi_off = (char *)qpi.qpi_data - (char *)fw->hpe_mb->b_rptr; in ipf_hook() 2112 qpi.qpi_flags = fw->hpe_flags & (HPE_MULTICAST|HPE_BROADCAST); in ipf_hook() 2117 rval = fr_check(fw->hpe_hdr, hlen, qpi.qpi_ill, out, in ipf_hook() [all …]
|
/titanic_50/exception_lists/ |
H A D | hdrchk | 282 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/5710_hsi.h 283 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/57710_int_offsets.h 284 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/57711_int_offsets.h 285 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/57712_int_offsets.h 286 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/577xx_int_offsets.h 287 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/57xx_fcoe_constants.h 288 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/57xx_fcoe_rfc_constants.h 289 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/57xx_iscsi_constants.h 290 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/57xx_iscsi_rfc_constants.h 291 usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/57xx_l5cm_constants.h [all …]
|
/titanic_50/usr/src/cmd/fwflash/plugins/hdrs/ |
H A D | tavor_ib.h | 201 #define FLASH_SECTOR_OFFSET(fw, sect, sz) \ argument 202 (caddr_t)((uintptr_t)fw + (sect << sz))
|
/titanic_50/usr/src/cmd/mdb/common/modules/genunix/ |
H A D | genunix.c | 2339 file_walk_data_t *fw; in file_walk_init() local 2347 fw = mdb_alloc(sizeof (file_walk_data_t), UM_SLEEP); in file_walk_init() 2350 mdb_free(fw, sizeof (file_walk_data_t)); in file_walk_init() 2356 mdb_free(fw, sizeof (file_walk_data_t)); in file_walk_init() 2360 fw->fw_nofiles = p.p_user.u_finfo.fi_nfiles; in file_walk_init() 2361 fw->fw_flistsz = sizeof (struct uf_entry) * fw->fw_nofiles; in file_walk_init() 2362 fw->fw_flist = mdb_alloc(fw->fw_flistsz, UM_SLEEP); in file_walk_init() 2364 if (mdb_vread(fw->fw_flist, fw->fw_flistsz, in file_walk_init() 2368 mdb_free(fw->fw_flist, fw->fw_flistsz); in file_walk_init() 2369 mdb_free(fw, sizeof (file_walk_data_t)); in file_walk_init() [all …]
|
/titanic_50/usr/src/cmd/fwflash/plugins/transport/common/ |
H A D | hermon.c | 500 handle->fw = (uint32_t *)calloc(1, image_size); in cnx_read_image() 501 if (handle->fw == NULL) { in cnx_read_image() 516 free(handle->fw); in cnx_read_image() 519 handle->fw[i / 4] = htonl(ioctl_info.af_quadlet); in cnx_read_image() 524 ntohl(handle->fw[i / 4])); in cnx_read_image() 555 len = ntohl(handle->fw[CNX_IMG_SIZE_OFFSET / 4]); in cnx_write_file() 558 if (fwrite(&handle->fw[0], len, 1, fp) == 0) { in cnx_write_file() 666 uint8_t *fw; in cnx_write_image() local 698 fw = (uint8_t *)verifier->fwimage; in cnx_write_image() 703 ioctl_info.af_byte = fw[i]; in cnx_write_image() [all …]
|
/titanic_50/usr/src/cmd/fm/dicts/ |
H A D | SUN4V.dict | 65 fault.io.fire.fw-epkt fault.io.fire.sw-epkt fault.io.fire.sw-fw-mismatch=37 116 defect.fw.generic-sparc.addr-oob=88 117 defect.fw.generic-sparc.erpt-gen=89
|
/titanic_50/usr/src/cmd/acpihpd/ |
H A D | svc-acpihpd | 32 /usr/sbin/prtconf -D /devices/fw/acpidr@0 > /dev/null 2>&1
|
/titanic_50/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/helptools/ |
H A D | parseMain.java | 531 FileWriter fw = null; in main() local 553 fw = new FileWriter(outputFileName); in main() 554 BufferedWriter w = new BufferedWriter(fw); in main() 640 fw.close(); in main()
|