Home
last modified time | relevance | path

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

/frameworks/av/services/audiopolicy/service/
DAudioPolicyEffects.cpp601 size_t *totSize) in growParamSize() argument
606 if (pos + size > *totSize) { in growParamSize()
607 while (pos + size > *totSize) { in growParamSize()
608 *totSize += ((*totSize + 7) / 8) * 4; in growParamSize()
610 char *newParam = (char *)realloc(*param, *totSize); in growParamSize()
612 ALOGE("%s realloc error for size %zu", __func__, *totSize); in growParamSize()
625 size_t *totSize) in readParamValue() argument
631 pos = growParamSize(param, sizeof(short), curSize, totSize); in readParamValue()
639 pos = growParamSize(param, sizeof(int), curSize, totSize); in readParamValue()
647 pos = growParamSize(param, sizeof(float), curSize, totSize); in readParamValue()
[all …]
DAudioPolicyEffects.h247 size_t *totSize);
251 size_t *totSize);