• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ec/

Lines Matching refs:wvalue

584     unsigned int wvalue;
668 wvalue = p_str[0][(index - 1) / 8];
669 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
671 ecp_nistz256_select_w5(r, table[0], _booth_recode_w5(wvalue) >> 1);
677 wvalue = p_str[i][off] | p_str[i][off + 1] << 8;
678 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
680 wvalue = _booth_recode_w5(wvalue);
682 ecp_nistz256_select_w5(&h, table[i], wvalue >> 1);
685 copy_conditional(h.Y, tmp, (wvalue & 1));
701 wvalue = p_str[i][0];
702 wvalue = (wvalue << 1) & mask;
704 wvalue = _booth_recode_w5(wvalue);
706 ecp_nistz256_select_w5(&h, table[i], wvalue >> 1);
709 copy_conditional(h.Y, tmp, wvalue & 1);
949 unsigned int wvalue;
965 wvalue = *((u16 *) & p_str[0]);
966 wvalue = (wvalue << 1) & mask;
968 booth_recode_w7(&sign0, &digit0, wvalue);
969 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
970 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
972 booth_recode_w7(&sign1, &digit1, wvalue);
973 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
974 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
976 booth_recode_w7(&sign2, &digit2, wvalue);
977 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
978 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
980 booth_recode_w7(&sign3, &digit3, wvalue);
999 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1000 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1002 booth_recode_w7(&sign0, &digit0, wvalue);
1003 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1004 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1006 booth_recode_w7(&sign1, &digit1, wvalue);
1007 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1008 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1010 booth_recode_w7(&sign2, &digit2, wvalue);
1011 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1012 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1014 booth_recode_w7(&sign3, &digit3, wvalue);
1035 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1036 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1038 booth_recode_w7(&sign0, &digit0, wvalue);
1039 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1040 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1042 booth_recode_w7(&sign1, &digit1, wvalue);
1043 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1044 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1046 booth_recode_w7(&sign2, &digit2, wvalue);
1047 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1048 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1050 booth_recode_w7(&sign3, &digit3, wvalue);
1078 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1079 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1080 booth_recode_w7(&sign0, &digit0, wvalue);
1140 unsigned int wvalue;
1253 wvalue = (p_str[0] << 1) & mask;
1256 wvalue = _booth_recode_w7(wvalue);
1258 ecp_nistz256_select_w7(&p.a, preComputedTable[0], wvalue >> 1);
1261 copy_conditional(p.p.Y, p.p.Z, wvalue & 1);
1267 wvalue = p_str[off] | p_str[off + 1] << 8;
1268 wvalue = (wvalue >> ((index - 1) % 8)) & mask;
1271 wvalue = _booth_recode_w7(wvalue);
1274 preComputedTable[i], wvalue >> 1);
1277 copy_conditional(t.a.Y, t.p.Z, wvalue & 1);