HomeSort by relevance Sort by last modified time
    Searched refs:voffset (Results 1 - 8 of 8) sorted by null

  /frameworks/base/media/jni/audioeffect/
android_media_AudioEffect.cpp 517 int voffset; local
546 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int);
547 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize);
550 memcpy(p->data + voffset, lpValue, vsize);
581 int voffset; local
617 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int);
618 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset
628 memcpy(lpValue, p->data + voffset, p->vsize);
  /frameworks/base/media/libeffects/testlibs/
EffectEqualizer.cpp 639 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); local
641 p->data + voffset);
642 *replySize = sizeof(effect_param_t) + voffset + p->vsize;
645 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset),
646 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset + sizeof(int32_t)));