Home
last modified time | relevance | path

Searched refs:voffset (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/media/jni/audioeffect/
Dandroid_media_AudioEffect.cpp544 int voffset; in android_media_AudioEffect_native_setParameter() local
571 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int); in android_media_AudioEffect_native_setParameter()
572 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize); in android_media_AudioEffect_native_setParameter()
575 memcpy(p->data + voffset, lpValue, vsize); in android_media_AudioEffect_native_setParameter()
605 int voffset; in android_media_AudioEffect_native_getParameter() local
632 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int); in android_media_AudioEffect_native_getParameter()
633 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize); in android_media_AudioEffect_native_getParameter()
642 memcpy(lpValue, p->data + voffset, p->vsize); in android_media_AudioEffect_native_getParameter()
/frameworks/av/media/libeffects/testlibs/
DEffectEqualizer.cpp675 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Equalizer_command() local
677 p->data + voffset); in Equalizer_command()
678 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Equalizer_command()
681 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset), in Equalizer_command()
682 … *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset + sizeof(int32_t))); in Equalizer_command()
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
DEffectBundle.cpp3517 uint32_t voffset = paddedParamSize; in Effect_command() local
3523 p->data + voffset); in Effect_command()
3536 p->data + voffset); in Effect_command()
3551 p->data + voffset); in Effect_command()
3566 p->data + voffset); in Effect_command()
3574 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Effect_command()
3595 const uint32_t voffset = computeParamVOffset(p); in Effect_command() local
3608 p->data + voffset); in Effect_command()
3628 const uint32_t voffset = computeParamVOffset(p); in Effect_command() local
3641 p->data + voffset); in Effect_command()
[all …]
/frameworks/base/core/java/android/widget/
DTextView.java6227 int voffset = 0; in getVerticalOffset() local
6241 voffset = boxht - textht; in getVerticalOffset()
6243 voffset = (boxht - textht) >> 1; in getVerticalOffset()
6247 return voffset; in getVerticalOffset()
6251 int voffset = 0; in getBottomVerticalOffset() local
6265 voffset = boxht - textht; in getBottomVerticalOffset()
6267 voffset = (boxht - textht) >> 1; in getBottomVerticalOffset()
6271 return voffset; in getBottomVerticalOffset()
6995 int voffset = getExtendedPaddingTop(); in getLineBounds() local
6997 voffset += getVerticalOffset(true); in getLineBounds()
[all …]
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp2132 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Reverb_command() local
2137 p->data + voffset); in Reverb_command()
2139 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Reverb_command()
/frameworks/av/media/libeffects/preprocessing/
DPreProcessing.cpp1511 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in PreProcessingFx_Command() local
1516 p->data + voffset); in PreProcessingFx_Command()
1517 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in PreProcessingFx_Command()