/linux-6.6.21/sound/pci/emu10k1/ |
D | io.c | 566 unsigned int sol; 571 sol = inl(emu->port + DATA); 572 sol |= 1 << (voicenum - 32); 575 sol = inl(emu->port + DATA); 576 sol |= 1 << voicenum; 578 outl(sol, emu->port + DATA); 585 unsigned int sol; 590 sol = inl(emu->port + DATA); 591 sol &= ~(1 << (voicenum - 32)); 594 sol = inl(emu->port + DATA); [all …]
|
/linux-6.6.21/arch/ia64/kernel/ |
D | crash.c | 40 unsigned long cfm, sof, sol; in crash_save_this_cpu() local 51 sol = (cfm >> 7) & 0x7f; in crash_save_this_cpu() 54 sof - sol); in crash_save_this_cpu()
|
D | unwind.c | 2054 unsigned long sol; in unw_init_frame_info() local 2058 sol = (*info->cfm_loc >> 7) & 0x7f; in unw_init_frame_info() 2059 info->bsp = (unsigned long) ia64_rse_skip_regs((unsigned long *) info->regstk.top, -sol); in unw_init_frame_info() 2065 __func__, info->bsp, sol, info->ip); in unw_init_frame_info()
|
/linux-6.6.21/drivers/scsi/fcoe/ |
D | fcoe_ctlr.c | 387 } __packed * sol; in fcoe_ctlr_solicit() local 390 skb = dev_alloc_skb(sizeof(*sol)); in fcoe_ctlr_solicit() 394 sol = (struct fip_sol *)skb->data; in fcoe_ctlr_solicit() 396 memset(sol, 0, sizeof(*sol)); in fcoe_ctlr_solicit() 397 memcpy(sol->eth.h_dest, fcf ? fcf->fcf_mac : fcoe_all_fcfs, ETH_ALEN); in fcoe_ctlr_solicit() 398 memcpy(sol->eth.h_source, fip->ctl_src_addr, ETH_ALEN); in fcoe_ctlr_solicit() 399 sol->eth.h_proto = htons(ETH_P_FIP); in fcoe_ctlr_solicit() 401 sol->fip.fip_ver = FIP_VER_ENCAPS(FIP_VER); in fcoe_ctlr_solicit() 402 sol->fip.fip_op = htons(FIP_OP_DISC); in fcoe_ctlr_solicit() 403 sol->fip.fip_subcode = FIP_SC_SOL; in fcoe_ctlr_solicit() [all …]
|
/linux-6.6.21/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | firmware.c | 174 char *eoc, *sol; in brcmf_nvram_handle_comment() local 176 sol = (char *)&nvp->data[nvp->pos]; in brcmf_nvram_handle_comment() 177 eoc = strchr(sol, '\n'); in brcmf_nvram_handle_comment() 179 eoc = strchr(sol, '\0'); in brcmf_nvram_handle_comment() 187 nvp->pos += (eoc - sol) + 1; in brcmf_nvram_handle_comment()
|
/linux-6.6.21/drivers/media/pci/cx88/ |
D | cx88-core.c | 76 unsigned int line, todo, sol; in cx88_risc_field() local 95 sol = RISC_SOL | RISC_IRQ1 | RISC_CNT_INC; in cx88_risc_field() 97 sol = RISC_SOL; in cx88_risc_field() 100 *(rp++) = cpu_to_le32(RISC_WRITE | sol | in cx88_risc_field() 107 *(rp++) = cpu_to_le32(RISC_WRITE | sol | in cx88_risc_field()
|
/linux-6.6.21/drivers/media/pci/cx25821/ |
D | cx25821-core.c | 1105 unsigned int line, todo, sol; in cx25821_risc_field_audio() local 1120 sol = RISC_SOL | RISC_IRQ1 | RISC_CNT_INC; in cx25821_risc_field_audio() 1122 sol = RISC_SOL; in cx25821_risc_field_audio() 1126 *(rp++) = cpu_to_le32(RISC_WRITE | sol | RISC_EOL | in cx25821_risc_field_audio() 1134 *(rp++) = cpu_to_le32(RISC_WRITE | sol | in cx25821_risc_field_audio()
|
/linux-6.6.21/drivers/scsi/be2iscsi/ |
D | be_main.c | 1869 struct sol_cqe *sol; in beiscsi_process_cq() local 1880 sol = queue_tail_node(cq); in beiscsi_process_cq() 1883 while (sol->dw[offsetof(struct amap_sol_cqe, valid) / 32] & in beiscsi_process_cq() 1888 be_dws_le_to_cpu(sol, sizeof(struct sol_cqe)); in beiscsi_process_cq() 1890 code = (sol->dw[offsetof(struct amap_sol_cqe, code) / 32] & in beiscsi_process_cq() 1895 cid = AMAP_GET_BITS(struct amap_sol_cqe, cid, sol); in beiscsi_process_cq() 1902 cid, sol); in beiscsi_process_cq() 1905 cid, sol); in beiscsi_process_cq() 1934 hwi_complete_cmd(beiscsi_conn, phba, sol); in beiscsi_process_cq() 1942 hwi_complete_drvr_msgs(beiscsi_conn, phba, sol); in beiscsi_process_cq() [all …]
|
/linux-6.6.21/drivers/media/pci/cx23885/ |
D | cx23885-core.c | 1137 unsigned int line, todo, sol; in cx23885_risc_field() local 1159 sol = RISC_SOL | RISC_IRQ1 | RISC_CNT_INC; in cx23885_risc_field() 1161 sol = RISC_SOL; in cx23885_risc_field() 1165 *(rp++) = cpu_to_le32(RISC_WRITE|sol|RISC_EOL|bpl); in cx23885_risc_field() 1172 *(rp++) = cpu_to_le32(RISC_WRITE|sol| in cx23885_risc_field()
|
/linux-6.6.21/lib/zstd/compress/ |
D | zstd_opt.c | 1014 static U32 ZSTD_totalLen(ZSTD_optimal_t sol) in ZSTD_totalLen() argument 1016 return sol.litlen + sol.mlen; in ZSTD_totalLen()
|
/linux-6.6.21/lib/ |
D | bch.c | 466 unsigned int *sol, int nsol) in solve_linear_system() argument 532 sol[p] = tmp >> 1; in solve_linear_system()
|
/linux-6.6.21/Documentation/ABI/testing/ |
D | sysfs-bus-pci | 55 Contact: Chris Wright <chrisw@sous-sol.org>
|
/linux-6.6.21/Documentation/translations/sp_SP/process/ |
D | submitting-patches.rst | 367 Érase una vez, los parches solían desaparecer en el vacío sin comentarios,
|
/linux-6.6.21/ |
D | CREDITS | 4180 E: chrisw@sous-sol.org
|