/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
armVCM4P2_FillVLCBuffer.c | 42 * levelPlus = sign(level)*[abs(level) - LMAX] 78 OMX_U32 tempRun = run, sign = 0; local 115 sign = 1; 133 armPackBits(ppBitStream, pBitOffset, (OMX_U32)sign, 1); 137 if (sign)
|
armVCM4P2_GetVLCBits.c | 103 OMX_U8 sign = 0; local 124 /* a signed value and the sign and the unsigned value for */ 128 sign = (storeLevel & 0x80); 129 if(sign==0x80) 132 sign=1; 136 armRetDataErrIf( storeLevel == 0 || sign*storeLevel == 128 , OMX_Sts_Err); /* Invalid FLC */ 142 sign, 191 sign = (OMX_U8) armGetBits(ppBitStream, pBitOffset, 1); 228 sign = (OMX_U8) armGetBits(ppBitStream, pBitOffset, 1); 244 sign, [all...] |
/external/compiler-rt/lib/ |
fixdfsi.c | 25 // Break a into sign, exponent, significand 28 const int sign = aRep & signBit ? -1 : 1; local 34 return sign * (significand >> (significandBits - exponent)); 47 return sign * (significand << (exponent - significandBits));
|
fixsfsi.c | 23 // Break a into sign, exponent, significand 26 const int sign = aRep & signBit ? -1 : 1; local 32 return sign * (significand >> (significandBits - exponent)); 45 return sign * (significand << (exponent - significandBits));
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
LVM_Polynomial.c | 49 LVM_INT32 Y,A,XTemp,Temp,sign; local 57 sign=Temp; 60 Y+=((*pCoefficients)*sign); 62 sign*=Temp;
|
/external/speex/libspeex/ |
vq.c | 109 /*Finds the indices of the n-best entries in a codebook with sign*/ 112 int i,j,k, sign, used; local 121 sign=0; 125 sign=1; 142 if (sign)
|
/frameworks/av/media/libstagefright/codecs/aacdec/ |
pv_sine.cpp | 121 Int32 sign = 0; local 126 sign = 1; 145 if (sign) 161 z = -z; /* sign does not play a role in cosine */
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
d1035pf.cpp | 94 represented by sign+position 130 Word16 index[], // (i) : index of 10 pulses (sign+position) 134 Word16 i, j, pos1, pos2, sign, tmp; 157 sign = 4096; // +1.0 161 sign = -4096; // -1.0 164 cod[pos1] = sign; 176 sign = negate (sign); 178 cod[pos2] = add (cod[pos2], sign); 208 Word16 index[], /* (i) : index of 10 pulses (sign+position) * 213 Word16 sign, tmp; local [all...] |
/bionic/libm/alpha/ |
_fpmath.h | 35 unsigned int sign :1; member in struct:IEEEl2bits::__anon652
|
/bionic/libm/amd64/ |
_fpmath.h | 35 unsigned int sign :1; member in struct:IEEEl2bits::__anon653
|
/bionic/libm/arm/ |
_fpmath.h | 36 unsigned int sign :1; member in struct:IEEEl2bits::__anon656 38 unsigned int sign :1;
|
/bionic/libm/i386/ |
_fpmath.h | 35 unsigned int sign :1; member in struct:IEEEl2bits::__anon657
|
/bionic/libm/ia64/ |
_fpmath.h | 39 unsigned int sign :1; member in struct:IEEEl2bits::__anon659 43 unsigned int sign :1;
|
/bionic/libm/powerpc/ |
_fpmath.h | 32 unsigned int sign :1; member in struct:IEEEl2bits::__anon664
|
/bionic/libm/sh/ |
_fpmath.h | 40 unsigned int sign :1; member in struct:IEEEl2bits::__anon666 42 unsigned int sign :1;
|
/bionic/libm/sparc64/ |
_fpmath.h | 33 unsigned int sign :1; member in struct:IEEEl2bits::__anon667
|
/bionic/libm/src/ |
e_sqrtf.c | 29 int32_t sign = (int)0x80000000; local 42 if((ix&(~sign))==0) return x;/* sqrt(+-0) = +-0 */
|
fpmath.h | 39 unsigned int sign :1; member in struct:IEEEf2bits::__anon668 41 unsigned int sign :1; 58 unsigned int sign :1; member in struct:IEEEd2bits::__anon669 64 unsigned int sign :1; 66 unsigned int sign :1;
|
s_cbrtf.c | 43 u_int32_t sign; local 47 sign=hx&0x80000000; /* sign= sign(x) */ 48 hx ^=sign; 58 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2)); 60 SET_FLOAT_WORD(t,sign|(hx/3+B1));
|
/external/chromium/base/third_party/dmg_fp/ |
g_fmt.cc | 34 int decpt, j, sign; local 45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se); 46 if (sign)
|
/external/fdlibm/ |
e_sqrt.c | 99 int sign = (int)0x80000000; local 113 if(((ix0&(~sign))|ix1)==0) return x;/* ieee_sqrt(+-0) = +-0 */ 132 ix0 += ix0 + ((ix1&sign)>>31); 138 ix0 += ix0 + ((ix1&sign)>>31); 150 ix0 += ix0 + ((ix1&sign)>>31); 155 r = sign; 161 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1; 167 ix0 += ix0 + ((ix1&sign)>>31) [all...] |
s_cbrt.c | 48 unsigned sign; local 52 sign=hx&0x80000000; /* sign= sign(x) */ 53 hx ^=sign; 84 /* retore the sign bit */ 85 __HI(t) |= sign;
|
/external/freetype/src/psaux/ |
psconv.c | 79 FT_Bool sign = 0; local 87 sign = FT_BOOL( *p == '-' ); 110 if ( sign ) 150 FT_Bool sign = 0; local 158 sign = FT_BOOL( *p == '-' ); 228 if ( sign )
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/ |
MouseAxisTrigger.java | 73 String sign = negative ? "Negative" : "Positive"; local 75 case MouseInput.AXIS_X: return "Mouse X Axis " + sign; 76 case MouseInput.AXIS_Y: return "Mouse Y Axis " + sign; 77 case MouseInput.AXIS_WHEEL: return "Mouse Wheel " + sign;
|
/external/opencv/cv/src/ |
_cvgeom.h | 75 char sign; /* sign of the triangle */ member in struct:_CvTrianAttr
|