Searched refs:ABS (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_deblocking.c347 else if ( (ABS(mv1 - mv2) >= 4) || (ABS(mv3 - mv4) >= 4) ||
375 if ( (ABS(tmp1 - tmp2) >= 4) || (ABS(tmp3 - tmp4) >= 4) ||
403 (ABS(mb1->mv[ind1].hor - mb2->mv[ind2].hor) >= 4) ||
404 (ABS(mb1->mv[ind1].ver - mb2->mv[ind2].ver) >= 4))
437 else if ((ABS(mb1->mv[0].hor - mb2->mv[10].hor) >= 4) ||
438 (ABS(mb1->mv[0].ver - mb2->mv[10].ver) >= 4) ||
449 else if ((ABS(mb1->mv[1].hor - mb2->mv[11].hor) >= 4) ||
450 (ABS(mb
[all...]
H A Dh264bsd_util.h132 #define ABS(a) (((a) < 0) ? -(a) : (a)) macro
/frameworks/native/libs/utils/
H A DLinearTransform.cpp26 template<class T> static inline T ABS(T x) { return (x < 0) ? -x : x; } function in namespace:android
141 invert_frac ? D : ABS(N),
142 invert_frac ? ABS(N) : D,
148 // underflow unless ABS(basis2) is large enough to pull us back into the
157 if (ABS(basis2) <= static_cast<int64_t>(scaled & INT64_MAX))
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbit_cnt.c73 t0=ABS(t0);
74 t1=ABS(t1);
75 t2=ABS(t2);
76 t3=ABS(t3);
146 t0=ABS(t0);
147 t1=ABS(t1);
148 t2=ABS(t2);
149 t3=ABS(t3);
214 t0=ABS(t0);
215 t1=ABS(t
[all...]
/frameworks/base/tools/aapt/
H A DImages.cpp801 #define ABS(a) ((a)<0?-(a):(a)) macro
837 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation);
838 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation);
839 maxGrayDeviation = MAX(ABS(bb - rr), maxGrayDeviation);
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dbasic_op.h33 #define ABS(a) ((a) >= 0) ? (a) : (-(a)) macro

Completed in 138 milliseconds