Searched refs:sign (Results 1 - 25 of 72) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dd1035pf.cpp94 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
213 Word16 sign, tmp; local
[all...]
H A Dd2_11pf.h84 Word16 sign, /* i : signs of 2 pulses. */
H A Dd3_14pf.h105 Word16 sign, /* i : signs of 3 pulses. */
H A Dd4_17pf.h106 Word16 sign, /* i : signs of 4 pulses. */
H A Dd2_11pf.cpp94 sign -- Word16 -- signs of 2 pulses.
151 Word16 sign, /* i : signs of 2 pulses. */
203 i = sign & 1;
220 sign >>= 1;
150 decode_2i40_11bits( Word16 sign, Word16 index, Word16 cod[] ) argument
H A Dd2_9pf.h108 Word16 sign, /* i : signs of 2 pulses. */
H A Dd2_9pf.cpp118 sign -- Word16 -- signs of 2 pulses.
177 Word16 sign, /* i : signs of 2 pulses. */
227 i = sign & 0x1;
244 sign >>= 1;
175 decode_2i40_9bits( Word16 subNr, Word16 sign, Word16 index, Word16 cod[], Flag *pOverflow ) argument
H A Dd3_14pf.cpp100 sign -- Word16 -- signs of 3 pulses.
157 Word16 sign, /* i : signs of 3 pulses. */
211 i = sign & 1;
228 sign >>= 1;
156 decode_3i40_14bits( Word16 sign, Word16 index, Word16 cod[] ) argument
H A Dd4_17pf.cpp120 sign -- Word16 -- signs of 3 pulses.
177 Word16 sign, /* i : signs of 4 pulses. */
250 i = sign & 0x1;
267 sign >>= 1;
176 decode_4i40_17bits( Word16 sign, Word16 index, Word16 cod[] ) argument
H A Dd8_31pf.cpp80 /* define values/representation for output codevector and sign */
276 indx[] -- array of type Word16 -- position and sign of
343 Word16 indx[], /* i : position and sign of 8 pulses (compressed) */
500 index array of type Word16 -- index of 8 pulses (sign+position)
559 Word16 index[], /* i : index of 8 pulses (sign+position) */
568 Word16 sign; local
594 sign = POS_CODE; /* +1.0 */
598 sign = -NEG_CODE; /* -1.0 */
603 cod[pos1] = sign; /* avoid buffer overflow */
614 sign
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcor_h.h83 Word16 sign[], /* (i) : sign of d[n] */
H A Dset_sign.h105 Word16 sign[], /* o : sign of dn[] */
113 Word16 sign[], /* o : sign of d[n] */
H A Dc2_11pf.h110 Word16 * sign, /* o : Signs of 2 pulses */
H A Dc2_9pf.h111 Word16 * sign, /* o : Signs of 2 pulses */
H A Dc3_14pf.h111 Word16 * sign, /* (o) : Signs of 3 pulses */
H A Dc4_17pf.h110 Word16 * sign, /* (o) : Signs of 4 pulses */
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DDuration.java31 public int sign; // 1 or -1 field in class:Duration
40 sign = 1;
49 sign = 1;
66 sign = -1;
131 cal.add(Calendar.DAY_OF_MONTH, sign*weeks*7);
132 cal.add(Calendar.DAY_OF_MONTH, sign*days);
133 cal.add(Calendar.HOUR, sign*hours);
134 cal.add(Calendar.MINUTE, sign*minutes);
135 cal.add(Calendar.SECOND, sign*seconds);
143 long factor = 1000 * sign;
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DLVM_Polynomial.c49 LVM_INT32 Y,A,XTemp,Temp,sign; local
57 sign=Temp;
60 Y+=((*pCoefficients)*sign);
62 sign*=Temp;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_FillVLDBuffer.c28 * and sign, also updates the index
33 * [in] sign Flag indicating the sign of level
50 OMX_U8 sign,
61 /* Store the level depending on the sign*/
62 if (sign == 1)
46 armVCM4P2_FillVLDBuffer( OMX_U32 storeRun, OMX_S16 * pDst, OMX_S16 storeLevel, OMX_U8 sign, OMX_U8 last, OMX_U8 * pIndex, const OMX_U8 * pZigzagTable ) argument
H A DarmVCM4P2_GetVLCBits.c103 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...]
H A DarmVCM4P2_FillVLCBuffer.c42 * 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)
/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java68 * plus the minus sign (only at the beginning) and/or decimal point
71 public DigitsKeyListener(boolean sign, boolean decimal) { argument
72 mSign = sign;
75 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
88 * plus the minus sign (only at the beginning) and/or decimal point
91 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) { argument
92 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
97 sInstance[kind] = new DigitsKeyListener(sign, decimal);
143 int sign = -1;
155 sign
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/util/
H A DXmlUtils_Delegate.java42 int sign = 1;
48 sign = -1;
72 return ((int)Long.parseLong(nm.substring(index), base)) * sign;
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbit_cnt.c500 Word16 sign, signLength; local
533 sign=0;
539 sign = sign << 1;
542 sign|=1;
550 sign = sign << 1;
553 sign|=1;
561 sign = sign <<
[all...]
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DDurationTest.java27 int sign, int weeks, int days, int hours,
33 assertEquals("Duration sign is not equal for " + str, sign, duration.sign);
26 verifyDuration(String str, int sign, int weeks, int days, int hours, int minutes, int seconds) argument

Completed in 2732 milliseconds

123