HomeSort by relevance Sort by last modified time
    Searched defs:abs (Results 1 - 25 of 340) 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.6 2015/09/13 08:31:47 guenther Exp $ */
34 abs(int j) function
38 DEF_STRONG(abs); variable
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Xabs.c 2 The abs, labs, and llabs functions compute the absolute value of an integer j.
5 The abs, labs, and llabs, functions return the absolute value of their
21 abs(int j) function
  /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
  /external/libcxx/include/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /external/vixl/examples/aarch64/
abs.cc 32 // int64_t abs(int64_t x)
52 Label abs; local
53 masm.Bind(&abs);
60 simulator.RunFrom(masm.GetLabelAddress<Instruction*>(&abs));
61 printf("abs(%" PRId64 ") = %" PRId64 "\n",
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
104 #undef abs macro
115 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
117 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
104 #undef abs macro
115 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
117 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/
stdlib.h 67 int abs( int j);
68 long abs( long j);
69 long long abs(long long j); // C++0X
100 #undef abs macro
111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
  /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().");
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktSampleVerifierUtil.hpp 163 tcu::Vector<float, Size> abs (const tcu::Vector<float, Size>& v) function in namespace:vkt::texture::util
169 result[compNdx] = de::abs(v[compNdx]);
  /external/vixl/examples/aarch32/
abs.cc 32 // int32_t abs(int32_t x)
47 Label abs; local
48 masm.Bind(&abs);
60 memory.GetEntryPoint<int32_t (*)(int32_t)>(abs,
64 printf("native: abs(%d) = %d\n", input_value, output_value);

Completed in 1035 milliseconds

1 2 3 4 5 6 7 8 91011>>