Searched refs:ct (Results 1 – 4 of 4) sorted by relevance
/lib/zstd/common/ |
D | fse.h | 165 FSE_PUBLIC_API void FSE_freeCTable (FSE_CTable* ct); 170 FSE_PUBLIC_API size_t FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxS… 177 …usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct); 327 size_t FSE_buildCTable_raw (FSE_CTable* ct, unsigned nbBits); 330 size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue); 339 size_t FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue… 380 static void FSE_initCState(FSE_CState_t* CStatePtr, const FSE_CTable* ct); 510 MEM_STATIC void FSE_initCState(FSE_CState_t* statePtr, const FSE_CTable* ct) in FSE_initCState() argument 512 const void* ptr = ct; in FSE_initCState() 517 statePtr->symbolTT = ct + 1 + (tableLog ? (1<<(tableLog-1)) : 1); in FSE_initCState() [all …]
|
/lib/zstd/compress/ |
D | fse_compress.c | 67 size_t FSE_buildCTable_wksp(FSE_CTable* ct, in FSE_buildCTable_wksp() argument 73 void* const ptr = ct; in FSE_buildCTable_wksp() 310 void FSE_freeCTable (FSE_CTable* ct) { ZSTD_free(ct); } in FSE_freeCTable() argument 494 size_t FSE_buildCTable_raw (FSE_CTable* ct, unsigned nbBits) in FSE_buildCTable_raw() argument 499 void* const ptr = ct; in FSE_buildCTable_raw() 527 size_t FSE_buildCTable_rle (FSE_CTable* ct, BYTE symbolValue) in FSE_buildCTable_rle() argument 529 void* ptr = ct; in FSE_buildCTable_rle() 552 const FSE_CTable* ct, const unsigned fast) in FSE_compress_usingCTable_generic() argument 569 FSE_initCState2(&CState1, ct, *--ip); in FSE_compress_usingCTable_generic() 570 FSE_initCState2(&CState2, ct, *--ip); in FSE_compress_usingCTable_generic() [all …]
|
/lib/ |
D | string.c | 349 int strcmp(const char *cs, const char *ct) in strcmp() argument 355 c2 = *ct++; in strcmp() 373 int strncmp(const char *cs, const char *ct, size_t count) in strncmp() argument 379 c2 = *ct++; in strncmp() 563 char *strpbrk(const char *cs, const char *ct) in strpbrk() argument 568 for (sc2 = ct; *sc2 != '\0'; ++sc2) { in strpbrk() 590 char *strsep(char **s, const char *ct) in strsep() argument 598 end = strpbrk(sbegin, ct); in strsep() 755 __visible int memcmp(const void *cs, const void *ct, size_t count) in memcmp() argument 763 const unsigned long *u2 = ct; in memcmp() [all …]
|
D | dynamic_debug.c | 607 int bi, ct; in ddebug_apply_class_bitmap() local 618 ct = ddebug_exec_queries(query, NULL); in ddebug_apply_class_bitmap() 619 matches += ct; in ddebug_apply_class_bitmap() 622 ct, map->class_names[bi], *new_bits); in ddebug_apply_class_bitmap() 1201 int i, j, ct = 0; in ddebug_attach_module_classes() local 1215 ct++; in ddebug_attach_module_classes() 1218 if (ct) in ddebug_attach_module_classes() 1219 vpr_info("module:%s attached %d classes\n", dt->mod_name, ct); in ddebug_attach_module_classes()
|