Home
last modified time | relevance | path

Searched refs:lbase (Results 1 – 12 of 12) sorted by relevance

/external/skqp/src/opts/
DSkBitmapProcState_matrix_neon.h68 int32x4_t lbase, hbase; in SCALE_NOFILTER_NAME() local
75 lbase = vdupq_n_s32(SkFractionalIntToFixed(fx)); in SCALE_NOFILTER_NAME()
76 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx1), lbase, 1); in SCALE_NOFILTER_NAME()
77 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx2), lbase, 2); in SCALE_NOFILTER_NAME()
78 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx3), lbase, 3); in SCALE_NOFILTER_NAME()
79 hbase = vaddq_s32(lbase, vdupq_n_s32(SkFractionalIntToFixed(dx4))); in SCALE_NOFILTER_NAME()
86 fx8 = TILEX_PROCF_NEON8(lbase, hbase, maxX); in SCALE_NOFILTER_NAME()
91 lbase = vaddq_s32 (lbase, vdupq_n_s32(SkFractionalIntToFixed(dx8))); in SCALE_NOFILTER_NAME()
DSkBitmapProcState_matrixProcs_neon.cpp152 int32x4_t lbase, hbase; in decal_nofilter_scale_neon() local
153 lbase = vdupq_n_s32(fx); in decal_nofilter_scale_neon()
154 lbase = vsetq_lane_s32(fx + dx, lbase, 1); in decal_nofilter_scale_neon()
155 lbase = vsetq_lane_s32(fx + dx + dx, lbase, 2); in decal_nofilter_scale_neon()
156 lbase = vsetq_lane_s32(fx + dx + dx + dx, lbase, 3); in decal_nofilter_scale_neon()
157 hbase = lbase + vdupq_n_s32(4 * dx); in decal_nofilter_scale_neon()
162 vuzpq_s16(vreinterpretq_s16_s32(lbase), vreinterpretq_s16_s32(hbase)).val[1] in decal_nofilter_scale_neon()
166 lbase += vdx8; in decal_nofilter_scale_neon()
/external/skia/src/opts/
DSkBitmapProcState_matrix_neon.h68 int32x4_t lbase, hbase; in SCALE_NOFILTER_NAME() local
75 lbase = vdupq_n_s32(SkFractionalIntToFixed(fx)); in SCALE_NOFILTER_NAME()
76 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx1), lbase, 1); in SCALE_NOFILTER_NAME()
77 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx2), lbase, 2); in SCALE_NOFILTER_NAME()
78 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx3), lbase, 3); in SCALE_NOFILTER_NAME()
79 hbase = vaddq_s32(lbase, vdupq_n_s32(SkFractionalIntToFixed(dx4))); in SCALE_NOFILTER_NAME()
86 fx8 = TILEX_PROCF_NEON8(lbase, hbase, maxX); in SCALE_NOFILTER_NAME()
91 lbase = vaddq_s32 (lbase, vdupq_n_s32(SkFractionalIntToFixed(dx8))); in SCALE_NOFILTER_NAME()
DSkBitmapProcState_matrixProcs_neon.cpp152 int32x4_t lbase, hbase; in decal_nofilter_scale_neon() local
153 lbase = vdupq_n_s32(fx); in decal_nofilter_scale_neon()
154 lbase = vsetq_lane_s32(fx + dx, lbase, 1); in decal_nofilter_scale_neon()
155 lbase = vsetq_lane_s32(fx + dx + dx, lbase, 2); in decal_nofilter_scale_neon()
156 lbase = vsetq_lane_s32(fx + dx + dx + dx, lbase, 3); in decal_nofilter_scale_neon()
157 hbase = lbase + vdupq_n_s32(4 * dx); in decal_nofilter_scale_neon()
162 vuzpq_s16(vreinterpretq_s16_s32(lbase), vreinterpretq_s16_s32(hbase)).val[1] in decal_nofilter_scale_neon()
166 lbase += vdx8; in decal_nofilter_scale_neon()
/external/zlib/src/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
187 base = lbase;
/external/python/cpython3/Modules/zlib/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
187 base = lbase;
/external/python/cpython2/Modules/zlib/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
187 base = lbase;
/external/zlib/src/contrib/infback9/
Dinftree9.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
181 base = lbase;
/external/syslinux/com32/lib/zlib/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
187 base = lbase;
/external/deqp/framework/referencerenderer/
DrrFragmentOperations.cpp524 const float lbase = luminosity(cbase); in setLum() local
526 const float ldiff = llum - lbase; in setLum()
/external/deqp/external/openglcts/modules/common/
DglcBlendEquationAdvancedTests.cpp337 float lbase = Luminance(cbase); in SetLum() local
339 float ldiff = llum - lbase; in SetLum()
/external/clang/lib/AST/
DASTContext.cpp7448 const FunctionType *lbase = lhs->getAs<FunctionType>(); in mergeFunctionTypes() local
7450 const FunctionProtoType *lproto = dyn_cast<FunctionProtoType>(lbase); in mergeFunctionTypes()
7459 QualType LHS = lbase->getReturnType(); in mergeFunctionTypes()
7466 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, in mergeFunctionTypes()
7473 CanQualType LRetType = getCanonicalType(lbase->getReturnType()); in mergeFunctionTypes()
7489 FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo(); in mergeFunctionTypes()