Searched refs:retVal (Results 1 – 7 of 7) sorted by relevance
/linux-6.6.21/Documentation/sphinx/ |
D | rstFlatTable.py | 296 retVal = "[ " 298 retVal += "[ " 301 retVal += ('%r' % col) 302 retVal += "\n , " 307 retVal += ('(cspan=%s, rspan=%s, %r)' 309 retVal += "]\n , " 310 retVal = retVal[:-2] 311 retVal += "]\n , " 312 retVal = retVal[:-2] 313 return retVal + "]"
|
/linux-6.6.21/drivers/mtd/maps/ |
D | esb2rom.c | 418 int retVal; in init_esb2rom() local 431 retVal = esb2rom_init_one(pdev, &esb2rom_pci_tbl[0]); in init_esb2rom() 433 printk(KERN_DEBUG "retVal = %d\n", retVal); in init_esb2rom() 434 return retVal; in init_esb2rom()
|
D | ck804xrom.c | 356 int retVal; in init_ck804xrom() local 365 retVal = ck804xrom_init_one(pdev, id); in init_ck804xrom() 367 return retVal; in init_ck804xrom()
|
/linux-6.6.21/sound/pci/korg1212/ |
D | korg1212.c | 474 union swap_u32 retVal, swapper; in LowerWordSwap() local 477 retVal.c[2] = swapper.c[3]; in LowerWordSwap() 478 retVal.c[3] = swapper.c[2]; in LowerWordSwap() 479 retVal.c[1] = swapper.c[1]; in LowerWordSwap() 480 retVal.c[0] = swapper.c[0]; in LowerWordSwap() 482 return retVal.i; in LowerWordSwap() 491 union swap_u32 retVal, swapper; in UpperWordSwap() local 494 retVal.c[2] = swapper.c[2]; in UpperWordSwap() 495 retVal.c[3] = swapper.c[3]; in UpperWordSwap() 496 retVal.c[1] = swapper.c[0]; in UpperWordSwap() [all …]
|
/linux-6.6.21/drivers/staging/rtl8723bs/hal/ |
D | hal_btcoex.c | 215 u32 retVal; in halbtcoutsrc_GetWifiLinkStatus() local 223 retVal = _halbtcoutsrc_GetWifiLinkStatus(padapter); in halbtcoutsrc_GetWifiLinkStatus() 224 if (retVal) { in halbtcoutsrc_GetWifiLinkStatus() 225 portConnectedStatus |= retVal; in halbtcoutsrc_GetWifiLinkStatus() 229 retVal = (numOfConnectedPort << 16) | portConnectedStatus; in halbtcoutsrc_GetWifiLinkStatus() 231 return retVal; in halbtcoutsrc_GetWifiLinkStatus()
|
/linux-6.6.21/sound/oss/dmasound/ |
D | dmasound_core.c | 672 int retVal; in sq_poll() local 675 if ((retVal = sq_setup(&write_sq)) < 0) in sq_poll() 676 return retVal; in sq_poll()
|
/linux-6.6.21/sound/isa/ |
D | es18xx.c | 985 unsigned char retVal = 0; in snd_es18xx_put_mux() local 994 retVal = snd_es18xx_mixer_bits(chip, 0x7a, 0x08, 0x08) != 0x08; in snd_es18xx_put_mux() 997 retVal = snd_es18xx_mixer_bits(chip, 0x7a, 0x08, 0x00) != 0x00; in snd_es18xx_put_mux() 1015 return (snd_es18xx_mixer_bits(chip, 0x1c, 0x07, val) != val) || retVal; in snd_es18xx_put_mux()
|