Home | History | Annotate | Download | only in i18n

Lines Matching refs:fBytes

50       fHashCode(kEmptyHashCode), fBytes(NULL)
59 fBytes = (uint8_t *)uprv_malloc(count);
61 if (fBytes == NULL)
67 uprv_memcpy(fBytes, newValues, fCount);
72 fHashCode(other.fHashCode), fBytes(NULL)
80 fBytes = (uint8_t *)uprv_malloc(fCapacity);
82 if (fBytes == NULL)
88 uprv_memcpy(fBytes, other.fBytes, other.fCount);
90 uprv_memset(fBytes+fCount, 0, fCapacity-fCount);
96 uprv_free(fBytes);
100 if(fBytes != NULL) {
101 uprv_free(fBytes);
104 fBytes = values;
125 uprv_free(fBytes);
126 fBytes = NULL;
139 (this->fBytes == source.fBytes ||
140 uprv_memcmp(this->fBytes, source.fBytes, this->fCount) == 0));
153 if (other.fBytes != NULL)
163 uprv_memcpy(fBytes, other.fBytes, fCount);
183 uint8_t *src = this->fBytes;
184 uint8_t *tgt = target.fBytes;
260 uint8_t *src = this->fBytes;
261 uint8_t *tgt = target.fBytes;
308 uprv_free(fBytes);
310 fBytes = (uint8_t *)uprv_malloc(newSize);
312 if (fBytes == NULL)
317 uprv_memset(fBytes, 0, fCapacity);
342 uprv_memcpy(result, fBytes, fCount);
361 key.pointer = fBytes;
370 const uint8_t *p = fBytes, *limit = fBytes + fCount;