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

1 2

  /external/pdfium/third_party/base/numerics/
safe_math.h 130 CheckedNumeric Abs() const {
  /external/v8/src/base/
safe_math.h 134 CheckedNumeric Abs() const {
  /external/libchrome/base/numerics/
safe_math.h 138 CheckedNumeric Abs() const {
  /external/libweave/third_party/chromium/base/numerics/
safe_math.h 138 CheckedNumeric Abs() const {
  /external/libvpx/libvpx/third_party/libyuv/source/
convert.cc 26 static __inline int Abs(int v) {
39 const int dst_y_width = Abs(src_y_width);
40 const int dst_y_height = Abs(src_y_height);
    [all...]
scale_argb.cc 26 static __inline int Abs(int v) {
729 src_width = Abs(src_width);
convert_from.cc 28 static __inline int Abs(int v) {
41 const int dst_y_width = Abs(src_y_width);
42 const int dst_y_height = Abs(src_y_height);
71 const int dst_uv_width = (Abs(width) + 1) >> 1;
72 const int dst_uv_height = Abs(height);
93 const int dst_uv_width = Abs(width);
94 const int dst_uv_height = Abs(height);
115 const int dst_uv_width = (Abs(width) + 3) >> 2;
116 const int dst_uv_height = Abs(height);
    [all...]
scale.cc 26 static __inline int Abs(int v) {
745 src_width = Abs(src_width);
814 src_width = Abs(src_width);
876 src_width = Abs(src_width);
    [all...]
scale_common.cc 26 static __inline int Abs(int v) {
    [all...]
row_common.cc 39 static __inline uint32 Abs(int32 v) {
57 static __inline uint32 Abs(int32 v) {
921 int sobel = Abs(a_diff + b_diff * 2 + c_diff);
939 int sobel = Abs(a_diff + b_diff * 2 + c_diff);
    [all...]
  /external/libyuv/files/source/
convert.cc 26 static __inline int Abs(int v) {
39 const int dst_y_width = Abs(src_y_width);
40 const int dst_y_height = Abs(src_y_height);
    [all...]
scale_argb.cc 26 static __inline int Abs(int v) {
705 src_width = Abs(src_width);
convert_from.cc 28 static __inline int Abs(int v) {
41 const int dst_y_width = Abs(src_y_width);
42 const int dst_y_height = Abs(src_y_height);
71 const int dst_uv_width = (Abs(width) + 1) >> 1;
72 const int dst_uv_height = Abs(height);
93 const int dst_uv_width = Abs(width);
94 const int dst_uv_height = Abs(height);
115 const int dst_uv_width = (Abs(width) + 3) >> 2;
116 const int dst_uv_height = Abs(height);
    [all...]
scale.cc 26 static __inline int Abs(int v) {
744 src_width = Abs(src_width);
813 src_width = Abs(src_width);
875 src_width = Abs(src_width);
    [all...]
scale_common.cc 26 static __inline int Abs(int v) {
    [all...]
row_common.cc 39 static __inline uint32 Abs(int32 v) {
57 static __inline uint32 Abs(int32 v) {
892 int sobel = Abs(a_diff + b_diff * 2 + c_diff);
910 int sobel = Abs(a_diff + b_diff * 2 + c_diff);
    [all...]
  /external/libyuv/files/unit_test/
unit_test.h 35 static __inline int Abs(int v) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_pair.h 67 unsigned int Abs:1;
radeon_program.h 51 unsigned int Abs:1;
53 /** Post-Abs negation. */
  /external/libyuv/files/util/
convert.cc 40 static __inline uint32 Abs(int32 v) {
152 dst_width = Abs(image_width);
153 dst_height = Abs(image_height);
221 int org_size = Abs(image_width) * Abs(image_height) * 4; // ARGB
224 const int y_size = Abs(image_width) * Abs(image_height);
225 const int uv_size = ((Abs(image_width) + 1) / 2) *
226 ((Abs(image_height) + 1) / 2);
287 int src_width = Abs(image_width)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 71 struct match_info Abs;
108 tokens.Abs.String = src_str + matches[2].rm_so;
109 tokens.Abs.Length = match_length(matches, 2);
122 /* Abs */
123 if (tokens.Abs.Length > 0) {
124 src_reg->Abs = 1;
192 DBG("File=%u index=%u swizzle=%x negate=%u abs=%u\n",
194 src_reg->Negate, src_reg->Abs);
  /external/v8/test/cctest/
test-compiler.cc 112 static double Abs(Isolate* isolate, int x) {
123 TEST(Abs) {
126 CHECK_EQ(3.0, Abs(CcTest::i_isolate(), -3));
  /external/opencv/cvaux/src/
cvscanlines.cpp 196 dx = abs( x1 - x2 ) + 1;
197 dy = abs( y1 - y2 ) + 1;
239 dx = abs( x1 - x2 ) + 1;
240 dy = abs( y1 - y2 ) + 1;
    [all...]
  /external/v8/src/
utils.h 206 T Abs(T a) {
246 return (x == kMinInt) ? 31 : WhichPowerOf2(Abs(x));
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp     [all...]

Completed in 502 milliseconds

1 2