Searched defs:RTSTRCACHEENTRY_BIG_LEN (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dstrcache.cpp136 * If this is set to RTSTRCACHEENTRY_BIG_LEN, this is a BIG entry
149 #define RTSTRCACHEENTRY_BIG_LEN UINT16_MAX macro
446 * @param uHashLen The hash + length (not RTSTRCACHEENTRY_BIG_LEN).
495 if (cchString == RTSTRCACHEENTRY_BIG_LEN)
681 pBigEntry->Core.cchString = RTSTRCACHEENTRY_BIG_LEN;
765 * @param uHashLen The hash + length (not RTSTRCACHEENTRY_BIG_LEN).
780 ? (uint16_t)cchString : RTSTRCACHEENTRY_BIG_LEN;
800 if (pEntry->cchString != RTSTRCACHEENTRY_BIG_LEN)
977 Assert(!((uintptr_t)pStr & 15) || pStr->cchString == RTSTRCACHEENTRY_BIG_LEN);
994 uint32_t cchString = pStr->cchString == RTSTRCACHEENTRY_BIG_LEN
1161 Assert(cRefs < UINT32_MAX / 2); if (!cRefs) return rtStrCacheFreeEntry(pThis, pStr); return cRefs; } RT_EXPORT_SYMBOL(RTStrCacheRelease); RTDECL(size_t) RTStrCacheLength(const char *psz) { if (!psz) return 0; AssertPtr(psz); PRTSTRCACHEENTRY pStr = RT_FROM_MEMBER(psz, RTSTRCACHEENTRY, szString); if (pStr->cchString == RTSTRCACHEENTRY_BIG_LEN) argument
[all...]

Completed in 45 milliseconds