Lines Matching refs:wvalue
628 unsigned int wvalue;
730 wvalue = p_str[0][(idx - 1) / 8];
731 wvalue = (wvalue >> ((idx - 1) % 8)) & mask;
737 ecp_nistz256_gather_w5(&temp[0], table[0], _booth_recode_w5(wvalue) >> 1);
744 wvalue = p_str[i][off] | p_str[i][off + 1] << 8;
745 wvalue = (wvalue >> ((idx - 1) % 8)) & mask;
747 wvalue = _booth_recode_w5(wvalue);
749 ecp_nistz256_gather_w5(&temp[0], table[i], wvalue >> 1);
752 copy_conditional(temp[0].Y, temp[1].Y, (wvalue & 1));
768 wvalue = p_str[i][0];
769 wvalue = (wvalue << 1) & mask;
771 wvalue = _booth_recode_w5(wvalue);
773 ecp_nistz256_gather_w5(&temp[0], table[i], wvalue >> 1);
776 copy_conditional(temp[0].Y, temp[1].Y, wvalue & 1);
969 unsigned int wvalue;
1061 wvalue = (p_str[0] << 1) & mask;
1064 wvalue = _booth_recode_w7(wvalue);
1067 wvalue >> 1);
1070 copy_conditional(p.p.Y, p.p.Z, wvalue & 1);
1099 wvalue = p_str[off] | p_str[off + 1] << 8;
1100 wvalue = (wvalue >> ((idx - 1) % 8)) & mask;
1103 wvalue = _booth_recode_w7(wvalue);
1106 preComputedTable[i], wvalue >> 1);
1109 copy_conditional(t.a.Y, t.p.Z, wvalue & 1);