Searched refs:appendLength (Results 1 – 5 of 5) sorted by relevance
187 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local188 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()200 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local201 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()219 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local220 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendReverseWeight16()
197 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local198 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()210 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local211 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()229 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local230 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendReverseWeight16()
138 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local139 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendWeight16()151 int32_t appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local152 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendWeight32()171 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local172 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendReverseWeight16()
224 UBool resize(int32_t appendLength, UErrorCode &errorCode);
353 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { in resize() argument357 int32_t newCapacity=length+appendLength; in resize()