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

/vbox/src/VBox/Runtime/common/string/
H A Dstrcache.cpp668 PRTSTRCACHEBIGENTRY pBigEntry = (PRTSTRCACHEBIGENTRY)RTMemAlloc(RT_ALIGN_Z(cbEntry, RTSTRCACHE_HEAP_ENTRY_SIZE_ALIGN)); local
669 if (!pBigEntry)
675 RTListAppend(&pThis->BigEntryList, &pBigEntry->ListEntry);
677 pBigEntry->cchString = cchString;
678 pBigEntry->uHash = uHash;
679 pBigEntry->Core.cRefs = 1;
680 pBigEntry->Core.uHash = (uint16_t)uHash;
681 pBigEntry->Core.cchString = RTSTRCACHEENTRY_BIG_LEN;
682 memcpy(pBigEntry->Core.szString, pchString, cchString);
683 pBigEntry
808 PRTSTRCACHEBIGENTRY pBigEntry = RT_FROM_MEMBER(pEntry, RTSTRCACHEBIGENTRY, Core); local
[all...]

Completed in 34 milliseconds