Lines Matching refs:utemp
607 EAS_U32 utemp; in getDecayScale() local
613 utemp = 512;//32768; in getDecayScale()
616 utemp = 511;//32709; in getDecayScale()
619 utemp = 510;//32649; in getDecayScale()
622 utemp = 508;//32532; in getDecayScale()
625 utemp = 505;//32298; in getDecayScale()
628 utemp = 497;//31835; in getDecayScale()
631 utemp = 483;//30929; in getDecayScale()
634 utemp = 456;//29193; in getDecayScale()
637 utemp = 406;//26008; in getDecayScale()
640 utemp = 323;//20642; in getDecayScale()
643 utemp = 203;//13004; in getDecayScale()
646 utemp = 81;//5160; in getDecayScale()
649 utemp = 13;//813; in getDecayScale()
652 utemp = 0;//20; in getDecayScale()
655 utemp = 0; in getDecayScale()
659 utemp = 0; in getDecayScale()
663 return utemp; in getDecayScale()
668 EAS_U32 utemp; in getAttackIncrement() local
674 utemp = 32; in getAttackIncrement()
677 utemp = 64; in getAttackIncrement()
680 utemp = 128; in getAttackIncrement()
683 utemp = 256; in getAttackIncrement()
686 utemp = 512; in getAttackIncrement()
689 utemp = 1024; in getAttackIncrement()
692 utemp = 2048; in getAttackIncrement()
695 utemp = 4096; in getAttackIncrement()
698 utemp = 8192; in getAttackIncrement()
701 utemp = 16384; in getAttackIncrement()
704 utemp = 32768; in getAttackIncrement()
707 utemp = 65536; in getAttackIncrement()
710 utemp = 65536; in getAttackIncrement()
713 utemp = 65536; in getAttackIncrement()
716 utemp = 65535; in getAttackIncrement()
720 utemp = 0; in getAttackIncrement()
724 return utemp; in getAttackIncrement()
747 EAS_U32 utemp; in EAS_PERelease() local
755 utemp = ((pState->envData >> 20) & 0x0F); in EAS_PERelease()
756 pState->envScale = getDecayScale(utemp); //getReleaseScale(utemp); in EAS_PERelease()
762 utemp = ((pState->envData >> 28) & 0x0F); in EAS_PERelease()
763 pState->envScale = getDecayScale(utemp); //getSustainScale(utemp); in EAS_PERelease()
980 EAS_U32 utemp; in RenderPCMStream() local
998 utemp = ((pState->envData >> 12) & 0x0F); in RenderPCMStream()
1001 if (utemp == 0x0F || utemp == 0x00) in RenderPCMStream()
1006 utemp = ((pState->envData >> 16) & 0x0F); in RenderPCMStream()
1007 pState->envScale = getDecayScale(utemp); in RenderPCMStream()
1020 pState->envScale = getAttackIncrement(utemp); in RenderPCMStream()
1034 utemp = ((pState->envData >> 16) & 0x0F); in RenderPCMStream()
1035 pState->envScale = getDecayScale(utemp); in RenderPCMStream()
1045 utemp = ((pState->envData >> 8) & 0x0F); in RenderPCMStream()
1046 if (utemp == (EAS_U32)0x0F) in RenderPCMStream()
1047 utemp = (2<<7); in RenderPCMStream()
1050 utemp = ((32769<<7) >> (utemp>>1)); in RenderPCMStream()
1052 if (pState->envValue <= utemp) in RenderPCMStream()
1054 utemp = ((pState->envData >> 28) & 0x0F); in RenderPCMStream()
1055 pState->envScale = getDecayScale(utemp); //getSustainScale(utemp); in RenderPCMStream()