Home | History | Annotate | Download | only in math

Lines Matching refs:base_index

327   const int base_index = shift >> 5;
340 x->v32[4-1] = x->v32[4-1-base_index];
341 for (i=4-1; i > base_index; i--)
342 x->v32[i-1] = x->v32[i-1-base_index];
347 for (i = 4; i > base_index; i--) {
348 from = i-1 - base_index;
358 for (i=0; i < base_index; i++)
366 const int base_index = shift >> 5;
375 for (i=0; i < 4 - base_index; i++)
376 x->v32[i] = x->v32[i+base_index];
378 for (i=0; i < 4 - base_index - 1; i++)
379 x->v32[i] = (x->v32[i+base_index] >> bit_index) ^
380 (x->v32[i+base_index+1] << (32 - bit_index));
381 x->v32[4 - base_index-1] = x->v32[4-1] >> bit_index;
385 for (i = 4 - base_index; i < 4; i++)
483 const int base_index = shift >> 5;
493 for (i=0; i < word_length - base_index; i++)
494 x->word[i] = x->word[i+base_index];
496 for (i=0; i < word_length - base_index - 1; i++)
497 x->word[i] = (x->word[i+base_index] >> bit_index) ^
498 (x->word[i+base_index+1] << (32 - bit_index));
499 x->word[word_length - base_index-1] = x->word[word_length-1] >> bit_index;
503 for (i = word_length - base_index; i < word_length; i++)