Searched refs:otherLen (Results 1 – 6 of 6) sorted by relevance
/external/icu/icu4c/source/common/unicode/ |
D | uniset.h | 1568 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity); 1570 void add(const UChar32* other, int32_t otherLen, int8_t polarity); 1572 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
|
/external/icu/icu4c/source/common/ |
D | uniset.cpp | 1728 void UnicodeSet::exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity) { in exclusiveOr() argument 1732 if (!ensureBufferCapacity(len + otherLen)) { in exclusiveOr() 1776 void UnicodeSet::add(const UChar32* other, int32_t otherLen, int8_t polarity) { in add() argument 1780 if (!ensureBufferCapacity(len + otherLen)) { in add() 1887 void UnicodeSet::retain(const UChar32* other, int32_t otherLen, int8_t polarity) { in retain() argument 1891 if (!ensureBufferCapacity(len + otherLen)) { in retain()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | LongArray.java | 661 int otherLen = (otherDegree + 63) >>> 6; in addShiftedByBitsSafe() local 668 add(m_ints, words, other.m_ints, 0, otherLen); in addShiftedByBitsSafe() 672 long carry = addShiftedUp(m_ints, words, other.m_ints, 0, otherLen, shift); in addShiftedByBitsSafe() 675 m_ints[otherLen + words] ^= carry; in addShiftedByBitsSafe()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/ |
D | LongArray.java | 662 int otherLen = (otherDegree + 63) >>> 6; in addShiftedByBitsSafe() local 669 add(m_ints, words, other.m_ints, 0, otherLen); in addShiftedByBitsSafe() 673 long carry = addShiftedUp(m_ints, words, other.m_ints, 0, otherLen, shift); in addShiftedByBitsSafe() 676 m_ints[otherLen + words] ^= carry; in addShiftedByBitsSafe()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | UnicodeSet.java | 2991 private UnicodeSet xor(int[] other, int otherLen, int polarity) { in xor() argument 2992 ensureBufferCapacity(len + otherLen); in xor() 3041 private UnicodeSet add(int[] other, int otherLen, int polarity) { in add() argument 3042 ensureBufferCapacity(len + otherLen); in add() 3139 private UnicodeSet retain(int[] other, int otherLen, int polarity) { in retain() argument 3140 ensureBufferCapacity(len + otherLen); in retain()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeSet.java | 3064 private UnicodeSet xor(int[] other, int otherLen, int polarity) { in xor() argument 3065 ensureBufferCapacity(len + otherLen); in xor() 3114 private UnicodeSet add(int[] other, int otherLen, int polarity) { in add() argument 3115 ensureBufferCapacity(len + otherLen); in add() 3212 private UnicodeSet retain(int[] other, int otherLen, int polarity) { in retain() argument 3213 ensureBufferCapacity(len + otherLen); in retain()
|