Searched refs:factor (Results 1 - 6 of 6) sorted by relevance

/system/core/libpixelflinger/codeflinger/
H A Dblending.cpp50 integer_t factor(scratches.obtain(), 16, CORRUPTIBLE);
51 CONTEXT_LOAD(factor.reg, generated_vars.f);
53 // clamp fog factor (TODO: see if there is a way to guarantee
55 BIC(AL, 0, factor.reg, factor.reg, reg_imm(factor.reg, ASR, 31));
56 CMP(AL, factor.reg, imm( 0x10000 ));
57 MOV(HS, 0, factor.reg, imm( 0x10000 ));
59 build_blendFOneMinusF(temp, factor, fragment, fogColor);
169 integer_t factor;
[all...]
H A Dtexturing.cpp1271 integer_t factor(locals.obtain(), 32, CORRUPTIBLE);
1273 extract(factor, incomingTexel, GGLFormat::ALPHA);
1288 ADD(AL, 0, factor.reg, factor.reg, reg_imm(factor.reg, LSR, factor.s-1));
1289 build_blendOneMinusFF(dest, factor, incomingNorm, texel);
1308 integer_t factor(locals.obtain(), 32, CORRUPTIBLE);
1311 extract(factor, incomingTexel, component);
1326 ADD(AL, 0, factor
[all...]
H A DGGLAssembler.h477 integer_t& factor, int f, int component,
484 const integer_t& factor,
489 const integer_t& factor,
/system/core/sh/
H A Dmiscbltin.c294 int factor; /* multiply by to get rlim_{cur,max} values */ member in struct:limits
390 val *= l->factor;
406 val /= l->factor;
435 val /= l->factor;
/system/extras/tests/sdcard/
H A Dplot_sdcard.py68 factor = len(self.data) / length
70 if factor > 1:
77 if idx % factor == 0:
79 new_data.append(accum / factor)
/system/core/libpixelflinger/
H A Dscanline.cpp447 static void blend_factor(context_t* c, pixel_t* r, uint32_t factor,
526 uint32_t factor, const pixel_t* src, const pixel_t* dst)
528 switch (factor) {
803 uint32_t factor = Ct + (Ct>>(st-1)); local
804 Cf = (Cf * factor) >> st;
818 uint32_t factor = Ct + (Ct>>(st-1)); local
819 Cf = ((((1<<st) - factor) * Cf) + Ct*Cc)>>st;
525 blend_factor(context_t* c, pixel_t* r, uint32_t factor, const pixel_t* src, const pixel_t* dst) argument

Completed in 652 milliseconds