Searched refs:a_top (Results 1 – 3 of 3) sorted by relevance
/third_party/flutter/skia/src/core/ |
D | SkRegion.cpp | 912 int a_top = *a_runs++; in operate() local 922 assert_sentinel(a_top, false); in operate() 927 RgnOper oper(SkMin32(a_top, b_top), dst, op); in operate() 939 if (a_top < b_top) { in operate() 940 top = a_top; in operate() 946 bot = a_top = b_top; in operate() 948 } else if (b_top < a_top) { in operate() 951 if (b_bot <= a_top) { // [...] <...> in operate() 955 bot = b_top = a_top; in operate() 958 top = a_top; // or b_top in operate() [all …]
|
/third_party/skia/src/core/ |
D | SkRegion.cpp | 911 int a_top = *a_runs++; in operate() local 921 assert_sentinel(a_top, false); in operate() 926 RgnOper oper(std::min(a_top, b_top), dst, op); in operate() 938 if (a_top < b_top) { in operate() 939 top = a_top; in operate() 945 bot = a_top = b_top; in operate() 947 } else if (b_top < a_top) { in operate() 950 if (b_bot <= a_top) { // [...] <...> in operate() 954 bot = b_top = a_top; in operate() 957 top = a_top; // or b_top in operate() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_quad.c | 76 LLVMValueRef a_top = lp_build_swizzle_aos(bld, a, swizzle_top); in lp_build_ddy() local 78 return lp_build_sub(bld, a_bottom, a_top); in lp_build_ddy()
|