Searched refs:appendLength (Results 1 – 5 of 5) sorted by relevance
185 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local186 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()198 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local199 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()217 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local218 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendReverseWeight16()
189 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local190 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()202 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local203 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()221 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local222 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendReverseWeight16()
136 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local137 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendWeight16()149 int32_t appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local150 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendWeight32()169 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local170 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendReverseWeight16()
203 UBool resize(int32_t appendLength, UErrorCode &errorCode);
179 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { in resize() argument183 int32_t newCapacity=length+appendLength; in resize()