Searched defs:round (Results 1 - 20 of 20) sorted by relevance

/external/srec/audio/AudioIn/UNIX/include/
H A Dfilter.h45 typeAccum round; // used for roundoff member in struct:fir_struct
/external/skia/include/core/
H A DSkSize.h86 SkISize round() const { function in struct:SkSize
/external/opencore/codecs_v2/video/m4v_h263/enc/src/
H A Ddct.cpp43 Int round; local
54 round = 1 << (FDCT_SHIFT - 1);
119 k1 = mla724(k12, k5, round);
120 k0 = mla724(k12, k2, round);
137 k1 = mla392(k0, k14, round);
214 k1 = mla724(k12, k5, round);
215 k0 = mla724(k12, k2, round);
232 k1 = mla392(k0, k14, round);
272 Int round; local
283 round
478 Int round; local
657 Int round; local
868 Int round; local
1055 Int round; local
[all...]
H A Ddct_inline.h40 __inline int32 mla392(int32 k0, int32 k14, int32 round) argument
46 k1 = k0 * 392 + round;
125 __inline int32 mla392(int32 k0, int32 k14, int32 round) argument
131 smlabt k1, k0, k14, round
189 __inline int32 mla392(int32 k0, int32 k14, int32 round) argument
196 mla k1, k0, k1, round
287 __inline int32 mla392(int32 k0, int32 k14, int32 round) argument
292 register int32 cc = (int32)round;
H A Dfastquant_inline.h31 __inline int32 aan_scale(int32 q_value, int32 coeff, int32 round, int32 QPdiv2) argument
33 q_value = coeff * q_value + round;
84 __inline int32 smlabb(int32 q_value, int32 coeff, int32 round) argument
86 q_value = coeff * q_value + round;
175 int32 round, int32 QPdiv2)
179 smlabb q_value, coeff, q_value, round
222 __inline int32 smlabb(int32 q_value, int32 coeff, int32 round) argument
226 smlabb q_value, coeff, q_value, round
270 int32 round, int32 QPdiv2)
274 mla q_value, coeff, q_value, round
174 aan_scale(int32 q_value, int32 coeff, int32 round, int32 QPdiv2) argument
269 aan_scale(int32 q_value, int32 coeff, int32 round, int32 QPdiv2) argument
318 smlabb(int32 q_value, int32 coeff, int32 round) argument
429 aan_scale(int32 q_value, int32 coeff, int32 round, int32 QPdiv2) argument
511 smlabb(int32 q_value, int32 coeff, int32 round) argument
[all...]
H A Dfastquant.cpp159 Int round = 1 << 15; local
224 coeff = aan_scale(q_value, coeff, round, QPdiv2);
278 Int round = 1 << 15; local
326 q_value = round + (coeff << 12);
383 q_value = smlabb(q_value, coeff, round);
553 Int round = 1 << 15; local
583 q_value = smlabb(q_value, coeff, round);
682 Int round = 1 << 15; local
708 q_value = round + (coeff << 12);
754 /* q_value = coeff*q_value + round */
[all...]
/external/dropbear/libtomcrypt/src/ciphers/safer/
H A Dsafer.c258 unsigned int round; local
268 if (SAFER_MAX_NOF_ROUNDS < (round = *key)) round = SAFER_MAX_NOF_ROUNDS;
269 while(round-- > 0)
312 unsigned int round; local
322 if (SAFER_MAX_NOF_ROUNDS < (round = *key)) round = SAFER_MAX_NOF_ROUNDS;
323 key += SAFER_BLOCK_LEN * (1 + 2 * round);
326 while (round--)
/external/icu4c/i18n/
H A Ddigitlst.cpp459 round(maximumDigits);
516 // If we round 0.0009 to 3 fractional digits, then we have to
523 // Handle an underflow to zero when we round something like
532 // Round up if appropriate. Do NOT round in the special
535 round(fixedPoint ? (maximumDigits + fDecimalAt) : maximumDigits);
552 DigitList::round(int32_t maximumDigits) function in class:DigitList
H A Ddecimfmt.cpp1112 * round(number / fRoundingDouble, fRoundingMode, isNegative);
1145 // If we did not round in binary space, round in decimal space
1162 double DecimalFormat::round(double a, ERoundingMode mode, UBool isNegative) { function in class:DecimalFormat
4206 * of zero, which allows proper round-trip patterns. We don't want
/external/iproute2/ip/
H A Dipneigh.c382 int round = 0; local
390 while (round < MAX_ROUNDS) {
402 if (round == 0)
405 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":"");
410 round++;
414 printf("\n*** Round %d, deleting %d entries ***\n", round, filter.flushed);
H A Dipaddress.c716 int round = 0; local
723 while (round < MAX_ROUNDS) {
755 if (round == 0)
758 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":"");
763 round++;
768 printf("\n*** Round %d, deleting %d addresses ***\n", round, filter.flushed);
H A Diproute.c1202 int round = 0; local
1232 if (round == 0 && (!filter.cloned || do_ipv6 == AF_INET6))
1235 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":"");
1240 round++;
1251 printf("\n*** Round %d, deleting %d entries ***\n", round, filter.flushed);
/external/qemu/
H A Dd3des.c325 register int round; local
347 for( round = 0; round < 8; round++ ) {
/external/webkit/JavaScriptCore/wtf/
H A DMathExtras.h102 static double round(double num) function
116 inline long long llround(double num) { return static_cast<long long>(round(num)); }
118 inline long lround(double num) { return static_cast<long>(round(num)); }
/external/webkit/WebCore/platform/graphics/android/
H A DImageAndroid.cpp158 static void round(SkIRect* dst, const WebCore::FloatRect& src) function in namespace:WebCore
284 round(&srcR, srcRect);
/external/skia/tests/
H A DMathTest.cpp90 assert_float_equal(reporter, "round", x, ix, iix);
140 // round (down) large ints the same as IEEE...
156 int round = (int)floorf(s + 0.5f); local
162 REPORTER_ASSERT(reporter, iround == round);
/external/clearsilver/util/
H A Dsnprintf.c559 static long round (LDOUBLE value) function
621 fracpart = round ((pow10 (max)) * (ufvalue - intpart));
/external/webkit/WebCore/xml/
H A DXPathFunctions.cpp230 static double round(double);
503 long pos = static_cast<long>(FunRound::round(arg(1)->evaluate().toNumber()));
510 len = static_cast<long>(FunRound::round(doubleLen));
654 double FunRound::round(double val) function in class:WebCore::XPath::FunRound
667 return round(arg(0)->evaluate().toNumber());
695 { "round", { &createFunRound, 1 } },
/external/freetype/src/autofit/
H A Daflatin.c205 FT_Bool round = 0; local
274 /* now check whether the point belongs to a straight or round */
314 /* now, set the `round' flag depending on the segment's kind */
315 round = FT_BOOL(
319 AF_LOG(( "%c ", round ? 'r' : 'f' ));
322 if ( round )
762 /* a segment is round if either its first or last point */
1132 FT_Int is_round = 0; /* does it contain round segments? */
1211 /* set the round/straight flags */
1585 /* in the case of vertical hinting, always round */
[all...]
H A Daflatin2.c210 FT_Bool round; local
279 /* now check whether the point belongs to a straight or round */
319 /* now, set the `round' flag depending on the segment's kind */
320 round = FT_BOOL(
324 AF_LOG(( "%c ", round ? 'r' : 'f' ));
327 if ( round )
787 /* a segment is round if it doesn't have successive */
1205 FT_Int is_round = 0; /* does it contain round segments? */
1284 /* set the round/straight flags */
1670 /* in the case of vertical hinting, always round */
[all...]

Completed in 232 milliseconds