HomeSort by relevance Sort by last modified time
    Searched defs:half (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/lib/bfloat16/
bfloat16.cc 22 B16_DEVICE_FUNC bfloat16::operator Eigen::half() const {
23 return static_cast<Eigen::half>(float(*this));
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_cosh.c 43 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
69 return half*t+half/t;
72 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
73 if (ix < 0x40862E42) return half*__ieee754_exp(fabs(x));
e_coshf.c 22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
47 return half*t+half/t;
50 /* |x| in [9, log(maxfloat)] return half*exp(|x|) */
51 if (ix < 0x42b17217) return half*__ieee754_expf(fabsf(x));
k_sin.c 51 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
69 else return x-((z*(half*y-v*r)-y)-v*S1);
  /prebuilts/go/darwin-x86/src/math/big/
sqrt.go 10 half = NewFloat(0.5)
62 z.Mul(half, z)
99 u.Mul(half, u) // = ½(t² + x)
138 return t.Mul(half, u) // = ½t(3 - xt²)
9 half = NewFloat(0.5) var
  /prebuilts/go/linux-x86/src/math/big/
sqrt.go 10 half = NewFloat(0.5)
62 z.Mul(half, z)
99 u.Mul(half, u) // = ½(t² + x)
138 return t.Mul(half, u) // = ½t(3 - xt²)
9 half = NewFloat(0.5) var
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
e_cosh.c 47 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
74 return half*t+half/t;
77 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
78 if (ix < 0x40862E42) return half*__ieee754_exp(fabs(x));
84 w = __ieee754_exp(half*fabs(x));
85 t = half*w;
k_sin.c 50 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
71 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/fdlibm/
e_cosh.c 38 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
40 static double one = 1.0, half=0.5, huge = 1.0e300; variable
72 return half*t+half/t;
75 /* |x| in [22, ieee_log(maxdouble)] return half*ieee_exp(|x|) */
76 if (ix < 0x40862E42) return half*__ieee754_exp(ieee_fabs(x));
82 w = __ieee754_exp(half*ieee_fabs(x));
83 t = half*w;
k_sin.c 49 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
73 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
null_fenced_block.hpp 24 enum half_or_full_t { half, full }; enumerator in enum:asio::detail::null_fenced_block::half_or_full_t
  /external/syslinux/gpxe/src/include/gpxe/
filter.h 16 * Half of a data transfer filter
26 /** Other half of the data transfer filter */
31 * Get data transfer interface for the other half of a data transfer filter
34 * @ret other Other half's data transfer interface
38 struct xfer_filter_half *half = local
40 return &half->other->xfer;
58 * @v left "Left" half of the filter
59 * @v left_op Data transfer interface operations for "left" half
60 * @v right "Right" half of the filter
61 * @v right_op Data transfer interface operations for "right" half
    [all...]
  /external/webrtc/webrtc/common_audio/
window_generator.cc 54 const size_t half = (length + 1) / 2; local
57 for (size_t i = 0; i <= half; ++i) {
62 for (size_t i = length - 1; i >= half; --i) {
67 window[half - 1] = sqrtf(window[half - 1] / sum);
  /system/media/audio_utils/tests/
powerlog_tests.cpp 43 const int16_t half = 0x4000; local
45 plog->log(&half, 1 /* frame */, 0 /* nowNs */);
46 plog->log(&half, 1 /* frame */, 1 /* nowNs */);
47 plog->log(&half, 1 /* frame */, 2 /* nowNs */);
57 plog->log(&half, 1 /* frame */, 4 /* nowNs */);
  /device/google/contexthub/firmware/lib/libm/
kf_sin.c 23 half = 5.0000000000e-01,/* 0x3f000000 */ variable
48 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/clang/test/CodeGen/
target-builtin-error-3.c 11 typedef uint16_t half; typedef
12 typedef __attribute__ ((ext_vector_type( 8),__aligned__( 16))) half half8;
13 typedef __attribute__ ((ext_vector_type(16),__aligned__( 32))) half half16;
14 typedef __attribute__ ((ext_vector_type(16),__aligned__( 2))) half half16U;
  /external/speex/libspeex/
vq_sse.h 41 __m128 half; local
44 half = _mm_set_ps1(.5f);
50 __m128 d = _mm_mul_ps(E[i], half);
80 __m128 half; local
83 half = _mm_set_ps1(.5f);
  /external/swiftshader/src/Common/
Half.cpp 15 #include "Half.hpp"
19 half::half(float fp32) function in class:sw::half
51 half::operator float() const
88 half &half::operator=(half h)
96 half &half::operator=(float f)
98 *this = half(f)
    [all...]
Half.hpp 20 class half class in namespace:sw
23 half() = default;
24 explicit half(float f);
28 half &operator=(half h);
29 half &operator=(float f);
35 inline half shortAsHalf(short s)
39 half h;
56 void toRGB16F(half rgb[3]) const
61 rgb[0] = half(R * factor)
    [all...]
  /frameworks/native/libs/math/include/math/
half.h 44 * half-float
57 class half { class in namespace:android
85 CONSTEXPR half(float v) noexcept : mBits(ftoh(v)) { }
93 friend class std::numeric_limits<half>;
94 friend CONSTEXPR half operator"" _hf(long double v);
97 explicit constexpr half(Binary, uint16_t bits) noexcept : mBits(bits) { }
103 inline CONSTEXPR half::fp16 half::ftoh(float v) noexcept {
131 inline CONSTEXPR float half::htof(half::fp16 in) noexcept
    [all...]
  /frameworks/rs/driver/runtime/arch/
clamp.c 29 S_CLAMP(half); variable
94 V_CLAMP(half); variable
  /frameworks/rs/tests/cpp_api/cppf16/
compute.cpp 34 sp<const Element> half = Element::F16(rs); local
40 testAllocationCreation(rs, half, nDims);
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_sinl.c 24 half = 0.5; variable
58 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/deqp/framework/common/
tcuBilinearImageCompare.cpp 78 const deUint32 half = 1u<<(NUM_SUBPIXEL_BITS*2 - 1); local
80 const deUint32 rounded = (sum + half) >> (NUM_SUBPIXEL_BITS*2);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_ir_fs.h 213 * into two separate half-regions 4 MRFs apart from each other.
281 half(const fs_reg &reg, unsigned idx) function

Completed in 486 milliseconds

1 2 3 4 5 6 7 8 91011>>