OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:numBursts
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/media/libaaudio/tests/
test_clock_model.cpp
77
const int64_t
numBursts
= currentTimeFrames / HW_FRAMES_PER_BURST;
78
const int64_t alignedPosition = startPositionFrames + (
numBursts
* HW_FRAMES_PER_BURST);
/frameworks/av/services/oboeservice/
AAudioServiceStreamShared.cpp
83
int32_t
numBursts
;
87
numBursts
= MAX_FRAMES_PER_BUFFER / framesPerBurst;
89
numBursts
= DEFAULT_BURSTS_PER_BUFFER;
93
numBursts
= (requestedCapacityFrames + framesPerBurst - 1) / framesPerBurst;
97
if (
numBursts
< MIN_BURSTS_PER_BUFFER) {
98
numBursts
= MIN_BURSTS_PER_BUFFER;
101
if (
numBursts
> 0x8000 || framesPerBurst > 0x8000) {
103
numBursts
, framesPerBurst);
106
int32_t capacityInFrames =
numBursts
* framesPerBurst;
/frameworks/av/media/libaaudio/src/client/
AudioStreamInternal.cpp
709
int32_t
numBursts
= (adjustedFrames + mFramesPerBurst - 1) / mFramesPerBurst;
710
adjustedFrames =
numBursts
* mFramesPerBurst;
Completed in 173 milliseconds