Searched refs:MAX3 (Results 1 – 15 of 15) sorted by relevance
/external/skia/tools/ |
D | skdiff.h | 26 #define MAX3(a,b,c) (((b) < (a)) ? MAX2((a), (c)) : MAX2((b), (c))) macro 215 float leftValue = MAX3(lhs->fAverageMismatchR, in comparePixels() 218 float rightValue = MAX3(rhs->fAverageMismatchR, in comparePixels() 236 uint32_t leftValue = MAX3(lhs->fMaxMismatchR, in comparePixels() 239 uint32_t rightValue = MAX3(rhs->fMaxMismatchR, in comparePixels()
|
D | skdiff_html.cpp | 141 stream->writeDecAsText(SkScalarRoundToInt(MAX3(diff.fAverageMismatchR, in print_label_cell() 145 stream->writeDecAsText(MAX3(diff.fMaxMismatchR, in print_label_cell()
|
D | skdiff_image.cpp | 351 printf("%d", static_cast<int>(MAX3(dr.fAverageMismatchR, in tool_main() 355 printf("%d", MAX3(dr.fMaxMismatchR, in tool_main()
|
D | skdiff.cpp | 191 int value = MAX3(thisR, thisG, thisB); in compute_diff()
|
D | skdiff_main.cpp | 211 mismatchValue = MAX3(drp->fMaxMismatchR, drp->fMaxMismatchG, in add()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_math.h | 695 #define MAX3( A, B, C ) ((A) > (B) ? MAX2(A, C) : MAX2(B, C)) macro 698 #define MAX4( A, B, C, D ) ((A) > (B) ? MAX3(A, C, D) : MAX3(B, C, D))
|
D | u_format_rgb9e5.h | 114 maxrgb = MAX3(rc, gc, bc); in float3_to_rgb9e5()
|
/external/ipsec-tools/src/racoon/ |
D | var.h | 40 #define MAX3(a, b, c) (a > b ? (a > c ? a : c) : (b > c ? b : c)) macro
|
/external/libavc/common/ |
D | ih264_macros.h | 61 #define MAX3(a,b,c) ((a) > (b)) ? (((a) > (c)) ? (a) : (c)) : (((b) > (c)) ? (b) : (c)) macro
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_setup_tri.c | 274 bbox.x1 = (MAX3(position->x[0], position->x[1], position->x[2]) - 1) >> FIXED_ORDER; in do_triangle_ccw() 278 bbox.y1 = (MAX3(position->y[0], position->y[1], position->y[2]) - 1 + adj) >> FIXED_ORDER; in do_triangle_ccw()
|
/external/mesa3d/src/mesa/main/ |
D | macros.h | 657 #define MAX3( A, B, C ) ((A) > (B) ? MAX2(A, C) : MAX2(B, C)) macro
|
D | texobj.c | 512 maxLog2 = MAX3(baseImage->WidthLog2, in _mesa_test_texobj_completeness()
|
D | teximage.c | 1031 size = MAX3(width, height, depth); in _mesa_get_tex_max_num_levels()
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_state_derived.c | 579 count = MAX3(col_count, tex_count, 1); in r300_update_rs_block()
|
/external/libavc/encoder/ |
D | ih264e_utils.c | 1066 …ps_qp_params->pu2_sad_thrsh[8] = u4_satdq_t / MAX(MAX3(pu2_smat[0], pu2_smat[2], pu2_smat[8]), pu2… in ih264e_init_quant_params()
|