Home
last modified time | relevance | path

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

/frameworks/av/services/audiopolicy/service/
DAudioPolicyEffects.cpp593 size_t *totSize) in growParamSize() argument
598 if (pos + size > *totSize) { in growParamSize()
599 while (pos + size > *totSize) { in growParamSize()
600 *totSize += ((*totSize + 7) / 8) * 4; in growParamSize()
602 char *newParam = (char *)realloc(*param, *totSize); in growParamSize()
604 ALOGE("%s realloc error for size %zu", __func__, *totSize); in growParamSize()
617 size_t *totSize) in readParamValue() argument
623 pos = growParamSize(param, sizeof(short), curSize, totSize); in readParamValue()
631 pos = growParamSize(param, sizeof(int), curSize, totSize); in readParamValue()
639 pos = growParamSize(param, sizeof(float), curSize, totSize); in readParamValue()
[all …]
DAudioPolicyEffects.h247 size_t *totSize);
251 size_t *totSize);