Searched refs:fFlagAndLength (Results 1 – 2 of 2) sorted by relevance
52 : UObject(), fFlagAndLength(0), in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()59 : UObject(), fFlagAndLength(count), in CollationKey()74 : UObject(other), fFlagAndLength(other.getLength()), in CollationKey()83 int32_t length = fFlagAndLength; in CollationKey()96 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); } in ~CollationKey()105 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); } in reallocate()108 fFlagAndLength |= 0x80000000; in reallocate()114 fFlagAndLength = (fFlagAndLength & 0x80000000) | newLength; in setLength()122 fFlagAndLength &= 0x80000000; in reset()132 fFlagAndLength &= 0x80000000; in setToBogus()[all …]
257 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes; in getBytes()260 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes; in getBytes()263 return (fFlagAndLength >= 0) ? (int32_t)sizeof(fUnion) : fUnion.fFields.fCapacity; in getCapacity()265 int32_t getLength() const { return fFlagAndLength & 0x7fffffff; } in getLength()295 int32_t fFlagAndLength; variable