Searched defs:round (Results 26 - 50 of 114) sorted by relevance

12345

/external/libvpx/libvpx/test/
H A Ddct32x32_test.cc30 static int round(double x) { function in namespace:__anon24779
133 << "Error: 32x32 FDCT/IDCT has an individual round-trip error > 1";
136 << "Error: 32x32 FDCT/IDCT has average round-trip error > 1 per block";
231 coeff[j] = round(out_r[j]);
/external/regex-re2/util/
H A Dbenchmark.cc83 static int round(int n) { function
113 n = round(n);
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dtransform.c130 factQ19 = 16921; // 0.5/sqrt(240) in Q19 is round(.5/sqrt(240)*(2^19)) = 16921
158 WebRtc_Word32 round = WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)1, -sh-1); local
160 inre1Q9[k] = (WebRtc_Word16) WEBRTC_SPL_RSHIFT_W32(tmpreQ16[k]+round, -sh); //Q(16+sh)
161 inre2Q9[k] = (WebRtc_Word16) WEBRTC_SPL_RSHIFT_W32(tmpimQ16[k]+round, -sh); //Q(16+sh)
253 WebRtc_Word32 round = WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)1, -sh-1); local
255 inreQ7[k] = (WebRtc_Word16) WEBRTC_SPL_RSHIFT_W32(outre1Q16[k]+round, -sh); //Q(16+sh)
256 inimQ7[k] = (WebRtc_Word16) WEBRTC_SPL_RSHIFT_W32(outre2Q16[k]+round, -sh); //Q(16+sh)
285 factQ11 = 31727; // sqrt(240) in Q11 is round(15.49193338482967*2048) = 31727
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring.h80 #define round(x) ((x)>=0?(long)((x)+0.5):(long)((x)-0.5)) macro
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DTnaf.java166 public static ZTauElement round(SimpleBigDecimal lambda0, method in class:Tnaf
181 BigInteger f0 = lambda0.round();
182 BigInteger f1 = lambda1.round();
299 // round up
615 ZTauElement q = round(lambda0, lambda1, mu);
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
H A DarmSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S69 #define round r3 define
H A DomxSP_FFTFwd_RToCCS_F32_Sfs_s.S76 #define round r3 define
H A DomxSP_FFTInv_CCSToR_F32_Sfs_s.S72 #define round r3 define
198 mov round, #1
199 vmov.f32 fone, round
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DarmSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S75 #define round r3 define
H A DarmSP_FFTInv_CCSToR_S32_preTwiddleRadix2_unsafe_s.S82 #define round r3 define
H A DomxSP_FFTFwd_CToC_SC16_Sfs_s.S97 #define round r3 define
H A DomxSP_FFTFwd_CToC_SC32_Sfs_s.S95 #define round r3 define
H A DomxSP_FFTInv_CToC_SC16_Sfs_s.S97 #define round r3 define
H A DarmSP_FFTInv_CCSToR_S16_preTwiddleRadix2_unsafe_s.S60 #define round r3 define
H A DomxSP_FFTInv_CCSToR_F32_Sfs_s.S84 #define round r3 define
H A DomxSP_FFTInv_CCSToR_S16_Sfs_s.S75 #define round r3 define
H A DomxSP_FFTInv_CCSToR_S32_Sfs_s.S101 #define round r3 define
/external/deqp/framework/common/
H A DtcuFloatFormat.cpp141 double FloatFormat::round (double d, bool upward) const function in class:tcu::FloatFormat
192 ret |= clampValue(round(tmp.lo(), true)) | clampValue(round(tmp.hi(), false));
210 return round(d, upward);
343 oss << "round(" << arg << ", false)";
344 check(oss.str(), m_fmt->round(arg, false), refDown);
348 oss << "round(" << arg << ", true)";
349 check(oss.str(), m_fmt->round(arg, true), refUp);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
H A DUtil.java391 public static double round(double value) { method in class:Util
392 return Math.round(value * 10000) / 10000.0;
398 public static double round(double value, int precision) { method in class:Util
407 return Math.round(value * factor) / factor;
/external/iproute2/ip/
H A Dipneigh.c387 int round = 0; local
395 while (round < MAX_ROUNDS) {
407 if (round == 0)
410 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":"");
415 round++;
419 printf("\n*** Round %d, deleting %d entries ***\n", round, filter.flushed);
/external/qemu/ui/
H A Dd3des.c325 register int round; local
347 for( round = 0; round < 8; round++ ) {
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.cpp229 static double round(double);
518 long pos = static_cast<long>(FunRound::round(doublePos));
525 len = static_cast<long>(FunRound::round(doubleLen));
669 double FunRound::round(double val) function in class:blink::XPath::FunRound
682 return round(arg(0)->evaluate(context).toNumber());
710 { "round", { &createFunRound, 1 } },
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMathExtras.h82 static double round(double num) function
96 inline long long llround(double num) { return static_cast<long long>(round(num)); }
98 inline long lround(double num) { return static_cast<long>(round(num)); }
188 double rounded = round(flt);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddcfmtest.cpp377 const UnicodeString &round, // rounding mode
394 if (round=="ceiling") {
396 } else if (round=="floor") {
398 } else if (round=="down") {
400 } else if (round=="up") {
402 } else if (round=="halfeven") {
404 } else if (round=="halfdown") {
406 } else if (round=="halfup") {
408 } else if (round=="default") {
410 } else if (round
375 execFormatTest(int32_t lineNum, const UnicodeString &pattern, const UnicodeString &round, const UnicodeString &input, const UnicodeString &expected, EFormatInputType inType, UErrorCode &status) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_block.h42 int16_t *round; member in struct:macroblock_plane

Completed in 741 milliseconds

12345