Searched refs:appendLength (Results 1 – 7 of 7) 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()
1067 int32_t appendLength = updatedKeysAndValues.length(); in uloc_setKeywordValue() local1068 if (appendLength >= bufferCapacity - needLen) { in uloc_setKeywordValue()1070 return needLen + appendLength; in uloc_setKeywordValue()
224 UBool resize(int32_t appendLength, UErrorCode &errorCode);
352 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { in resize() argument356 int32_t newCapacity=length+appendLength; in resize()