Home
last modified time | relevance | path

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

1234

/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/libcxx/include/
Dstdlib.h115 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);} in abs() function
117 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);} in abs() function
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_nir_opt_peephole_ffma.c72 uint8_t swizzle[4], bool *negate, bool *abs) in get_mul_for_src()
193 bool negate, abs; in brw_nir_opt_peephole_ffma_block() local
/external/vixl/examples/aarch64/
Dabs.cc52 Label abs; in main() local
/external/clang/test/CodeGen/
Dpr9614.c8 inline __attribute__ ((__always_inline__)) int abs (int x) { in abs() function
/external/vixl/examples/aarch32/
Dabs.cc47 Label abs; in main() local
/external/clang/lib/Headers/
D__clang_cuda_cmath.h47 __DEVICE__ long long abs(long long __n) { return ::llabs(__n); } in abs() function
48 __DEVICE__ long abs(long __n) { return ::labs(__n); } in abs() function
49 __DEVICE__ float abs(float __x) { return ::fabsf(__x); } in abs() function
50 __DEVICE__ double abs(double __x) { return ::fabs(__x); } in abs() function
/external/swiftshader/src/Common/
DHalf.cpp23 unsigned int abs = fp32i & 0x7FFFFFFF; in half() local
/external/mesa3d/src/compiler/nir/
Dnir_normalize_cubemap_coords.c59 nir_ssa_def *abs = nir_fabs(b, orig_coord); in normalize_cubemap_coords_block() local
/external/toybox/toys/lsb/
Dumount.c138 char *abs = xabspath(*optargs, 0); in umount_main() local
/external/syslinux/com32/include/
Dstdlib.h16 static __inline__ int abs(int __n) in abs() function
/external/deqp/modules/glshared/
DglsVertexArrayTests.cpp383 inline GLValue::Fixed abs (GLValue::Fixed val) in abs() function
389 inline GLValue::Ubyte abs (GLValue::Ubyte val) in abs() function
395 inline GLValue::Byte abs (GLValue::Byte val) in abs() function
401 inline GLValue::Ushort abs (GLValue::Ushort val) in abs() function
407 inline GLValue::Short abs (GLValue::Short val) in abs() function
413 inline GLValue::Float abs (GLValue::Float val) in abs() function
419 inline GLValue::Uint abs (GLValue::Uint val) in abs() function
425 inline GLValue::Int abs (GLValue::Int val) in abs() function
431 inline GLValue::Half abs (GLValue::Half val) in abs() function
437 inline GLValue::Double abs (GLValue::Double val) in abs() function
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Ddisasm-a3xx.c72 bool neg, bool abs, bool addr_rel) in print_reg()
120 bool neg, bool abs, bool addr_rel) in print_reg_src()
136 bool abs; member
/external/autotest/client/site_tests/hardware_Keyboard/src/
Devtest.c399 int abs[5]; in do_evtest_dumpall() local
493 int abs[5]; in main() local
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_program_print.c405 const char* abs = inst->RGB.Arg[arg].Abs ? "|" : ""; in rc_print_pair_instruction() local
440 const char* abs = inst->Alpha.Arg[arg].Abs ? "|" : ""; in rc_print_pair_instruction() local
/external/mesa3d/src/compiler/glsl/
Dlink_atomics.cpp207 active_atomic_buffer *abs = in link_assign_atomic_counter_resources() local
305 active_atomic_buffer *const abs = in link_check_atomic_counter_resources() local
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktSampleVerifierUtil.hpp163 tcu::Vector<float, Size> abs (const tcu::Vector<float, Size>& v) in abs() function
/external/eigen/blas/f2c/
Ddatatypes.h17 #define abs(x) ((x) >= 0 ? (x) : -(x)) macro
/external/deqp/modules/gles31/scripts/
Dgenutil.py224 def abs(a): return a.abs() member in GenMath
296 def abs(self): member in Scalar
346 def abs(self): member in Uint
455 def abs(self): member in Vec2
504 def abs(self): member in UVec2
572 def abs(self): member in Vec3
622 def abs(self): member in UVec3
686 def abs(self): member in Vec4
736 def abs(self): member in UVec4
/external/deqp/modules/gles3/scripts/
Dgenutil.py224 def abs(a): return a.abs() member in GenMath
296 def abs(self): member in Scalar
344 def abs(self): member in Uint
453 def abs(self): member in Vec2
502 def abs(self): member in UVec2
570 def abs(self): member in Vec3
620 def abs(self): member in UVec3
684 def abs(self): member in Vec4
734 def abs(self): member in UVec4
/external/kernel-headers/original/uapi/linux/
Dvirtio_input.h65 struct virtio_input_absinfo abs; member
/external/deqp/framework/common/
DtcuInterval.cpp143 Interval abs (const Interval& x) in abs() function
/external/python/cpython2/Lib/
Dfilecmp.py268 def _cmp(a, b, sh, abs=abs, cmp=cmp): argument
/external/webrtc/webrtc/modules/video_capture/
Ddevice_info_impl.cc19 #define abs(a) (a>=0?a:-a) macro
/external/deqp/framework/delibs/decpp/
DdeDefs.hpp36 template<typename T> inline T abs (T x) { return x < T(0) ? -x : x; } in abs() function

1234