/freebsd/sys/dev/ofw/ |
H A D | ofw_subr.c | 88 u_int spc, rspc; in ofw_reg_to_paddr() local 114 spc = pci_hi & OFW_PCI_PHYS_HI_SPACEMASK; in ofw_reg_to_paddr() 141 spc = pci_hi & OFW_PCI_PHYS_HI_SPACEMASK; in ofw_reg_to_paddr() 148 if (rspc != spc) { in ofw_reg_to_paddr() 168 spc = rspc; in ofw_reg_to_paddr()
|
/freebsd/sys/contrib/openzfs/cmd/ |
H A D | arc_summary | 456 print('{0:<{spc}}{1}'.format(TITLE, daydate, spc=spc_date)) 457 print('{0:<{spc}}{1}'.format(sys_msg, zfs, spc=spc_zfs)) 458 print('{0:<{spc}}{1}\n'.format(machine_msg, spl, spc=spc_spl)) 505 spc = ' '*(LINE_LENGTH-(len(text)+len(value))) 506 print('{0}{spc}{1}'.format(text, value, spc=spc)) 511 spc = ' '*(LINE_LENGTH-(len(INDENT)+len(text)+len(value))) 512 print(INDENT+'{0}{spc}{1}'.format(text, value, spc=spc)) 518 spc = ' '*(LINE_LENGTH-(len(text)+len(values)+2)) 519 print('{0}{spc} {1}'.format(text, values, spc=spc)) 525 spc = ' '*(LINE_LENGTH-(len(INDENT)+len(text)+len(values)+2)) [all …]
|
/freebsd/usr.sbin/jls/ |
H A D | jls.c | 88 int c, i, jflags, jid, lastjid, pflags, spc; in main() local 225 for (i = spc = 0; i < nparams; i++) in main() 227 if (spc) in main() 230 spc = 1; in main() 385 int i, jid, spc; in print_jail() local 447 for (i = spc = 0; i < nparams; i++) { in print_jail() 457 if (spc) in print_jail() 460 spc = 1; in print_jail()
|
/freebsd/sys/dev/mlx4/mlx4_en/ |
H A D | mlx4_en_tx.c | 557 const int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - 4; in mlx4_en_store_inline_data() local 563 } else if (len <= spc) { in mlx4_en_store_inline_data() 567 m_copydata(mb, 0, spc, inl + 4); in mlx4_en_store_inline_data() 568 m_copydata(mb, spc, len - spc, inl + 8 + spc); in mlx4_en_store_inline_data() 579 const int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - 4; in mlx4_en_store_inline_header() local 584 } else if (len <= spc) { in mlx4_en_store_inline_header() 588 *(volatile uint32_t *)(inl + 4 + spc) = in mlx4_en_store_inline_header() 589 SET_BYTE_COUNT((1U << 31) | (len - spc)); in mlx4_en_store_inline_header() 592 SET_BYTE_COUNT((1U << 31) | spc); in mlx4_en_store_inline_header()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | dsl_scan.c | 1862 scan_prefetch_ctx_rele(scan_prefetch_ctx_t *spc, const void *tag) in scan_prefetch_ctx_rele() argument 1864 if (zfs_refcount_remove(&spc->spc_refcnt, tag) == 0) { in scan_prefetch_ctx_rele() 1865 zfs_refcount_destroy(&spc->spc_refcnt); in scan_prefetch_ctx_rele() 1866 kmem_free(spc, sizeof (scan_prefetch_ctx_t)); in scan_prefetch_ctx_rele() 1873 scan_prefetch_ctx_t *spc; in scan_prefetch_ctx_create() local 1875 spc = kmem_alloc(sizeof (scan_prefetch_ctx_t), KM_SLEEP); in scan_prefetch_ctx_create() 1876 zfs_refcount_create(&spc->spc_refcnt); in scan_prefetch_ctx_create() 1877 zfs_refcount_add(&spc->spc_refcnt, tag); in scan_prefetch_ctx_create() 1878 spc->spc_scn = scn; in scan_prefetch_ctx_create() 1880 spc->spc_datablkszsec = dnp->dn_datablkszsec; in scan_prefetch_ctx_create() [all …]
|
/freebsd/contrib/elftoolchain/libdwarf/ |
H A D | libdwarf_lineno.c | 489 Dwarf_Unsigned address, file, line, spc; in _dwarf_lineno_gen_program() local 581 spc = (line0 - li->li_lbase) + in _dwarf_lineno_gen_program() 583 if (spc <= 255) { in _dwarf_lineno_gen_program() 584 RCHECK(WRITE_VALUE(spc, 1)); in _dwarf_lineno_gen_program() 601 spc = (line0 - li->li_lbase) + in _dwarf_lineno_gen_program() 603 if (addr0 >= maddr && spc <= 255) { in _dwarf_lineno_gen_program() 605 RCHECK(WRITE_VALUE(spc, 1)); in _dwarf_lineno_gen_program()
|
/freebsd/sys/libkern/ |
H A D | iconv.c | 328 char spc; in iconv_sysctl_drvlist() local 344 spc = 0; in iconv_sysctl_drvlist() 345 error = SYSCTL_OUT(req, &spc, sizeof(spc)); in iconv_sysctl_drvlist()
|
/freebsd/sys/dev/mlx4/mlx4_ib/ |
H A D | mlx4_ib_qp.c | 2310 int spc; in build_sriov_qp0_header() local 2375 spc = MLX4_INLINE_ALIGN - in build_sriov_qp0_header() 2377 if (header_size <= spc) { in build_sriov_qp0_header() 2382 inl->byte_count = cpu_to_be32((1U << 31) | spc); in build_sriov_qp0_header() 2383 memcpy(inl + 1, sqp->header_buf, spc); in build_sriov_qp0_header() 2385 inl = (void *) (inl + 1) + spc; in build_sriov_qp0_header() 2386 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc); in build_sriov_qp0_header() 2401 inl->byte_count = cpu_to_be32((1U << 31) | (header_size - spc)); in build_sriov_qp0_header() 2439 int spc; in build_mlx_header() local 2653 spc = MLX4_INLINE_ALIGN - in build_mlx_header() [all …]
|
/freebsd/stand/libsa/ |
H A D | dosfs.c | 81 u_char spc; /* sectors per cluster */ member 649 if (!(fs->spc = bs->bpb.spc) || fs->spc & (fs->spc - 1)) in parsebs() 651 fs->bsize = secbyt(fs, fs->spc); in parsebs() 747 nsec = !clus ? entsec(fs, fs->dirents) : fs->spc; in lookup()
|
H A D | dosfs.h | 102 u_int spc; /* sectors per cluster */ member
|
/freebsd/sys/contrib/device-tree/Bindings/arm/msm/ |
H A D | qcom,idle-state.txt | 67 "qcom,idle-state-spc", 76 CPU_SPC: spc { 77 compatible = "qcom,idle-state-spc", "arm,idle-state";
|
/freebsd/sys/contrib/device-tree/src/arm/qcom/ |
H A D | qcom-msm8916-smp.dtsi | 29 compatible = "qcom,idle-state-spc", "arm,idle-state";
|
H A D | qcom-apq8084.dtsi | 82 CPU_SPC: cpu-spc { 83 compatible = "qcom,idle-state-spc",
|
H A D | qcom-apq8064.dtsi | 90 CPU_SPC: cpu-spc { 91 compatible = "qcom,idle-state-spc",
|
H A D | qcom-msm8974.dtsi | 90 CPU_SPC: cpu-spc { 91 compatible = "qcom,idle-state-spc",
|
/freebsd/crypto/heimdal/appl/telnet/telnet/ |
H A D | telnet.c | 1070 struct spc { struct 1085 struct spc *spcp; in slc_init() argument 1184 struct spc *spcp; in slc_export() 1208 struct spc *spcp; in slc() 1276 struct spc *spcp; in slc_check() 1350 struct spc *spcp; in slc_update()
|
/freebsd/contrib/telnet/telnet/ |
H A D | telnet.c | 1125 struct spc { struct 1140 struct spc *spcp; in slc_init() argument 1249 struct spc *spcp; in slc_export() 1273 struct spc *spcp; in slc() 1341 struct spc *spcp; in slc_check() 1414 struct spc *spcp; in slc_update()
|
/freebsd/sys/dev/pms/freebsd/driver/ini/src/ |
H A D | Readme.freebsd.txt | 16 Tisa/sallsdk/spc
|
/freebsd/usr.bin/vtfontcvt/ |
H A D | vtfontcvt.c | 408 char spc = '\0'; in parse_bdf() local 425 spc = *p; in parse_bdf() 441 if (spc != 'c' && spc != 'C') in parse_bdf()
|
/freebsd/sys/modules/pms/ |
H A D | Makefile | 6 ${SRCTOP}/sys/dev/pms/RefTisa/sallsdk/spc \
|
/freebsd/sys/arm/freescale/imx/ |
H A D | imx6_sdma.h | 130 uint32_t spc :14; member
|
/freebsd/sys/netinet/ |
H A D | sctputil.c | 3285 struct sctp_paddr_change *spc; in sctp_notify_peer_addr_change() local 3301 spc = mtod(m_notify, struct sctp_paddr_change *); in sctp_notify_peer_addr_change() 3302 memset(spc, 0, sizeof(struct sctp_paddr_change)); in sctp_notify_peer_addr_change() 3303 spc->spc_type = SCTP_PEER_ADDR_CHANGE; in sctp_notify_peer_addr_change() 3304 spc->spc_flags = 0; in sctp_notify_peer_addr_change() 3305 spc->spc_length = sizeof(struct sctp_paddr_change); in sctp_notify_peer_addr_change() 3312 (struct sockaddr_in6 *)&spc->spc_aaddr); in sctp_notify_peer_addr_change() 3314 memcpy(&spc->spc_aaddr, sa, sizeof(struct sockaddr_in)); in sctp_notify_peer_addr_change() 3317 memcpy(&spc->spc_aaddr, sa, sizeof(struct sockaddr_in)); in sctp_notify_peer_addr_change() 3326 memcpy(&spc->spc_aaddr, sa, sizeof(struct sockaddr_in6)); in sctp_notify_peer_addr_change() [all …]
|
/freebsd/sys/cam/scsi/ |
H A D | scsi_da.h | 546 uint8_t spc; /* XXX ??? */ member
|
/freebsd/sys/conf/ |
H A D | files | 2623 dev/pms/RefTisa/sallsdk/spc/sadisc.c optional pmspcv \ 2625 dev/pms/RefTisa/sallsdk/spc/mpi.c optional pmspcv \ 2627 dev/pms/RefTisa/sallsdk/spc/saframe.c optional pmspcv \ 2629 dev/pms/RefTisa/sallsdk/spc/sahw.c optional pmspcv \ 2631 dev/pms/RefTisa/sallsdk/spc/sainit.c optional pmspcv \ 2633 dev/pms/RefTisa/sallsdk/spc/saint.c optional pmspcv \ 2635 dev/pms/RefTisa/sallsdk/spc/sampicmd.c optional pmspcv \ 2637 dev/pms/RefTisa/sallsdk/spc/sampirsp.c optional pmspcv \ 2639 dev/pms/RefTisa/sallsdk/spc/saphy.c optional pmspcv \ 2641 dev/pms/RefTisa/sallsdk/spc/saport.c optional pmspcv \ [all …]
|
/freebsd/sys/contrib/ncsw/Peripherals/FM/Pcd/ |
H A D | fm_kg.c | 3134 uint32_t tmpKgarReg, spc, intFlags; in FM_PCD_KgSchemeGetCounter() local 3153 spc = GET_UINT32(p_FmPcd->p_FmPcdKg->p_IndirectAccessRegs->schemeRegs.kgse_spc); in FM_PCD_KgSchemeGetCounter() 3156 return spc; in FM_PCD_KgSchemeGetCounter()
|