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

/frameworks/av/services/audiopolicy/
H A DAudioPolicyEffects.cpp378 size_t *totSize)
383 if (pos + size > *totSize) {
384 while (pos + size > *totSize) {
385 *totSize += ((*totSize + 7) / 8) * 4;
387 param = (char *)realloc(param, *totSize);
396 size_t *totSize)
399 size_t pos = growParamSize(param, sizeof(short), curSize, totSize);
404 size_t pos = growParamSize(param, sizeof(int), curSize, totSize);
409 size_t pos = growParamSize(param, sizeof(float), curSize, totSize);
375 growParamSize(char *param, size_t size, size_t *curSize, size_t *totSize) argument
393 readParamValue(cnode *node, char *param, size_t *curSize, size_t *totSize) argument
443 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int); local
[all...]

Completed in 6 milliseconds