Home | History | Annotate | Download | only in i18n

Lines Matching refs:fCount

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