Home
last modified time | relevance | path

Searched refs:ct (Results 1 – 3 of 3) sorted by relevance

/lib/zstd/
Dfse.h129 …_usingCTable(void *dst, size_t dstCapacity, const void *src, size_t srcSize, const FSE_CTable *ct);
266 size_t FSE_buildCTable_raw(FSE_CTable *ct, unsigned nbBits);
269 size_t FSE_buildCTable_rle(FSE_CTable *ct, unsigned char symbolValue);
276 size_t FSE_buildCTable_wksp(FSE_CTable *ct, const short *normalizedCounter, unsigned maxSymbolValue…
301 static void FSE_initCState(FSE_CState_t *CStatePtr, const FSE_CTable *ct);
427 ZSTD_STATIC void FSE_initCState(FSE_CState_t *statePtr, const FSE_CTable *ct) in FSE_initCState() argument
429 const void *ptr = ct; in FSE_initCState()
434 statePtr->symbolTT = ((const U32 *)ct + 1 + (tableLog ? (1 << (tableLog - 1)) : 1)); in FSE_initCState()
441 ZSTD_STATIC void FSE_initCState2(FSE_CState_t *statePtr, const FSE_CTable *ct, U32 symbol) in FSE_initCState2() argument
443 FSE_initCState(statePtr, ct); in FSE_initCState2()
Dfse_compress.c92 size_t FSE_buildCTable_wksp(FSE_CTable *ct, const short *normalizedCounter, unsigned maxSymbolValue… in FSE_buildCTable_wksp() argument
96 void *const ptr = ct; in FSE_buildCTable_wksp()
666 size_t FSE_buildCTable_raw(FSE_CTable *ct, unsigned nbBits) in FSE_buildCTable_raw() argument
671 void *const ptr = ct; in FSE_buildCTable_raw()
702 size_t FSE_buildCTable_rle(FSE_CTable *ct, BYTE symbolValue) in FSE_buildCTable_rle() argument
704 void *ptr = ct; in FSE_buildCTable_rle()
724 …d *dst, size_t dstSize, const void *src, size_t srcSize, const FSE_CTable *ct, const unsigned fast) in FSE_compress_usingCTable_generic() argument
745 FSE_initCState2(&CState1, ct, *--ip); in FSE_compress_usingCTable_generic()
746 FSE_initCState2(&CState2, ct, *--ip); in FSE_compress_usingCTable_generic()
750 FSE_initCState2(&CState2, ct, *--ip); in FSE_compress_usingCTable_generic()
[all …]
/lib/
Dstring.c380 int strcmp(const char *cs, const char *ct) in strcmp() argument
386 c2 = *ct++; in strcmp()
404 int strncmp(const char *cs, const char *ct, size_t count) in strncmp() argument
410 c2 = *ct++; in strncmp()
647 char *strpbrk(const char *cs, const char *ct) in strpbrk() argument
652 for (sc2 = ct; *sc2 != '\0'; ++sc2) { in strpbrk()
674 char *strsep(char **s, const char *ct) in strsep() argument
682 end = strpbrk(sbegin, ct); in strsep()
934 __visible int memcmp(const void *cs, const void *ct, size_t count) in memcmp() argument
942 const unsigned long *u2 = ct; in memcmp()
[all …]