Lines Matching defs:table
36 /* maximum precomputation table size for *variable* sliding windows */
502 * layout so that accessing any of these table values shows the same access
504 * used to transfer a BIGNUM from/to that table.
513 BN_ULONG *table = (BN_ULONG *)buf;
519 table[j] = b->d[i];
532 * We declare table 'volatile' in order to discourage compiler
533 * from reordering loads from the table. Concern is that if
539 volatile BN_ULONG *table = (volatile BN_ULONG *)buf;
545 for (i = 0; i < top; i++, table += width) {
549 acc |= table[j] &
567 for (i = 0; i < top; i++, table += width) {
571 acc |= ( (table[j + 0 * xstride] & y0) |
572 (table[j + 1 * xstride] & y1) |
573 (table[j + 2 * xstride] & y2) |
574 (table[j + 3 * xstride] & y3) )
749 /* lay down tmp and am right after powers table */
780 const BN_ULONG *n0, const void *table,
783 const BN_ULONG *n0, const void *table,
786 const BN_ULONG *n0, const void *table,
789 const BN_ULONG *n0, const void *table,
792 const BN_ULONG *n0, const void *table,
827 const void *table, const BN_ULONG *np,
830 void *table, size_t power);
832 void *table, size_t power);
936 const void *table, const BN_ULONG *np,
939 void *table, size_t power);
940 void bn_gather5(BN_ULONG *out, size_t num, void *table, size_t power);
942 const void *table, const BN_ULONG *np,