HomeSort by relevance Sort by last modified time
    Searched refs:otherUsedLen (Results 1 - 2 of 2) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
IntArray.java 289 int otherUsedLen = other.getUsedLength();
290 if (otherUsedLen == 0)
295 int minLen = otherUsedLen + words + 1;
302 for (int i = 0; i < otherUsedLen; ++i)
308 m_ints[otherUsedLen + words] ^= prev;
337 int otherUsedLen = other.getUsedLength();
338 if (otherUsedLen == 0)
343 int minLen = otherUsedLen + words;
349 for (int i = 0; i < otherUsedLen; i++)
LongArray.java 619 // int otherUsedLen = other.getUsedLength();
620 // if (otherUsedLen == 0)
625 // int minLen = otherUsedLen + words + 1;
631 // long carry = addShiftedByBits(m_ints, words, other.m_ints, 0, otherUsedLen, shift);
632 // m_ints[otherUsedLen + words] ^= carry;
684 int otherUsedLen = other.getUsedLength();
685 if (otherUsedLen == 0)
690 int minLen = otherUsedLen + words;
696 add(m_ints, words, other.m_ints, 0, otherUsedLen);
    [all...]

Completed in 62 milliseconds