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.cpp519 int voffset; in android_media_AudioEffect_native_setParameter() local
548 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int); in android_media_AudioEffect_native_setParameter()
549 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize); in android_media_AudioEffect_native_setParameter()
552 memcpy(p->data + voffset, lpValue, vsize); in android_media_AudioEffect_native_setParameter()
582 int voffset; in android_media_AudioEffect_native_getParameter() local
611 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int); in android_media_AudioEffect_native_getParameter()
612 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize); in android_media_AudioEffect_native_getParameter()
621 memcpy(lpValue, p->data + voffset, p->vsize); in android_media_AudioEffect_native_getParameter()
/frameworks/base/media/libeffects/testlibs/
DEffectEqualizer.cpp665 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Equalizer_command() local
667 p->data + voffset); in Equalizer_command()
668 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Equalizer_command()
671 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset), in Equalizer_command()
672 … *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset + sizeof(int32_t))); in Equalizer_command()
/frameworks/base/media/libeffects/lvm/wrapper/Bundle/
DEffectBundle.cpp2802 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Effect_command() local
2807 p->data + voffset); in Effect_command()
2809 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Effect_command()
2833 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Effect_command() local
2838 p->data + voffset); in Effect_command()
2840 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Effect_command()
2865 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Effect_command() local
2870 p->data + voffset); in Effect_command()
2872 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Effect_command()
2897 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Effect_command() local
[all …]
/frameworks/base/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp1964 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Reverb_command() local
1969 p->data + voffset); in Reverb_command()
1971 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Reverb_command()
/frameworks/base/core/java/android/widget/
DTextView.java4168 int voffset = 0; in getVerticalOffset() local
4190 voffset = boxht - textht; in getVerticalOffset()
4192 voffset = (boxht - textht) >> 1; in getVerticalOffset()
4195 return voffset; in getVerticalOffset()
4199 int voffset = 0; in getBottomVerticalOffset() local
4221 voffset = boxht - textht; in getBottomVerticalOffset()
4223 voffset = (boxht - textht) >> 1; in getBottomVerticalOffset()
4226 return voffset; in getBottomVerticalOffset()
5123 int voffset = getExtendedPaddingTop(); in getLineBounds() local
5125 voffset += getVerticalOffset(true); in getLineBounds()
[all …]
/frameworks/base/media/libeffects/preprocessing/
DPreProcessing.cpp1306 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in PreProcessingFx_Command() local
1311 p->data + voffset); in PreProcessingFx_Command()
1312 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in PreProcessingFx_Command()