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.cpp3183 uint32_t voffset = paddedParamSize; in Effect_command() local
3188 p->data + voffset); in Effect_command()
3200 p->data + voffset); in Effect_command()
3214 p->data + voffset); in Effect_command()
3228 p->data + voffset); in Effect_command()
3236 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Effect_command()
/frameworks/base/core/java/android/widget/
DTextView.java6208 int voffset = 0; in getVerticalOffset() local
6222 voffset = boxht - textht; in getVerticalOffset()
6224 voffset = (boxht - textht) >> 1; in getVerticalOffset()
6228 return voffset; in getVerticalOffset()
6232 int voffset = 0; in getBottomVerticalOffset() local
6246 voffset = boxht - textht; in getBottomVerticalOffset()
6248 voffset = (boxht - textht) >> 1; in getBottomVerticalOffset()
6252 return voffset; in getBottomVerticalOffset()
6976 int voffset = getExtendedPaddingTop(); in getLineBounds() local
6978 voffset += getVerticalOffset(true); in getLineBounds()
[all …]
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp1974 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Reverb_command() local
1979 p->data + voffset); in Reverb_command()
1981 *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()