• Home
  • Raw
  • Download

Lines Matching refs:fs

74     int fs = component==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc;  in build_blending()  local
76 if (fs==GGL_SRC_ALPHA_SATURATE && component==GGLFormat::ALPHA) in build_blending()
77 fs = GGL_ONE; in build_blending()
78 const int blending = blending_codes(fs, fd); in build_blending()
103 (fs==GGL_DST_COLOR && fd==GGL_ONE_MINUS_DST_COLOR) || in build_blending()
104 (fs==GGL_SRC_COLOR && fd==GGL_ONE_MINUS_SRC_COLOR) || in build_blending()
105 (fs==GGL_DST_ALPHA && fd==GGL_ONE_MINUS_DST_ALPHA) || in build_blending()
106 (fs==GGL_SRC_ALPHA && fd==GGL_ONE_MINUS_SRC_ALPHA); in build_blending()
109 (fs==GGL_ONE_MINUS_DST_COLOR && fd==GGL_DST_COLOR) || in build_blending()
110 (fs==GGL_ONE_MINUS_SRC_COLOR && fd==GGL_SRC_COLOR) || in build_blending()
111 (fs==GGL_ONE_MINUS_DST_ALPHA && fd==GGL_DST_ALPHA) || in build_blending()
112 (fs==GGL_ONE_MINUS_SRC_ALPHA && fd==GGL_SRC_ALPHA); in build_blending()
172 build_blend_factor(factor, fs, in build_blending()
204 if (fs==GGL_ZERO) { in build_blending()
215 } else if (fs==GGL_ONE) { in build_blending()
230 build_blend_factor(src_factor, fs, in build_blending()
378 int GGLAssembler::blending_codes(int fs, int fd) in blending_codes() argument
381 switch(fs) { in blending_codes()
480 int fs = f.size(); in mul_factor() local
481 int ms = vs+fs; in mul_factor()
497 if (fs<16) { in mul_factor()
499 } else if (GGL_BETWEEN(fs, 24, 31)) { in mul_factor()
504 fshift = fs - 15; in mul_factor()
509 if (fs<16) { in mul_factor()
512 } else if (GGL_BETWEEN(fs, 24, 31)) { in mul_factor()
517 fshift = fs - 15; in mul_factor()
522 if (fs<16) { in mul_factor()
527 } else if (GGL_BETWEEN(fs, 24, 31)) { in mul_factor()
534 fshift = fs - 15; in mul_factor()
541 ALOGE_IF(ms>=32, "mul_factor overflow vs=%d, fs=%d", vs, fs); in mul_factor()
561 d.l = fs; in mul_factor()
575 int fs = f.size(); in mul_factor_add() local
577 int ms = vs+fs; in mul_factor_add()
579 ALOGE_IF(ms>=32, "mul_factor_add overflow vs=%d, fs=%d, as=%d", vs, fs, as); in mul_factor_add()
606 if (vs<16 && fs<16) SMLABB(AL, d.reg, v.reg, f.reg, add.reg); in mul_factor_add()
617 if (vs<16 && fs<16) SMULBB(AL, temp, v.reg, f.reg); in mul_factor_add()
632 d.l = fs>a.l ? fs : a.l; in mul_factor_add()