Searched refs:endIndex (Results 1 – 5 of 5) sorted by relevance
/openbmc/bmcweb/redfish-core/include/ |
H A D | privileges.hpp | 168 size_t endIndex = basePrivilegeCount; in getActivePrivilegeNames() local 172 endIndex = privilegeNames.size(); in getActivePrivilegeNames() 175 for (; searchIndex < endIndex; searchIndex++) in getActivePrivilegeNames()
|
/openbmc/bmcweb/include/ |
H A D | authentication.hpp | 139 auto endIndex = cookieValue.find(';', startIndex); in performCookieAuth() local 140 if (endIndex == std::string::npos) in performCookieAuth() 142 endIndex = cookieValue.size(); in performCookieAuth() 145 cookieValue.substr(startIndex, endIndex - startIndex); in performCookieAuth()
|
/openbmc/linux/lib/zstd/compress/ |
H A D | zstd_fast.c | 105 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); in ZSTD_compressBlock_fast_noDict_generic() local 106 const U32 prefixStartIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_fast_noDict_generic() 406 const U32 endIndex = (U32)((size_t)(ip - base) + srcSize); in ZSTD_compressBlock_fast_dictMatchState_generic() local 407 assert(endIndex - prefixStartIndex <= maxDistance); in ZSTD_compressBlock_fast_dictMatchState_generic() 408 … (void)maxDistance; (void)endIndex; /* these variables are not used when assert() is disabled */ in ZSTD_compressBlock_fast_dictMatchState_generic() 562 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); in ZSTD_compressBlock_fast_extDict_generic() local 563 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_fast_extDict_generic()
|
H A D | zstd_double_fast.c | 63 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); in ZSTD_compressBlock_doubleFast_noDict_generic() local 65 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_doubleFast_noDict_generic() 271 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local 273 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 296 assert(ms->window.dictLimit + (1U << cParams->windowLog) >= endIndex); in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 546 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); in ZSTD_compressBlock_doubleFast_extDict_generic() local 547 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_doubleFast_extDict_generic()
|
/openbmc/linux/lib/lz4/ |
H A D | lz4hc_compress.c | 753 U32 const endIndex = (U32)(streamPtr->end - streamPtr->base); in LZ4_saveDictHC() local 756 streamPtr->base = streamPtr->end - endIndex; in LZ4_saveDictHC() 757 streamPtr->dictLimit = endIndex - dictSize; in LZ4_saveDictHC() 758 streamPtr->lowLimit = endIndex - dictSize; in LZ4_saveDictHC()
|