HomeSort by relevance Sort by last modified time
    Searched refs:MAX3 (Results 1 - 17 of 17) sorted by null

  /external/libdrm/
util_math.h 29 #define MAX3( A, B, C ) ((A) > (B) ? MAX2(A, C) : MAX2(B, C))
xf86drm.c     [all...]
  /external/skia/tools/
skdiff.h 26 #define MAX3(a,b,c) (((b) < (a)) ? MAX2((a), (c)) : MAX2((b), (c)))
215 float leftValue = MAX3(lhs->fAverageMismatchR,
218 float rightValue = MAX3(rhs->fAverageMismatchR,
236 uint32_t leftValue = MAX3(lhs->fMaxMismatchR,
239 uint32_t rightValue = MAX3(rhs->fMaxMismatchR,
skdiff_image.cpp 351 printf("%d", static_cast<int>(MAX3(dr.fAverageMismatchR,
355 printf("%d", MAX3(dr.fMaxMismatchR,
skdiff_html.cpp 141 stream->writeDecAsText(SkScalarRoundToInt(MAX3(diff.fAverageMismatchR,
145 stream->writeDecAsText(MAX3(diff.fMaxMismatchR,
skdiff.cpp 191 int value = MAX3(thisR, thisG, thisB);
skdiff_main.cpp 212 mismatchValue = MAX3(drp->fMaxMismatchR, drp->fMaxMismatchG,
  /external/ipsec-tools/src/racoon/
var.h 40 #define MAX3(a, b, c) (a > b ? (a > c ? a : c) : (b > c ? b : c))
  /external/libavc/common/
ih264_macros.h 61 #define MAX3(a,b,c) ((a) > (b)) ? (((a) > (c)) ? (a) : (c)) : (((b) > (c)) ? (b) : (c))
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_rgb9e5.h 114 maxrgb = MAX3(rc, gc, bc);
u_math.h 695 #define MAX3( A, B, C ) ((A) > (B) ? MAX2(A, C) : MAX2(B, C))
698 #define MAX4( A, B, C, D ) ((A) > (B) ? MAX3(A, C, D) : MAX3(B, C, D))
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 274 bbox.x1 = (MAX3(position->x[0], position->x[1], position->x[2]) - 1) >> FIXED_ORDER;
278 bbox.y1 = (MAX3(position->y[0], position->y[1], position->y[2]) - 1 + adj) >> FIXED_ORDER;
  /external/mesa3d/src/mesa/main/
macros.h 657 #define MAX3( A, B, C ) ((A) > (B) ? MAX2(A, C) : MAX2(B, C))
texobj.c 512 maxLog2 = MAX3(baseImage->WidthLog2,
    [all...]
teximage.c 1031 size = MAX3(width, height, depth);
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_state_derived.c 579 count = MAX3(col_count, tex_count, 1);
    [all...]
  /external/libavc/encoder/
ih264e_utils.c     [all...]

Completed in 1179 milliseconds