Home
last modified time | relevance | path

Searched refs:a_top (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/core/
DSkRegion.cpp838 int a_top = *a_runs++; in operate() local
848 assert_sentinel(a_top, false); in operate()
853 RgnOper oper(SkMin32(a_top, b_top), dst, op); in operate()
865 if (a_top < b_top) { in operate()
866 top = a_top; in operate()
872 bot = a_top = b_top; in operate()
874 } else if (b_top < a_top) { in operate()
877 if (b_bot <= a_top) { // [...] <...> in operate()
881 bot = b_top = a_top; in operate()
884 top = a_top; // or b_top in operate()
[all …]
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_quad.c75 LLVMValueRef a_top = lp_build_swizzle_aos(bld, a, swizzle_top); in lp_build_ddy() local
77 return lp_build_sub(bld, a_bottom, a_top); in lp_build_ddy()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Featherstone/
DbtMultiBody.cpp64 btScalar SpatialDotProduct(const btVector3 &a_top, in SpatialDotProduct() argument
69 return a_bottom.dot(b_top) + a_top.dot(b_bottom); in SpatialDotProduct()
72 void SpatialCrossProduct(const btVector3 &a_top, in SpatialCrossProduct() argument
79 top_out = a_top.cross(b_top); in SpatialCrossProduct()
80 bottom_out = a_bottom.cross(b_top) + a_top.cross(b_bottom); in SpatialCrossProduct()