/external/opencv3/modules/core/include/opencv2/core/ |
D | cvstd.hpp | 82 static inline uchar abs(uchar a) { return a; } in abs() function 83 static inline ushort abs(ushort a) { return a; } in abs() function 84 static inline unsigned abs(unsigned a) { return a; } in abs() function 85 static inline uint64 abs(uint64 a) { return a; } in abs() function 93 template<typename T> static inline T abs(T a) { return a < 0 ? -a : a; } in abs() function 96 template<> inline uchar abs(uchar a) { return a; } in abs() function 97 template<> inline ushort abs(ushort a) { return a; } in abs() function 98 template<> inline unsigned abs(unsigned a) { return a; } in abs() function 99 template<> inline uint64 abs(uint64 a) { return a; } in abs() function
|
/external/deqp/modules/glshared/ |
D | glsVertexArrayTests.cpp | 383 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
|
D | glsDrawTest.cpp | 829 inline GLValue::Fixed abs (GLValue::Fixed val) in abs() function 835 inline GLValue::Ubyte abs (GLValue::Ubyte val) in abs() function 841 inline GLValue::Byte abs (GLValue::Byte val) in abs() function 847 inline GLValue::Ushort abs (GLValue::Ushort val) in abs() function 853 inline GLValue::Short abs (GLValue::Short val) in abs() function 859 inline GLValue::Float abs (GLValue::Float val) in abs() function 865 inline GLValue::Double abs (GLValue::Double val) in abs() function 871 inline GLValue::Uint abs (GLValue::Uint val) in abs() function 877 inline GLValue::Int abs (GLValue::Int val) in abs() function 883 inline GLValue::Half abs (GLValue::Half val) in abs() function
|
/external/opencv3/modules/flann/include/opencv2/flann/ |
D | dist.h | 58 inline T abs(T x) { return (x<0) ? -x : x; } in abs() function
|
/external/opencv3/modules/core/perf/ |
D | perf_abs.cpp | 13 PERF_TEST_P(Size_MatType, abs, TYPICAL_MATS_ABS) in PERF_TEST_P() argument
|
/external/clang/test/CodeGen/ |
D | pr9614.c | 8 inline __attribute__ ((__always_inline__)) int abs (int x) { in abs() function
|
/external/eigen/Eigen/src/plugins/ |
D | ArrayCwiseUnaryOps.h | 11 abs() const in abs() function
|
/external/vixl/examples/ |
D | abs.cc | 55 Label abs; in main() local
|
/external/autotest/client/site_tests/hardware_Keyboard/src/ |
D | evtest.c | 399 int abs[5]; in do_evtest_dumpall() local 493 int abs[5]; in main() local
|
/external/opencv/cxcore/src/ |
D | _cxcore.h | 161 inline double abs(CvComplex32f a) in abs() function 229 inline double abs(CvComplex64f a) in abs() function
|
/external/toybox/toys/lsb/ |
D | umount.c | 138 char *abs = xabspath(*optargs, 0); in umount_main() local
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_program_print.c | 405 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/deqp/modules/gles31/scripts/ |
D | genutil.py | 202 def abs(a): return a.abs() member in GenMath 274 def abs(self): member in Scalar 324 def abs(self): member in Uint 433 def abs(self): member in Vec2 482 def abs(self): member in UVec2 550 def abs(self): member in Vec3 600 def abs(self): member in UVec3 664 def abs(self): member in Vec4 714 def abs(self): member in UVec4
|
/external/deqp/modules/gles3/scripts/ |
D | genutil.py | 202 def abs(a): return a.abs() member in GenMath 274 def abs(self): member in Scalar 322 def abs(self): member in Uint 431 def abs(self): member in Vec2 480 def abs(self): member in UVec2 548 def abs(self): member in Vec3 598 def abs(self): member in UVec3 662 def abs(self): member in Vec4 712 def abs(self): member in UVec4
|
/external/eigen/blas/f2c/ |
D | datatypes.h | 17 #define abs(x) ((x) >= 0 ? (x) : -(x)) macro
|
/external/jetty/src/java/org/eclipse/jetty/util/resource/ |
D | FileResource.java | 194 String abs=_file.getAbsolutePath(); in getAlias() local
|
/external/kernel-headers/original/uapi/linux/ |
D | virtio_input.h | 65 struct virtio_input_absinfo abs; member
|
/external/deqp/framework/common/ |
D | tcuInterval.cpp | 143 Interval abs (const Interval& x) in abs() function
|
/external/webrtc/webrtc/modules/video_capture/ |
D | device_info_impl.cc | 19 #define abs(a) (a>=0?a:-a) macro
|
/external/deqp/framework/delibs/decpp/ |
D | deDefs.hpp | 36 template<typename T> inline T abs (T x) { return x < T(0) ? -x : x; } in abs() function
|
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathFun.h | 53 abs (T a) in abs() function
|
/external/ceres-solver/include/ceres/ |
D | jet.h | 379 inline double abs (double x) { return std::abs(x); } in abs() function 399 Jet<T, N> abs(const Jet<T, N>& f) { in abs() function
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/ |
D | CheckClassAdapter.java | 474 int abs = (access & Opcodes.ACC_ABSTRACT) == 0 ? 0 : 1; in checkAccess() local
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/ |
D | Complex.java | 108 public double abs() { in abs() method in Complex
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 657 inline APFloat abs(APFloat X) { in abs() function
|