Searched defs:provided (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/services/audioflinger/tests/
H A Dtest_utils.h91 * No allocation or deallocation of the provided buffer is done.
122 size_t provided = mInputIncr[mNextIdx++]; local
124 mNextIdx-1, provided, buffer->frameCount);
125 if (provided < buffer->frameCount) {
126 buffer->frameCount = provided;
180 std::vector<int> mInputIncr; // number of frames provided per call
/frameworks/av/services/audioflinger/
H A Dtest-resample.cpp61 fprintf(stderr," -P # frames provided per call to resample() in CSV format\n");
266 const Vector<int> mPvalues; // number of frames provided per call
281 size_t provided = mPvalues[mNextPidx++]; local
282 printf("mPvalue[%zu]=%zu not %zu\n", mNextPidx-1, provided, buffer->frameCount);
283 if (provided < buffer->frameCount) {
284 buffer->frameCount = provided;

Completed in 112 milliseconds