/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
dct16x16_test.cc | 34 static int round(double x) { function in namespace:__anon39671 320 << "Error: 16x16 FHT/IHT has an individual round trip error > 1"; 323 << "Error: 16x16 FHT/IHT has average round trip error > 1 per block"; 401 coeff[j] = round(out_r[j]);
|
/libcore/luni/src/main/java/java/lang/ |
HexStringParser.java | 217 round(); method 226 round(); method 256 private void round() { method in class:HexStringParser
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/ |
tgmath.h | 157 #define round(x) __TGMATH_REAL(x, round) macro
|
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/ |
tgmath.h | 168 #define round(x) __TGMATH_REAL(x, round) macro
|
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/ |
tgmath.h | 168 #define round(x) __TGMATH_REAL(x, round) macro
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/ |
tgmath.h | 157 #define round(x) __TGMATH_REAL(x, round) macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/ |
tgmath.h | 354 /* Round X to integral valuein floating-point format using current 358 /* Round X to nearest integral value, rounding halfway cases away from 360 #define round(Val) __TGMATH_UNARY_REAL_ONLY (Val, round) macro 362 /* Round X to the integral value in floating-point format nearest but 372 /* Round X to nearest integral value according to current rounding 377 /* Round X to nearest integral value, rounding halfway cases away from
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
tgmath.h | 354 /* Round X to integral valuein floating-point format using current 358 /* Round X to nearest integral value, rounding halfway cases away from 360 #define round(Val) __TGMATH_UNARY_REAL_ONLY (Val, round) macro 362 /* Round X to the integral value in floating-point format nearest but 372 /* Round X to nearest integral value according to current rounding 377 /* Round X to nearest integral value, rounding halfway cases away from
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ |
tgmath.h | 157 #define round(x) __TGMATH_REAL(x, round) macro
|
/system/core/libpixelflinger/codeflinger/ |
texturing.cpp | 804 const int round = 0; local 837 if (round) 852 if (round) 866 if (round) 900 const int round = 0; local 998 const int round = 0; local [all...] |
/system/core/libpixelflinger/ |
pixelflinger.cpp | 230 // it is very important to round the iterated value here because 234 const int32_t round = 0x8000; local 235 c->shade.r0 = grad[ 0] + round; 238 c->shade.g0 = grad[ 3] + round; 241 c->shade.b0 = grad[ 6] + round; 244 c->shade.a0 = grad[ 9] + round; 254 const uint32_t round = 0x8000; local 255 c->shade.z0 = grad[0] + round;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
Tnaf.java | 166 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/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
jstemplate_compiled.js | 68 return round(numPixels) + "px"; 531 var round = Math.round; variable
|
/external/chromium_org/third_party/icu/source/i18n/ |
decContext.h | 36 /* round -- must be one of the enumerated rounding modes */ 75 DEC_ROUND_CEILING, /* round towards +infinity */ 76 DEC_ROUND_UP, /* round away from 0 */ 80 DEC_ROUND_DOWN, /* round towards 0 (truncate) */ 81 DEC_ROUND_FLOOR, /* round towards -infinity */ 82 DEC_ROUND_05UP, /* round for reround */ 91 enum rounding round; /* rounding mode */ member in struct:__anon15805
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
block.h | 47 short *round; member in struct:block
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/ |
vp8_cx_iface.c | 884 vpx_codec_pts_t round, delta; local 889 round = (vpx_codec_pts_t)10000000 894 (dst_time_stamp * ctx->cfg.g_timebase.den + round) 897 ((delta * ctx->cfg.g_timebase.den + round) 914 * ctx->cfg.g_timebase.den + round) [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
vp9_block.h | 71 int16_t *round; member in struct:macroblock_plane
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_math.h | 129 round(double x) function 278 * Round float to nearest int.
|
/external/chromium_org/third_party/skia/tests/ |
MathTest.cpp | 248 assert_float_equal(reporter, "round", x, ix, iix); 298 // round (down) large ints the same as IEEE... 336 int round = (int)floorf(s + 0.5f); local 342 REPORTER_ASSERT(reporter, iround == round);
|
/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/ |
Util.java | 391 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/icu/icu4c/source/i18n/ |
decContext.h | 37 /* round -- must be one of the enumerated rounding modes */ 76 DEC_ROUND_CEILING, /* round towards +infinity */ 77 DEC_ROUND_UP, /* round away from 0 */ 81 DEC_ROUND_DOWN, /* round towards 0 (truncate) */ 82 DEC_ROUND_FLOOR, /* round towards -infinity */ 83 DEC_ROUND_05UP, /* round for reround */ 92 enum rounding round; /* rounding mode */ member in struct:__anon25703
|
decimfmt.cpp | 77 * On certain platforms, round is a macro defined in math.h 81 #ifdef round 82 #undef round macro [all...] |
/external/iproute2/ip/ |
ipaddress.c | 877 int round = 0; local 884 while ((max_flush_loops == 0) || (round < max_flush_loops)) { 911 if (round == 0) 914 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":""); 919 round++; 924 printf("\n*** Round %d, deleting %d addresses ***\n", round, filter.flushed); 929 * want to flush only a single round. Otherwise, we'l [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
block.h | 47 short *round; member in struct:block
|
/external/libvpx/libvpx/vp8/ |
vp8_cx_iface.c | 884 vpx_codec_pts_t round, delta; local 889 round = (vpx_codec_pts_t)1000000 894 (dst_time_stamp * ctx->cfg.g_timebase.den + round) 897 ((delta * ctx->cfg.g_timebase.den + round) 914 * ctx->cfg.g_timebase.den + round) [all...] |