HomeSort by relevance Sort by last modified time
    Searched refs:fFlagAndLength (Results 1 - 2 of 2) sorted by null

  /external/icu4c/i18n/
sortkey.cpp 52 : UObject(), fFlagAndLength(0),
59 : UObject(), fFlagAndLength(count),
74 : UObject(other), fFlagAndLength(other.getLength()),
83 int32_t length = fFlagAndLength;
96 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); }
105 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); }
108 fFlagAndLength |= 0x80000000;
114 fFlagAndLength = (fFlagAndLength & 0x80000000) | newLength;
122 fFlagAndLength &= 0x80000000
    [all...]
  /external/icu4c/i18n/unicode/
sortkey.h 256 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes;
259 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes;
262 return (fFlagAndLength >= 0) ? (int32_t)sizeof(fUnion) : fUnion.fFields.fCapacity;
264 int32_t getLength() const { return fFlagAndLength & 0x7fffffff; }
294 int32_t fFlagAndLength;
305 /** fStackBuffer is used iff fFlagAndLength>=0, else fFields is used */

Completed in 76 milliseconds