Home
last modified time | relevance | path

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

/external/skia/src/opts/
DSkBitmapProcState_matrixProcs_neon.cpp157 int32x4_t lbase, hbase; in decal_nofilter_scale_neon() local
158 lbase = vdupq_n_s32(fx); in decal_nofilter_scale_neon()
159 lbase = vsetq_lane_s32(fx + dx, lbase, 1); in decal_nofilter_scale_neon()
160 lbase = vsetq_lane_s32(fx + dx + dx, lbase, 2); in decal_nofilter_scale_neon()
161 lbase = vsetq_lane_s32(fx + dx + dx + dx, lbase, 3); in decal_nofilter_scale_neon()
162 hbase = lbase + vdupq_n_s32(4 * dx); in decal_nofilter_scale_neon()
167 vuzpq_s16(vreinterpretq_s16_s32(lbase), vreinterpretq_s16_s32(hbase)).val[1] in decal_nofilter_scale_neon()
171 lbase += vdx8; in decal_nofilter_scale_neon()
DSkBitmapProcState_matrix_neon.h71 int32x4_t lbase, hbase; in SCALE_NOFILTER_NAME() local
78 lbase = vdupq_n_s32(SkFractionalIntToFixed(fx)); in SCALE_NOFILTER_NAME()
79 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx1), lbase, 1); in SCALE_NOFILTER_NAME()
80 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx2), lbase, 2); in SCALE_NOFILTER_NAME()
81 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx3), lbase, 3); in SCALE_NOFILTER_NAME()
82 hbase = vaddq_s32(lbase, vdupq_n_s32(SkFractionalIntToFixed(dx4))); in SCALE_NOFILTER_NAME()
89 fx8 = TILEX_PROCF_NEON8(lbase, hbase, maxX); in SCALE_NOFILTER_NAME()
94 lbase = vaddq_s32 (lbase, vdupq_n_s32(SkFractionalIntToFixed(dx8))); in SCALE_NOFILTER_NAME()
/external/zlib/src/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
187 base = lbase;
/external/opencv3/3rdparty/zlib/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
187 base = lbase;
/external/pdfium/third_party/zlib_v128/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ in inflate_table() local
187 base = lbase; in inflate_table()
/external/zlib/src/contrib/infback9/
Dinftree9.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
181 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/clang/lib/AST/
DASTContext.cpp7341 const FunctionType *lbase = lhs->getAs<FunctionType>(); in mergeFunctionTypes() local
7343 const FunctionProtoType *lproto = dyn_cast<FunctionProtoType>(lbase); in mergeFunctionTypes()
7352 QualType LHS = lbase->getReturnType(); in mergeFunctionTypes()
7359 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, in mergeFunctionTypes()
7366 CanQualType LRetType = getCanonicalType(lbase->getReturnType()); in mergeFunctionTypes()
7382 FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo(); in mergeFunctionTypes()