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

  /frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
fisheye.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
vignette.rsh 51 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
vignette_approx.rsh 51 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
  /frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
fisheye.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
vignette.rsh 51 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
vignette_approx.rsh 51 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 371 /* collect the necessary data: target bits, actual bits, mad and QP */
375 pMP->mad = (OsclFloat)rateCtrl->totalSAD / video->PicSizeInMbs; //ComputeFrameMAD(video, rateCtrl);
376 if (pMP->mad < MAD_MIN) pMP->mad = MAD_MIN; /* MAD_MIN is defined as 1 in mp4def.h */
404 /* Mad based variable bit allocation + QP calculation with a new quadratic method */
413 /* Mad based variable bit allocation */
432 prev_mad = pMP->pRDSamples[i][0].mad;
443 prev_mad = pMP->pRDSamples[i][0].mad;
453 if (pMP->pRDSamples[i][0].mad != 0 &&
454 AVC_ABS(prev_mad - curr_mad) > AVC_ABS(pMP->pRDSamples[i][0].mad - curr_mad)
    [all...]
avcenc_int.h 157 OsclFloat mad; member in struct:tagRDInfo
169 OsclFloat mad; /* mad for current frame, = video->avgMAD*/ member in struct:tagMultiPass
199 OsclFloat aver_mad; /* so-far average mad could replace sum_mad */
200 OsclFloat aver_mad_prev; /* previous average mad */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.cpp 243 /* collect the necessary data: target bits, actual bits, mad and QP */
247 pMP->mad = video->sumMAD / (float)currVol->nTotalMB;
248 if (pMP->mad < MAD_MIN) pMP->mad = MAD_MIN; /* MAD_MIN is defined as 1 in mp4def.h */
264 /* Purpose : Save QP, actual_bits, mad and R_D of the current iteration */
276 pMP->pRDSamples[pMP->framePos][counter_samples].mad = pMP->mad;
277 pMP->pRDSamples[pMP->framePos][counter_samples].R_D = (float)(pMP->actual_bits / (pMP->mad + 0.0001));
497 /* Keep the current average mad */
522 /* Purpose : quadratic bit allocation model: T(n) = C*sqrt(mad(n)/aver_mad(n-1)) *
    [all...]
mp4lib_int.h 256 float mad; member in struct:tagRDInfo
268 float mad; /* mad for current frame, = video->avgMAD*/ member in struct:tagMultiPass
298 float aver_mad; /* so-far average mad could replace sum_mad */
299 float aver_mad_prev; /* previous average mad */
357 float sumMAD; /* SAD/MAD for frame */
  /frameworks/rs/scriptc/
rs_cl.rsh 557 extern float __attribute__((overloadable)) mad(float a, float b, float c);
558 FN_FUNC_FN_FN_FN(mad)
  /frameworks/support/renderscript/v8/rs_support/scriptc/
rs_cl.rsh 557 extern float __attribute__((overloadable)) mad(float a, float b, float c);
558 FN_FUNC_FN_FN_FN(mad)
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
rs_cl.c 467 extern float __attribute__((overloadable)) mad(float a, float b, float c) { function
470 extern float2 __attribute__((overloadable)) mad(float2 a, float2 b, float2 c) { function
473 extern float3 __attribute__((overloadable)) mad(float3 a, float3 b, float3 c) { function
476 extern float4 __attribute__((overloadable)) mad(float4 a, float4 b, float4 c) { function
    [all...]
  /prebuilts/sdk/renderscript/include/
rs_cl.rsh 490 extern float __attribute__((overloadable)) mad(float a, float b, float c);
491 FN_FUNC_FN_FN_FN(mad)
  /external/chromium/net/base/
effective_tld_names.cc     [all...]

Completed in 455 milliseconds