Searched refs:voffset (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/media/jni/audioeffect/ |
D | android_media_AudioEffect.cpp | 519 int voffset; in android_media_AudioEffect_native_setParameter() local 546 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int); in android_media_AudioEffect_native_setParameter() 547 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize); in android_media_AudioEffect_native_setParameter() 550 memcpy(p->data + voffset, lpValue, vsize); in android_media_AudioEffect_native_setParameter() 580 int voffset; in android_media_AudioEffect_native_getParameter() local 607 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int); in android_media_AudioEffect_native_getParameter() 608 p = (effect_param_t *) malloc(sizeof(effect_param_t) + voffset + vsize); in android_media_AudioEffect_native_getParameter() 617 memcpy(lpValue, p->data + voffset, p->vsize); in android_media_AudioEffect_native_getParameter()
|
/frameworks/av/media/libeffects/testlibs/ |
D | EffectEqualizer.cpp | 675 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/ |
D | EffectBundle.cpp | 3186 uint32_t voffset = paddedParamSize; in Effect_command() local 3189 p->data + voffset); in Effect_command() 3199 &p->vsize, p->data + voffset); in Effect_command() 3211 p->data + voffset); in Effect_command() 3223 &p->vsize, p->data + voffset); in Effect_command() 3231 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Effect_command() 3253 const uint32_t voffset = computeParamVOffset(p); in Effect_command() local 3263 pContext, p->psize, (void*)p->data, p->vsize, p->data + voffset); in Effect_command() 3285 const uint32_t voffset = computeParamVOffset(p); in Effect_command() local 3295 pContext, p->psize, (void*)p->data, p->vsize, p->data + voffset); in Effect_command() [all …]
|
/frameworks/av/media/libeffects/dynamicsproc/ |
D | EffectDynamicsProcessing.cpp | 522 uint32_t voffset = computeParamVOffset(p); in DP_command() local 528 p->data + voffset); in DP_command() 529 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in DP_command() 544 const uint32_t voffset = computeParamVOffset(p); in DP_command() local 550 p->data + voffset); in DP_command()
|
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/ |
D | EffectReverb.cpp | 1848 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in Reverb_command() local 1851 p->data + voffset); in Reverb_command() 1853 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in Reverb_command()
|
/frameworks/av/media/libeffects/preprocessing/ |
D | PreProcessing.cpp | 1202 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); in PreProcessingFx_Command() local 1206 effect->ops->get_parameter(effect, p->data, &p->vsize, p->data + voffset); in PreProcessingFx_Command() 1207 *replySize = sizeof(effect_param_t) + voffset + p->vsize; in PreProcessingFx_Command()
|
/frameworks/base/core/java/android/widget/ |
D | TextView.java | 7450 int voffset = 0; in getVerticalOffset() local 7464 voffset = boxht - textht; in getVerticalOffset() 7466 voffset = (boxht - textht) >> 1; in getVerticalOffset() 7470 return voffset; in getVerticalOffset() 7474 int voffset = 0; in getBottomVerticalOffset() local 7488 voffset = boxht - textht; in getBottomVerticalOffset() 7490 voffset = (boxht - textht) >> 1; in getBottomVerticalOffset() 7494 return voffset; in getBottomVerticalOffset() 8214 int voffset = getExtendedPaddingTop(); in getLineBounds() local 8216 voffset += getVerticalOffset(true); in getLineBounds() [all …]
|