Home
last modified time | relevance | path

Searched defs:abs (Results 1 – 25 of 239) sorted by relevance

12345678910

/external/llvm-project/llvm/test/MC/AArch64/SVE/
Dabs.s10 abs z0.b, p0/m, z0.b label
16 abs z0.h, p0/m, z0.h label
22 abs z0.s, p0/m, z0.s label
28 abs z0.d, p0/m, z0.d label
34 abs z31.b, p7/m, z31.b label
40 abs z31.h, p7/m, z31.h label
46 abs z31.s, p7/m, z31.s label
52 abs z31.d, p7/m, z31.d label
68 abs z4.d, p7/m, z31.d label
80 abs z4.d, p7/m, z31.d label
Dabs-diagnostics.s4 abs z0.h, p0/m, z0.b label
10 abs z29.d, p7, z29.d label
18 abs z0.b, p8/m, z0.b label
23 abs z0.h, p8/m, z0.h label
28 abs z0.s, p8/m, z0.s label
33 abs z0.d, p8/m, z0.d label
Dmovprfx-diagnostics.s26 abs z2.d, p0/m, z2.d label
66 abs z0.d, p0/m, z0.d label
127 abs z0.d, p1/m, z1.d label
167 abs z0.d, p0/m, z1.d label
/external/llvm-project/libcxx/include/
Dstdlib.h107 inline _LIBCPP_INLINE_VISIBILITY long abs(long __x) _NOEXCEPT { in abs() function
111 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT { in abs() function
118 inline _LIBCPP_INLINE_VISIBILITY float abs(float __lcpp_x) _NOEXCEPT { in abs() function
122 inline _LIBCPP_INLINE_VISIBILITY double abs(double __lcpp_x) _NOEXCEPT { in abs() function
127 abs(long double __lcpp_x) _NOEXCEPT { in abs() function
/external/eigen/Eigen/src/Core/
DMathFunctions.h23 long abs(long x) { return (labs(x)); } in abs() function
24 double abs(double x) { return (fabs(x)); } in abs() function
25 float abs(float x) { return (fabsf(x)); } in abs() function
26 long double abs(long double x) { return (fabsl(x)); } in abs() function
/external/llvm-project/lld/test/ELF/Inputs/
Dabs.s1 .global abs symbol
2 abs = 0x42 define
/external/libvpx/libvpx/vpx_dsp/arm/
Dsad_neon.c24 uint16x8_t abs = vabdl_u8(vget_low_u8(src_u8), vget_low_u8(ref_u8)); in vpx_sad4x4_neon() local
36 uint16x8_t abs = vabdl_u8(vget_low_u8(src_u8), vget_low_u8(avg)); in vpx_sad4x4_avg_neon() local
44 uint16x8_t abs = vdupq_n_u16(0); in vpx_sad4x8_neon() local
61 uint16x8_t abs = vdupq_n_u16(0); in vpx_sad4x8_avg_neon() local
81 uint16x8_t abs = vdupq_n_u16(0); in sad8x() local
98 uint16x8_t abs = vdupq_n_u16(0); in sad8x_avg() local
136 uint16x8_t abs = vdupq_n_u16(0); in sad16x() local
154 uint16x8_t abs = vdupq_n_u16(0); in sad16x_avg() local
194 uint16x8_t abs = vdupq_n_u16(0); in sad32x() local
216 uint16x8_t abs = vdupq_n_u16(0); in sad32x_avg() local
/external/llvm-project/lld/test/ELF/
Dmap-file.s39 .global abs symbol
40 abs = 0xAB5 define
Dexport-symbols.s59 .globl abs symbol
60 abs = 0xDEADBEEF define
Dsymbols.s31 .globl abs symbol
32 abs = 0x123 define
Dmany-alloc-sections.s154 .global abs symbol
155 abs = 0x12345678 define
Dlocal.s91 abs = 42 define
/external/libcxx/include/
Dstdlib.h111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);} in abs() function
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);} in abs() function
/external/tensorflow/tensorflow/compiler/xla/
Derror_spec.h24 : abs(aabs), rel(arel), relaxed_nans(relaxed_nans) {} in abs() function
26 float abs; // Absolute error bound. member
/external/rust/crates/num-traits/src/
Dsign.rs14 fn abs(&self) -> Self; in abs() method
85 fn abs(&self) -> Self { in abs() function
165 pub fn abs<T: Signed>(value: T) -> T { in abs() function
/external/libcups/
Dconfig.h.in670 # define abs(x) _cups_abs(x) macro
673 # define abs(x) _cups_abs(x) macro
676 # define abs(x) ((x) < 0 ? -(x) : (x)) macro
/external/llvm-project/clang/test/Modules/Inputs/libc-libcxx/include/c++/
Dmath.h2 template<typename T> T abs(T t) { return (t < 0) ? -t : t; } in abs() function
/external/llvm-project/llvm/test/tools/llvm-cov/Inputs/sources_specified/
Dabs.h1 int abs(int x) { in abs() function
/external/llvm-project/llvm/test/tools/llvm-cov/Inputs/multithreaded_report/
Dabs.h2 T abs(T x) { in abs() function
/external/llvm-project/clang/test/Modules/Inputs/libc-libcxx/sysroot/usr/include/c++/v1/
Dmath.h5 template<typename T> T abs(T t) { return (t < 0) ? -t : t; } in abs() function
/external/llvm-project/clang/lib/Headers/
D__clang_hip_cmath.h30 __DEVICE__ double abs(double __x) { return ::fabs(__x); } in abs() function
31 __DEVICE__ float abs(float __x) { return ::fabsf(__x); } in abs() function
32 __DEVICE__ long long abs(long long __n) { return ::llabs(__n); } in abs() function
33 __DEVICE__ long abs(long __n) { return ::labs(__n); } in abs() function
/external/llvm-project/debuginfo-tests/dexter/feature_tests/commands/penalty/
Dexpect_step_kinds.cpp10 int abs(int i){ in abs() function
/external/mesa3d/src/intel/compiler/
Dbrw_nir_opt_peephole_ffma.c71 uint8_t swizzle[4], bool *negate, bool *abs) in get_mul_for_src()
194 bool negate, abs; in brw_nir_opt_peephole_ffma_block() local
/external/libwebsockets/lib/abstract/
Dabstract.c153 lws_abs_bind_and_create_instance(const lws_abs_t *abs) in lws_abs_bind_and_create_instance()
297 lws_abs_t *abs = lws_zalloc(sizeof(*abs), __func__); in lws_abstract_alloc() local
/external/tensorflow/tensorflow/compiler/xla/tests/
Dunary_op_test.cc77 auto abs = Abs(arg); in SignAbsTestHelper() local
129 auto abs = Abs(arg); in SignAbsTestHelper() local
197 auto abs = Abs(arg); in XLA_TEST_F() local

12345678910