Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkBitmapProcState_matrixProcs.cpp170 int32x4_t lbase, hbase; in decal_nofilter_scale() local
178 lbase = vdupq_n_s32(fx); in decal_nofilter_scale()
179 lbase = vsetq_lane_s32(fx1, lbase, 1); in decal_nofilter_scale()
180 lbase = vsetq_lane_s32(fx2, lbase, 2); in decal_nofilter_scale()
181 lbase = vsetq_lane_s32(fx3, lbase, 3); in decal_nofilter_scale()
182 hbase = vaddq_s32(lbase, vdupq_n_s32(dx4)); in decal_nofilter_scale()
189 lout = lbase; in decal_nofilter_scale()
197 lbase = vaddq_s32 (lbase, vdupq_n_s32(dx8)); in decal_nofilter_scale()
DSkBitmapProcState_matrix_repeat.h107 int32x4_t lbase, hbase; in SCALE_NOFILTER_NAME() local
114 lbase = vdupq_n_s32(fx); in SCALE_NOFILTER_NAME()
115 lbase = vsetq_lane_s32(fx1, lbase, 1); in SCALE_NOFILTER_NAME()
116 lbase = vsetq_lane_s32(fx2, lbase, 2); in SCALE_NOFILTER_NAME()
117 lbase = vsetq_lane_s32(fx3, lbase, 3); in SCALE_NOFILTER_NAME()
118 hbase = vaddq_s32(lbase, vdupq_n_s32(dx4)); in SCALE_NOFILTER_NAME()
129 lout = vandq_s32(lbase, vdupq_n_s32(0xffff)); in SCALE_NOFILTER_NAME()
142 lbase = vaddq_s32 (lbase, vdupq_n_s32(dx8)); in SCALE_NOFILTER_NAME()
DSkBitmapProcState_matrix_clamp.h109 int32x4_t lbase, hbase; in SCALE_NOFILTER_NAME() local
118 lbase = vdupq_n_s32(fx); in SCALE_NOFILTER_NAME()
119 lbase = vsetq_lane_s32(fx1, lbase, 1); in SCALE_NOFILTER_NAME()
120 lbase = vsetq_lane_s32(fx2, lbase, 2); in SCALE_NOFILTER_NAME()
121 lbase = vsetq_lane_s32(fx3, lbase, 3); in SCALE_NOFILTER_NAME()
123 hbase = vaddq_s32(lbase, vdupq_n_s32(dx4)); in SCALE_NOFILTER_NAME()
132 lout = lbase; in SCALE_NOFILTER_NAME()
144 lbase = vaddq_s32 (lbase, vdupq_n_s32(dx8)); in SCALE_NOFILTER_NAME()
/external/zlib/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
187 base = lbase;
/external/zlib/contrib/infback9/
Dinftree9.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
181 base = lbase;
/external/qemu/distrib/zlib-1.2.3/
Dinftrees.c60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ local
188 base = lbase;
/external/clang/lib/AST/
DASTContext.cpp5498 const FunctionType *lbase = lhs->getAs<FunctionType>(); in mergeFunctionTypes() local
5500 const FunctionProtoType *lproto = dyn_cast<FunctionProtoType>(lbase); in mergeFunctionTypes()
5509 QualType LHS = lbase->getResultType(); in mergeFunctionTypes()
5516 retType = mergeTypes(lbase->getResultType(), rbase->getResultType(), false, in mergeFunctionTypes()
5523 CanQualType LRetType = getCanonicalType(lbase->getResultType()); in mergeFunctionTypes()
5539 FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo(); in mergeFunctionTypes()