Searched defs:totSize (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp1184 size_t *totSize)
1189 if (pos + size > *totSize) {
1190 while (pos + size > *totSize) {
1191 *totSize += ((*totSize + 7) / 8) * 4;
1193 param = (char *)realloc(param, *totSize);
1202 size_t *totSize)
1205 size_t pos = growParamSize(param, sizeof(short), curSize, totSize);
1210 size_t pos = growParamSize(param, sizeof(int), curSize, totSize);
1215 size_t pos = growParamSize(param, sizeof(float), curSize, totSize);
1181 growParamSize(char *param, size_t size, size_t *curSize, size_t *totSize) argument
1199 readParamValue(cnode *node, char *param, size_t *curSize, size_t *totSize) argument
1249 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int); local
[all...]

Completed in 53 milliseconds