Searched refs:totSize (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/services/audiopolicy/service/ |
D | AudioPolicyEffects.cpp | 393 size_t *totSize) in growParamSize() argument 398 if (pos + size > *totSize) { in growParamSize() 399 while (pos + size > *totSize) { in growParamSize() 400 *totSize += ((*totSize + 7) / 8) * 4; in growParamSize() 402 *param = (char *)realloc(*param, *totSize); in growParamSize() 404 ALOGE("%s realloc error for size %zu", __func__, *totSize); in growParamSize() 416 size_t *totSize) in readParamValue() argument 422 pos = growParamSize(param, sizeof(short), curSize, totSize); in readParamValue() 430 pos = growParamSize(param, sizeof(int), curSize, totSize); in readParamValue() 438 pos = growParamSize(param, sizeof(float), curSize, totSize); in readParamValue() [all …]
|
D | AudioPolicyEffects.h | 176 size_t *totSize); 180 size_t *totSize);
|