/third_party/musl/src/complex/ |
D | ccoshf.c | 59 return CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y)); in ccoshf() 63 return CMPLXF(crealf(z), cimagf(z) * copysignf(1, x)); in ccoshf() 72 return CMPLXF(y - y, copysignf(0, x * (y - y))); in ccoshf() 76 return CMPLXF(x * x, copysignf(0, x) * y); in ccoshf() 77 return CMPLXF(x * x, copysignf(0, (x + x) * y)); in ccoshf()
|
D | csinhf.c | 59 return CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y)); in csinhf() 63 return CMPLXF(crealf(z) * copysignf(1, x), cimagf(z)); in csinhf() 72 return CMPLXF(copysignf(0, x * (y - y)), y - y); in csinhf() 77 return CMPLXF(x, copysignf(0, y)); in csinhf()
|
D | csqrtf.c | 61 return CMPLXF(fabsf(b - b), copysignf(a, b)); in csqrtf() 63 return CMPLXF(a, copysignf(b - b, b)); in csqrtf() 80 return CMPLXF(fabsf(b) / (2.0 * t), copysignf(t, b)); in csqrtf()
|
D | ctanhf.c | 49 return CMPLXF(x, copysignf(0, isinf(y) ? y : sinf(y) * cosf(y))); in ctanhf() 57 return CMPLXF(copysignf(1, x), 4 * sinf(y) * cosf(y) * exp_mx * exp_mx); in ctanhf()
|
D | cprojf.c | 6 return CMPLXF(INFINITY, copysignf(0.0, crealf(z))); in cprojf()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | aaccoder_mips.c | 331 e1 = copysignf(vec[0] * IQ, in[i+0]); in quantize_and_encode_band_cost_UQUAD_mips() 332 e2 = copysignf(vec[1] * IQ, in[i+1]); in quantize_and_encode_band_cost_UQUAD_mips() 333 e3 = copysignf(vec[2] * IQ, in[i+2]); in quantize_and_encode_band_cost_UQUAD_mips() 334 e4 = copysignf(vec[3] * IQ, in[i+3]); in quantize_and_encode_band_cost_UQUAD_mips() 552 e1 = copysignf(vec1[0] * IQ, in[i+0]); in quantize_and_encode_band_cost_UPAIR7_mips() 553 e2 = copysignf(vec1[1] * IQ, in[i+1]); in quantize_and_encode_band_cost_UPAIR7_mips() 554 e3 = copysignf(vec2[0] * IQ, in[i+2]); in quantize_and_encode_band_cost_UPAIR7_mips() 555 e4 = copysignf(vec2[1] * IQ, in[i+3]); in quantize_and_encode_band_cost_UPAIR7_mips() 669 e1 = copysignf(vec1[0] * IQ, in[i+0]); in quantize_and_encode_band_cost_UPAIR12_mips() 670 e2 = copysignf(vec1[1] * IQ, in[i+1]); in quantize_and_encode_band_cost_UPAIR12_mips() [all …]
|
/third_party/musl/src/math/riscv64/ |
D | copysignf.c | 5 float copysignf(float x, float y) in copysignf() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | copysignf.c | 4 float copysignf(float x, float y) in copysignf() function
|
/third_party/musl/src/math/ |
D | copysignf.c | 4 float copysignf(float x, float y) in copysignf() function
|
/third_party/glib/glib/gnulib/ |
D | signbitf.c | 46 return copysignf (1.0f, arg) < 0; in gl_signbitf()
|
/third_party/musl/libc-test/src/math/ |
D | copysignf.c | 26 y = copysignf(p->x, p->x2); in main()
|
D | test_src_math.gni | 30 "copysignf",
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/sponge/dihedral/ |
D | dihedral_atom_energy_impl.cu | 53 copysignf(phi, sign); in DihedralAtomEnergyKernel()
|
D | dihedral_energy_impl.cu | 53 copysignf(phi, sign); in DihedralEnergyKernel()
|
D | dihedral_force_impl.cu | 56 copysignf(phi, sign); in DihedralForceKernel()
|
D | dihedral_force_with_atom_energy_impl.cu | 58 copysignf(phi, sign); in DihedralForceWithAtomEnergyKernel()
|
/third_party/musl/libc-test/src/common/ |
D | mtest.c | 52 got = copysignf(0x1p127, got); in ulperrf()
|
/third_party/boost/boost/math/ |
D | tr1_c_macros.ipp | 67 #ifdef copysignf 68 #undef copysignf 70 #define copysignf boost_copysignf
|
/third_party/skia/include/private/ |
D | SkFloatingPoint.h | 61 #define sk_float_copysign(x, y) copysignf(x, y)
|
/third_party/flutter/skia/include/private/ |
D | SkFloatingPoint.h | 59 #define sk_float_copysign(x, y) copysignf(x, y)
|
/third_party/musl/libc-test/src/api/ |
D | math.c | 82 {float(*p)(float,float) = copysignf;} in f()
|
/third_party/musl/ndk_musl_include/ |
D | math.h | 172 float copysignf(float, float);
|
/third_party/boost/libs/math/doc/tr1/ |
D | c99_ref.qbk | 27 float copysignf(float x, float y); 158 float copysignf(float x, float y);
|
/third_party/musl/include/ |
D | math.h | 172 float copysignf(float, float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | math.h | 172 float copysignf(float, float);
|