Lines Matching defs:window
759 * of a full window.)
795 * Fixed window exponentiation
806 /* At any given time, window contains window_bits bits from E.
809 mbedtls_mpi_uint window = 0;
822 /* Insert next exponent bit into window */
824 window <<= 1;
825 window |= (E[E_limb_index] >> E_bit_index) & 1;
827 /* Clear window if it's full. Also clear the window at the end,
831 /* Select Wtable[window] without leaking window through
834 AN_limbs, welem, window);
838 window = 0;