Home
last modified time | relevance | path

Searched refs:totSize (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/services/audiopolicy/service/
DAudioPolicyEffects.cpp537 size_t *totSize) in growParamSize() argument
542 if (pos + size > *totSize) { in growParamSize()
543 while (pos + size > *totSize) { in growParamSize()
544 *totSize += ((*totSize + 7) / 8) * 4; in growParamSize()
546 char *newParam = (char *)realloc(*param, *totSize); in growParamSize()
548 ALOGE("%s realloc error for size %zu", __func__, *totSize); in growParamSize()
561 size_t *totSize) in readParamValue() argument
567 pos = growParamSize(param, sizeof(short), curSize, totSize); in readParamValue()
575 pos = growParamSize(param, sizeof(int), curSize, totSize); in readParamValue()
583 pos = growParamSize(param, sizeof(float), curSize, totSize); in readParamValue()
[all …]
DAudioPolicyEffects.h237 size_t *totSize);
241 size_t *totSize);