OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pShift
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/services/audioflinger/
AudioResamplerSinc.h
78
static const int
pShift
= kNumPhaseBits - coefsBits - pLerpBits; // 11
79
static const uint32_t pMask = ((1<<pLerpBits)-1) <<
pShift
; // 0x7fff << 11
AudioResamplerSinc.cpp
310
uint16_t lerpP = (phase & pMask) >>
pShift
;
312
uint16_t lerpN = (-phase & pMask) >>
pShift
;
315
lerpN = pMask >>
pShift
;
Completed in 34 milliseconds