Searched refs:ptarget (Results 1 – 11 of 11) sorted by relevance
/openbmc/linux/sound/isa/sb/ |
H A D | emu8000_pcm.c | 257 int ptarget = 1 << (pitch >> 12); in calc_pitch_target() local 258 if (pitch & 0x800) ptarget += (ptarget * 0x102e) / 0x2710; in calc_pitch_target() 259 if (pitch & 0x400) ptarget += (ptarget * 0x764) / 0x2710; in calc_pitch_target() 260 if (pitch & 0x200) ptarget += (ptarget * 0x389) / 0x2710; in calc_pitch_target() 261 ptarget += (ptarget >> 1); in calc_pitch_target() 262 if (ptarget > 0xffff) ptarget = 0xffff; in calc_pitch_target() 263 return ptarget; in calc_pitch_target()
|
H A D | emu8000_callback.c | 313 temp = (temp << 8) | (vp->ptarget << 16) | vp->aaux; in trigger_voice() 315 EMU8000_CPF_WRITE(hw, ch, vp->ptarget << 16); in trigger_voice()
|
/openbmc/linux/sound/synth/emux/ |
H A D | emux_synth.c | 587 vp->ptarget = 1 << (pitch >> 12); in setup_voice() 588 if (pitch & 0x800) vp->ptarget += (vp->ptarget*0x102e)/0x2710; in setup_voice() 589 if (pitch & 0x400) vp->ptarget += (vp->ptarget*0x764)/0x2710; in setup_voice() 590 if (pitch & 0x200) vp->ptarget += (vp->ptarget*0x389)/0x2710; in setup_voice() 591 vp->ptarget += (vp->ptarget >> 1); in setup_voice() 592 if (vp->ptarget > 0xffff) vp->ptarget = 0xffff; in setup_voice() 594 vp->ptarget = 0xffff; in setup_voice()
|
H A D | emux_proc.c | 80 vp->ptarget, in snd_emux_proc_info_read()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/ |
H A D | rdist-6.1.5-cleanup.patch | 320 optarget = ptarget; 321 len = ptarget - target; 328 if (ptarget[-1] != '/') 329 *ptarget++ = '/'; 331 - while (*ptarget++ = *cp++) 332 + while ((*ptarget++ = *cp++)) 334 ptarget--; 549 optarget = ptarget; 550 len = ptarget - target; 557 ptarget = optarget; [all …]
|
H A D | rdist-6.1.5-stat64.patch | 23 char *sptarget[32]; /* stack of saved ptarget's for directories */
|
/openbmc/linux/sound/pci/emu10k1/ |
H A D | emu10k1_callback.c | 449 unsigned int ptarget; in trigger_voice() local 460 ptarget = (unsigned int)vp->ptarget << 16; in trigger_voice() 462 ptarget = IP_TO_CP(vp->apitch); in trigger_voice() 466 PTRX, ptarget | (vp->apan << 8) | vp->aaux, in trigger_voice() 469 CPF, ptarget, in trigger_voice()
|
/openbmc/linux/drivers/macintosh/ |
H A D | windfarm_rm31.c | 297 s32 tmax, ttarget, ptarget; in cpu_setup_pid() local 303 ptarget = ((s32)(mpu->pmaxh - mpu->padjmax)) << 16; in cpu_setup_pid() 329 pid.pmaxadj = ptarget; in cpu_setup_pid()
|
H A D | windfarm_pm72.c | 396 s32 tmax, ttarget, ptarget; in cpu_setup_pid() local 402 ptarget = ((s32)(mpu->pmaxh - mpu->padjmax)) << 16; in cpu_setup_pid() 428 pid.pmaxadj = ptarget; in cpu_setup_pid()
|
/openbmc/linux/include/sound/ |
H A D | emux_synth.h | 185 int ptarget; /* pitch target */ member
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | package.py | 526 ptarget = link 529 ptarget = os.path.join(os.path.dirname(dir), link) 531 …= "Fixup Perms: Unable to correct directory link, target already exists: %s -> %s" % (dir, ptarget)
|