Home
last modified time | relevance | path

Searched refs:nextSrc (Results 1 – 12 of 12) sorted by relevance

/external/skqp/src/utils/
DSkInterpolator.cpp190 const SkScalar* nextSrc = &fValues[index * fElemCount]; in timeToValues() local
193 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar)); in timeToValues()
197 const SkScalar* prevSrc = nextSrc - fElemCount; in timeToValues()
200 values[i] = SkScalarInterp(prevSrc[i], nextSrc[i], T); in timeToValues()
/external/icu/icu4c/source/common/
Dbytesinkutil.h37 static inline void appendCodePoint(const uint8_t *src, const uint8_t *nextSrc, UChar32 c,
39 appendCodePoint((int32_t)(nextSrc - src), c, sink, edits);
Dnormalizer2impl.cpp1496 const UChar *nextSrc; in compose() local
1506 nextSrc = src; in compose()
1507 UCPTRIE_FAST_U16_NEXT(normTrie, UCPTRIE_16, nextSrc, limit, c, n16); in compose()
1519 src = nextSrc; in compose()
1525 src = nextSrc; in compose()
1657 const UChar *nextSrc; in composeQuickCheck() local
1670 nextSrc = src; in composeQuickCheck()
1671 UCPTRIE_FAST_U16_NEXT(normTrie, UCPTRIE_16, nextSrc, limit, c, norm16); in composeQuickCheck()
1680 src = nextSrc; in composeQuickCheck()
1685 src = nextSrc; in composeQuickCheck()
[all …]
/external/icu/libicu/cts_headers/
Dbytesinkutil.h37 static inline void appendCodePoint(const uint8_t *src, const uint8_t *nextSrc, UChar32 c,
39 appendCodePoint((int32_t)(nextSrc - src), c, sink, edits);
/external/zstd/lib/compress/
Dzstd_compress_internal.h144 BYTE const* nextSrc; /* next block here to continue on current prefix */ member
791 size_t const endT = (size_t)(window->nextSrc - window->base); in ZSTD_window_clear()
999 window->nextSrc = window->base + 1; /* see issue #1241 */ in ZSTD_window_init()
1020 if (src != window->nextSrc) { in ZSTD_window_update()
1022 size_t const distanceFromBase = (size_t)(window->nextSrc - window->base); in ZSTD_window_update()
1033 window->nextSrc = ip + srcSize; in ZSTD_window_update()
Dzstd_lazy.c173 const BYTE* const dictEnd = dms->window.nextSrc; in ZSTD_DUBT_findBetterDictMatch()
174 U32 const dictHighLimit = (U32)(dms->window.nextSrc - dms->window.base); in ZSTD_DUBT_findBetterDictMatch()
666 const BYTE* const ddsEnd = dms->window.nextSrc; in ZSTD_HcFindBestMatch_generic()
754 const BYTE* const dmsEnd = dms->window.nextSrc; in ZSTD_HcFindBestMatch_generic()
910 const BYTE* const dictEnd = isDxS ? dms->window.nextSrc : NULL; in ZSTD_compressBlock_lazy_generic()
Dzstd_ldm.c460 assert(ldmState->window.nextSrc >= (BYTE const*)src + srcSize); in ZSTD_ldm_generateSequences()
Dzstd_fast.c233 const BYTE* const dictEnd = dms->window.nextSrc; in ZSTD_compressBlock_fast_dictMatchState_generic()
Dzstd_double_fast.c89 dms->window.nextSrc : NULL; in ZSTD_compressBlock_doubleFast_generic()
Dzstd_opt.c550 const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.nextSrc : NULL; in ZSTD_insertBtAndGetAllMatches()
Dzstd_compress.c1595 return (size_t)(w.nextSrc - w.base) > (ZSTD_CURRENT_MAX - ZSTD_INDEXOVERFLOW_MARGIN); in ZSTD_indexTooCloseToMax()
1833 { const U32 cdictEnd = (U32)( cdict->matchState.window.nextSrc in ZSTD_resetCCtx_byAttachingCDict()
1846 cctx->blockState.matchState.window.nextSrc = in ZSTD_resetCCtx_byAttachingCDict()
Dzstdmt_compress.c1554 prefix.size = window.nextSrc - (window.base + window.dictLimit); in ZSTDMT_doesOverlapWindow()