Home
last modified time | relevance | path

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

/frameworks/av/services/audiopolicy/service/
DAudioPolicyEffects.cpp385 size_t *totSize) in growParamSize() argument
390 if (pos + size > *totSize) { in growParamSize()
391 while (pos + size > *totSize) { in growParamSize()
392 *totSize += ((*totSize + 7) / 8) * 4; in growParamSize()
394 *param = (char *)realloc(*param, *totSize); in growParamSize()
396 ALOGE("%s realloc error for size %zu", __func__, *totSize); in growParamSize()
408 size_t *totSize) in readParamValue() argument
414 pos = growParamSize(param, sizeof(short), curSize, totSize); in readParamValue()
422 pos = growParamSize(param, sizeof(int), curSize, totSize); in readParamValue()
430 pos = growParamSize(param, sizeof(float), curSize, totSize); in readParamValue()
[all …]
DAudioPolicyEffects.h175 size_t *totSize);
179 size_t *totSize);