HomeSort by relevance Sort by last modified time
    Searched refs:round (Results 1 - 25 of 933) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cast/
round.fail.cpp 13 // round
17 // round(const duration<Rep, Period>& d);
25 std::chrono::round<int>(std::chrono::milliseconds(3));
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestRound.rs 24 return round(inV);
28 return round(inV);
32 return round(inV);
36 return round(inV);
40 return round(inV);
44 return round(inV);
48 return round(inV);
52 return round(inV);
  /external/libcxx/test/std/utilities/time/time.point/time.point.cast/
round.fail.cpp 13 // round
17 // round(const time_point<Clock, Duration>& t);
25 std::chrono::round<int>(std::chrono::system_clock::now());
  /external/tensorflow/tensorflow/core/kernels/
cwise_op_gpu_round.cu.cc 22 DEFINE_UNARY5(round, Eigen::half, float, double, int32, int64);
cwise_op_round.cc 19 REGISTER5(UnaryOp, CPU, "Round", functor::round, Eigen::half, float, double,
23 REGISTER2(UnaryOp, SYCL, "Round", functor::round, float, double);
27 REGISTER5(UnaryOp, GPU, "Round", functor::round, Eigen::half, float, double,
  /external/tensorflow/tensorflow/lite/kernels/internal/
round.h 28 return ::round(x);
30 inline double TfLiteRound(const double x) { return ::round(x); }
34 return std::round(x);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_llround.c 5 #define roundit round
s_round.c 38 round(double x) function
61 __weak_reference(round, roundl);
  /external/eigen/doc/snippets/
Cwise_round.cpp 3 cout << round(v) << endl;
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.h 24 void vpx_fdct32(const tran_high_t *input, tran_high_t *output, int round);
  /external/libvpx/libvpx/vpx_ports/
msvc.h 21 #if _MSC_VER < 1800 // VS2013 provides round
23 static INLINE double round(double x) { function
  /external/libvpx/libvpx/vpx_dsp/x86/
quantize_avx.c 34 __m128i zbin, round, quant, dequant, shift; local
47 load_b_values(zbin_ptr, &zbin, round_ptr, &round, quant_ptr, &quant,
72 round = _mm_unpackhi_epi64(round, round);
77 calculate_qcoeff(&qcoeff0, round, quant, shift);
78 round = _mm_unpackhi_epi64(round, round);
81 calculate_qcoeff(&qcoeff1, round, quant, shift)
160 __m128i zbin, round, quant, dequant, shift; local
    [all...]
quantize_ssse3.c 30 __m128i zbin, round, quant, dequant, shift; local
40 load_b_values(zbin_ptr, &zbin, round_ptr, &round, quant_ptr, &quant,
54 calculate_qcoeff(&qcoeff0, round, quant, shift);
55 round = _mm_unpackhi_epi64(round, round);
58 calculate_qcoeff(&qcoeff1, round, quant, shift);
88 calculate_qcoeff(&qcoeff0, round, quant, shift);
89 calculate_qcoeff(&qcoeff1, round, quant, shift);
125 __m128i zbin, round, quant, dequant, shift local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/client/lib/
prng.cc 58 // Performs a single round of the Threefry2x32 algorithm, with a rotation
60 auto round = [](ThreeFry2x32State v, int rotation) { local
69 x = round(x, rotations[0]);
70 x = round(x, rotations[1]);
71 x = round(x, rotations[2]);
72 x = round(x, rotations[3]);
76 x = round(x, rotations[4]);
77 x = round(x, rotations[5]);
78 x = round(x, rotations[6]);
79 x = round(x, rotations[7])
    [all...]
  /external/skia/src/core/
SkTDynamicHash.h 92 for (int round = 0; round < fCapacity; round++) {
101 index = this->nextIndex(index, round);
146 for (int round = 0; round < fCapacity; round++) {
150 return round;
152 index = this->nextIndex(index, round);
210 for (int round = 0; round < fCapacity; round++)
    [all...]
  /external/skqp/src/core/
SkTDynamicHash.h 92 for (int round = 0; round < fCapacity; round++) {
101 index = this->nextIndex(index, round);
146 for (int round = 0; round < fCapacity; round++) {
150 return round;
152 index = this->nextIndex(index, round);
210 for (int round = 0; round < fCapacity; round++)
    [all...]
  /external/tensorflow/tensorflow/tools/gcs_test/python/
gcs_smoke.py 58 starttime_ms = int(round(time.time() * 1000))
62 elapsed_ms = int(round(time.time() * 1000)) - starttime_ms
71 starttime_ms = int(round(time.time() * 1000))
77 elapsed_ms = int(round(time.time() * 1000)) - starttime_ms
94 starttime_ms = int(round(time.time() * 1000))
97 elapsed_ms = int(round(time.time() * 1000)) - starttime_ms
108 starttime_ms = int(round(time.time() * 1000))
111 elapsed_ms = int(round(time.time() * 1000)) - starttime_ms
119 starttime_ms = int(round(time.time() * 1000))
121 elapsed_ms = int(round(time.time() * 1000)) - starttime_m
    [all...]
  /external/compiler-rt/lib/builtins/
floatsisf.c 11 // compiler-rt library in the IEEE-754 default round-to-nearest, ties-to-even
50 rep_t round = (rep_t)a << (typeWidth - shift); local
51 if (round > signBit) result++;
52 if (round == signBit) result += result & 1;
floatunsisf.c 11 // compiler-rt library in the IEEE-754 default round-to-nearest, ties-to-even
42 rep_t round = (rep_t)a << (typeWidth - shift); local
43 if (round > signBit) result++;
44 if (round == signBit) result += result & 1;
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HasCoverage.java 29 int lhsPct = Math.round(entity.getCoveragePercentage());
30 int rhsPct = Math.round(otherEntity.getCoveragePercentage());
  /device/google/contexthub/firmware/lib/libm/
sf_round.c 65 double round(double x) function
67 double round(x)
  /external/libaom/libaom/aom_dsp/x86/
jnt_variance_ssse3.c 57 const uint16_t round = ((1 << DIST_PRECISION_BITS) >> 1); local
59 _mm_set_epi16(round, round, round, round, round, round, round, round);
136 const uint16_t round = ((1 << DIST_PRECISION_BITS) >> 1) local
    [all...]
quantize_ssse3.c 22 static INLINE void calculate_qcoeff_64x64(__m128i *coeff, const __m128i round,
26 qcoeff = _mm_adds_epi16(*coeff, round);
75 __m128i zbin, round, quant, dequant, shift; local
85 round = _mm_load_si128((const __m128i *)round_ptr);
92 round = _mm_add_epi16(round, two);
94 round = _mm_srli_epi16(round, 2);
116 round = _mm_unpackhi_epi64(round, round)
    [all...]
  /cts/tests/tests/view/src/android/view/cts/util/
ScrollBarUtils.java 26 int length = Math.round((float) size * extent / range);
  /external/autotest/client/common_lib/cros/
perf_stat_lib.py 25 return round((i - f) * num_list[c] + (c - i) * num_list[f], 2)
43 return round((num_list[size / 2] + num_list[size / 2 - 1]) / 2.0, 2)
57 return round(float(sum(num_list)) / len(num_list) , 2)
74 return round(sqrt(variance), 2

Completed in 4245 milliseconds

1 2 3 4 5 6 7 8 91011>>