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

Lines Matching refs:p_str

581     unsigned char (*p_str)[33] = NULL;
593 || (p_str =
622 p_str[i][j + 0] = d & 0xff;
623 p_str[i][j + 1] = (d >> 8) & 0xff;
624 p_str[i][j + 2] = (d >> 16) & 0xff;
625 p_str[i][j + 3] = (d >>= 24) & 0xff;
628 p_str[i][j + 4] = d & 0xff;
629 p_str[i][j + 5] = (d >> 8) & 0xff;
630 p_str[i][j + 6] = (d >> 16) & 0xff;
631 p_str[i][j + 7] = (d >> 24) & 0xff;
635 p_str[i][j] = 0;
668 wvalue = p_str[0][(index - 1) / 8];
677 wvalue = p_str[i][off] | p_str[i][off + 1] << 8;
701 wvalue = p_str[i][0];
718 if (p_str)
719 OPENSSL_free(p_str);
944 unsigned char p_str[33],
965 wvalue = *((u16 *) & p_str[0]);
969 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
973 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
977 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
999 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1003 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1007 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1011 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1035 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1039 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1043 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1047 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1078 wvalue = *((u16 *) & p_str[(index - 1) / 8]);
1130 unsigned char p_str[33] = { 0 };
1230 p_str[i + 0] = d & 0xff;
1231 p_str[i + 1] = (d >> 8) & 0xff;
1232 p_str[i + 2] = (d >> 16) & 0xff;
1233 p_str[i + 3] = (d >>= 24) & 0xff;
1236 p_str[i + 4] = d & 0xff;
1237 p_str[i + 5] = (d >> 8) & 0xff;
1238 p_str[i + 6] = (d >> 16) & 0xff;
1239 p_str[i + 7] = (d >> 24) & 0xff;
1244 p_str[i] = 0;
1248 ecp_nistz256_avx2_mul_g(&p.p, p_str, preComputedTable);
1253 wvalue = (p_str[0] << 1) & mask;
1267 wvalue = p_str[off] | p_str[off + 1] << 8;