HomeSort by relevance Sort by last modified time
    Searched defs:abs (Results 1 - 25 of 265) sorted by null

1 2 3 4 5 6 7 8 91011

  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
abs.c 1 /* $OpenBSD: abs.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */
34 abs(int j) function
  /prebuilts/go/darwin-x86/src/math/
abs.go 7 // Abs returns the absolute value of x.
10 // Abs(ħInf) = +Inf
11 // Abs(NaN) = NaN
12 func Abs(x float64) float64
14 func abs(x float64) float64 { func
19 return 0 // return correctly abs(-0)
  /prebuilts/go/linux-x86/src/math/
abs.go 7 // Abs returns the absolute value of x.
10 // Abs(ħInf) = +Inf
11 // Abs(NaN) = NaN
12 func Abs(x float64) float64
14 func abs(x float64) float64 { func
19 return 0 // return correctly abs(-0)
  /prebuilts/go/darwin-x86/src/image/png/
paeth.go 10 func abs(x int) int { func
27 // pa := abs(p - int(a))
30 // pa = abs(pa)
34 pc = abs(pa + pb)
35 pa = abs(pa)
36 pb = abs(pb)
55 pc = abs(pa + pb)
56 pa = abs(pa)
57 pb = abs(pb)
  /prebuilts/go/linux-x86/src/image/png/
paeth.go 10 func abs(x int) int { func
27 // pa := abs(p - int(a))
30 // pa = abs(pa)
34 pc = abs(pa + pb)
35 pa = abs(pa)
36 pb = abs(pb)
55 pc = abs(pa + pb)
56 pa = abs(pa)
57 pb = abs(pb)
  /external/clang/test/CodeGen/
pr9614.c 7 extern int abs_alias (int) __asm ("abs");
8 inline __attribute__ ((__always_inline__)) int abs (int x) { function
27 abs(0);
35 // CHECK: call i32 @abs(i32 0)
42 // CHECK: declare i32 @abs(i32
  /hardware/bsp/intel/peripheral/libupm/examples/python/
groverotary.py 33 abs = knob.abs_value() variable
41 print "Abs values: %4d" % int(abs) , " raw %4d" % int(absdeg), "deg = %5.2f" % absrad , " rad ",
  /prebuilts/go/darwin-x86/src/path/filepath/
path_plan9.go 32 func abs(path string) (string, error) { func
path_unix.go 34 func abs(path string) (string, error) { func
path_windows.go 108 func abs(path string) (string, error) { func
  /prebuilts/go/linux-x86/src/path/filepath/
path_plan9.go 32 func abs(path string) (string, error) { func
path_unix.go 34 func abs(path string) (string, error) { func
path_windows.go 108 func abs(path string) (string, error) { func
  /external/opencv3/modules/imgcodecs/
precomp.hpp 73 #undef abs macro
  /external/opencv3/modules/imgcodecs/src/
precomp.hpp 73 #undef abs macro
  /external/vixl/examples/
abs.cc 33 // int64_t abs(int64_t x)
55 Label abs; local
56 masm.Bind(&abs);
63 simulator.RunFrom(masm.GetLabelAddress<Instruction*>(&abs));
64 printf("abs(%ld) = %ld\n", input_value, simulator.xreg(0));
  /hardware/ti/omap4-aah/libtiutils/
UtilsCommon.h 52 T abs(const T & x);
87 inline T abs(const T & x) { function in namespace:Ti
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cstdlib.h 113 inline int abs(int __x) { return _STLP_VENDOR_CSTD::abs(__x); } function
121 # pragma function (abs)
124 //HP-UX native lib has abs() and div() functions in global namespace
131 inline long abs(long __x) { return _STLP_VENDOR_CSTD::labs(__x); } function
143 # pragma intrinsic (abs)
151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); } function
154 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return ::llabs(__x); } function
158 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return __x < 0 ? -__x : __x; } function
164 * problem we provide all abs overload before the 'using' call
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_cstdlib.h 113 inline int abs(int __x) { return _STLP_VENDOR_CSTD::abs(__x); } function
121 # pragma function (abs)
124 //HP-UX native lib has abs() and div() functions in global namespace
131 inline long abs(long __x) { return _STLP_VENDOR_CSTD::labs(__x); } function
143 # pragma intrinsic (abs)
151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); } function
154 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return ::llabs(__x); } function
158 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return __x < 0 ? -__x : __x; } function
164 * problem we provide all abs overload before the 'using' call
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
absrel.s 0 abs = 0x1234
12 mov abs, %eax
24 mov abs - abs, %eax
25 mov ext - abs, %eax
26 mov weak - abs, %eax
27 mov comm - abs, %eax
28 mov loc - abs, %eax
29 mov glob - abs, %eax
30 mov abs2 - abs, %ea
1 abs = 0x1234 define
    [all...]
pcrel.s 0 abs = 0x1234
12 jmp abs
24 jmp abs - abs
25 jmp ext - abs
26 jmp weak - abs
27 jmp comm - abs
28 jmp loc - abs
29 jmp glob - abs
30 jmp abs2 - abs
1 abs = 0x1234 define
    [all...]
  /art/test/032-concrete-sub/src/
ConcreteSub.java 23 private static void callBase(AbstractBase abs) {
24 System.out.println("calling abs.doStuff()");
25 abs.doStuff();
34 System.out.println("Got expected exception from abs.doStuff().");
  /art/test/455-checker-gvn/src/
Main.java 65 // The intermediate call to abs() does not kill
68 int abs = Math.abs(mul1); local
70 return abs + mul2;
84 // Here, the two calls to abs() themselves can be replaced with just one.
85 int abs1 = Math.abs(x);
86 int abs2 = Math.abs(x);
  /bionic/libc/include/android/
legacy_stdlib_inlines.h 42 static __inline int abs(int __n) { return (__n < 0) ? -__n : __n; } function
  /external/eigen/Eigen/src/plugins/
ArrayCwiseUnaryOps.h 11 abs() const function
21 * \sa abs(), square()

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011