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

1 2

  /prebuilts/go/darwin-x86/src/math/
exp2_amd64.s 7 TEXT ·Exp2(SB),NOSPLIT,$0
8 JMP ·exp2(SB)
exp2_arm.s 7 TEXT ·Exp2(SB),NOSPLIT,$0
8 B ·exp2(SB)
exp2_386.s 7 // func Exp2(x float64) float64
8 TEXT ·Exp2(SB),NOSPLIT,$0
stubs_arm64.s 21 TEXT ·Exp2(SB),NOSPLIT,$0
22 B ·exp2(SB)
stubs_mips64x.s 30 TEXT ·Exp2(SB),NOSPLIT,$0
31 JMP ·exp2(SB)
stubs_mipsx.s 30 TEXT ·Exp2(SB),NOSPLIT,$0
31 JMP ·exp2(SB)
stubs_ppc64x.s 30 TEXT ·Exp2(SB),NOSPLIT,$0
31 BR ·exp2(SB)
exp.go 132 // Exp2 returns 2**x, the base-2 exponential of x.
135 func Exp2(x float64) float64
137 func exp2(x float64) float64 { func
stubs_s390x.s 19 TEXT ·Exp2(SB),NOSPLIT,$0
20 BR ·exp2(SB)
  /prebuilts/go/linux-x86/src/math/
exp2_amd64.s 7 TEXT ·Exp2(SB),NOSPLIT,$0
8 JMP ·exp2(SB)
exp2_arm.s 7 TEXT ·Exp2(SB),NOSPLIT,$0
8 B ·exp2(SB)
exp2_386.s 7 // func Exp2(x float64) float64
8 TEXT ·Exp2(SB),NOSPLIT,$0
stubs_arm64.s 21 TEXT ·Exp2(SB),NOSPLIT,$0
22 B ·exp2(SB)
stubs_mips64x.s 30 TEXT ·Exp2(SB),NOSPLIT,$0
31 JMP ·exp2(SB)
stubs_mipsx.s 30 TEXT ·Exp2(SB),NOSPLIT,$0
31 JMP ·exp2(SB)
stubs_ppc64x.s 30 TEXT ·Exp2(SB),NOSPLIT,$0
31 BR ·exp2(SB)
exp.go 132 // Exp2 returns 2**x, the base-2 exponential of x.
135 func Exp2(x float64) float64
137 func exp2(x float64) float64 { func
stubs_s390x.s 19 TEXT ·Exp2(SB),NOSPLIT,$0
20 BR ·exp2(SB)
  /external/libcxx/test/std/utilities/utility/pairs/pair.astuple/
tuple_element.pass.cpp 23 typedef T2 Exp2;
26 static_assert((std::is_same<typename std::tuple_element<1, P>::type, Exp2>::value), "");
30 typedef T2 const Exp2;
33 static_assert((std::is_same<typename std::tuple_element<1, P>::type, Exp2>::value), "");
37 typedef T2 volatile Exp2;
40 static_assert((std::is_same<typename std::tuple_element<1, P>::type, Exp2>::value), "");
44 typedef T2 const volatile Exp2;
47 static_assert((std::is_same<typename std::tuple_element<1, P>::type, Exp2>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pair.astuple/
tuple_element.pass.cpp 23 typedef T2 Exp2;
26 static_assert((std::is_same<typename std::tuple_element<1, P>::type, Exp2>::value), "");
30 typedef T2 const Exp2;
33 static_assert((std::is_same<typename std::tuple_element<1, P>::type, Exp2>::value), "");
37 typedef T2 volatile Exp2;
40 static_assert((std::is_same<typename std::tuple_element<1, P>::type, Exp2>::value), "");
44 typedef T2 const volatile Exp2;
47 static_assert((std::is_same<typename std::tuple_element<1, P>::type, Exp2>::value), "");
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
OpenCL.std.h 56 Exp2 = 20,
SPIRVExtInst.h 81 add(OpenCLLIB::Exp2, "exp2");
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/external/spirv-headers/include/spirv/1.0/
OpenCL.std.h 56 Exp2 = 20,
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/external/spirv-headers/include/spirv/1.1/
OpenCL.std.h 56 Exp2 = 20,
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 860 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
861 return EmitUnaryFloatFnCall(Op2, "exp2", B, Callee->getAttributes());
899 // 'exp2' Optimizations
911 // Turn exp2(sitofp(x)) -> ldexp(1.0, sext(x)) if sizeof(x) <= 32
912 // Turn exp2(uitofp(x)) -> ldexp(1.0, zext(x)) if sizeof(x) < 32
    [all...]

Completed in 779 milliseconds

1 2