Lines Matching refs:fCount
49 : UObject(), fBogus(FALSE), fCount(0), fCapacity(0), in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
56 : UObject(), fBogus(FALSE), fCount(count), fCapacity(count), in CollationKey()
67 uprv_memcpy(fBytes, newValues, fCount); in CollationKey()
71 : UObject(other), fBogus(FALSE), fCount(other.fCount), fCapacity(other.fCapacity), in CollationKey()
88 uprv_memcpy(fBytes, other.fBytes, other.fCount); in CollationKey()
89 if(fCapacity>fCount) { in CollationKey()
90 uprv_memset(fBytes+fCount, 0, fCapacity-fCount); in CollationKey()
105 fCount = count; in adopt()
114 fCount = 0; in reset()
129 fCount = 0; in setToBogus()
138 return (this->fCount == source.fCount && in operator ==()
140 uprv_memcmp(this->fBytes, source.fBytes, this->fCount) == 0)); in operator ==()
155 ensureCapacity(other.fCount); in operator =()
163 uprv_memcpy(fBytes, other.fBytes, fCount); in operator =()
167 fCount = 0; in operator =()
214 if (this->fCount != target.fCount) { in compareTo()
215 if (this->fCount < target.fCount) { in compareTo()
216 minLength = this->fCount; in compareTo()
220 minLength = target.fCount; in compareTo()
225 minLength = target.fCount; in compareTo()
271 if (this->fCount != target.fCount) { in compareTo()
272 if (this->fCount < target.fCount) { in compareTo()
273 minLength = this->fCount; in compareTo()
277 minLength = target.fCount; in compareTo()
282 minLength = target.fCount; in compareTo()
322 fCount = newSize; in ensureCapacity()
333 uint8_t *result = (uint8_t*) uprv_malloc( sizeof(uint8_t) * fCount ); in toByteArray()
341 count = fCount; in toByteArray()
342 uprv_memcpy(result, fBytes, fCount); in toByteArray()
370 const uint8_t *p = fBytes, *limit = fBytes + fCount; in hashCode()
371 int32_t inc = (fCount >= 256) ? fCount/128 : 2; // inc = max(fSize/64, 1); in hashCode()