Home | History | Annotate | Download | only in codeflinger

Lines Matching refs:Nt

1180     const int Nt = texel.size();
1181 // Nt should always be less than 10 bits because it comes
1187 if (Nt == 1) {
1199 dest.h = Nt;
1203 if ((Nt + Ni) > 32) {
1205 // (Note Nt cannot be more than 10 bits which happens with
1212 if (Nt >= Ni) {
1215 // when shift==16 && Nt<16 && Ni<16, in which
1225 if (Nt<16 && Ni<16) SMULBB(AL, dest.reg, texel.reg, dest.reg);
1228 dest.h = Nt + Ni;
1236 // operation: (Cf*Ct)/((1<<Nt)-1)
1237 // approximated with: Ct*(Cf + Cf>>(Nt-1))>>Nt
1243 ADD(AL, 0, t, texel.reg, reg_imm(texel.reg, LSR, Nt-1));
1244 if (Nt<16 && Ni<16) {
1248 dest.l = Nt;
1249 dest.h = Nt + Ni;