Searched refs:ct (Results 1 - 8 of 8) sorted by relevance

/u-boot/lib/
H A Dstring.c207 * @ct: Another string
209 int strcmp(const char *cs, const char *ct) argument
215 unsigned char b = *ct++;
230 * @ct: Another string
233 int strncmp(const char *cs, const char *ct, size_t count) argument
239 unsigned char b = *ct++;
414 * @ct: The characters to search for
416 char * strpbrk(const char * cs,const char * ct) argument
421 for( sc2 = ct; *sc2 != '\0'; ++sc2) {
434 * @ct
438 strtok(char * s,const char * ct) argument
471 strsep(char **s, const char *ct) argument
633 memcmp(const void * cs,const void * ct,size_t count) argument
[all...]
/u-boot/lib/zstd/common/
H A Dfse.h165 FSE_PUBLIC_API void FSE_freeCTable (FSE_CTable* ct);
168 Builds `ct`, which must be already allocated, using FSE_createCTable().
170 FSE_PUBLIC_API size_t FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
173 Compress `src` using `ct` into `dst` which must be already allocated.
177 FSE_PUBLIC_API size_t FSE_compress_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);
340 size_t FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize);
381 static void FSE_initCState(FSE_CState_t* CStatePtr, const FSE_CTable* ct);
396 FSE_CTable ct; // Provide
511 FSE_initCState(FSE_CState_t* statePtr, const FSE_CTable* ct) argument
526 FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) argument
[all...]
/u-boot/include/
H A Dexports.h49 int strcmp(const char *cs, const char *ct);
H A D_exports.h45 EXPORT_FUNC(strcmp, int, strcmp, const char *cs, const char *ct)
/u-boot/arch/mips/dts/
H A DMakefile13 dtb-$(CONFIG_BOARD_COMTREND_CT5361) += comtrend,ct-5361.dtb
/u-boot/arch/arm/mach-stm32mp/stm32mp1/
H A Dstm32mp15x.c291 u32 ct = cpu_type & ~(BIT(7) | BIT(0)); local
295 switch (ct) {
/u-boot/dts/upstream/include/dt-bindings/usb/
H A Dpd.h463 #define VDO_VPD(hw, fw, ver, vbm, curr, vbi, gi, ct) \
466 | ((gi) & 0x3f) << 1 | (ct))
/u-boot/fs/zfs/
H A Dzfs.c739 uint64_t *ct = NULL; local
742 for (ct = table + i, *ct = i, j = 8; j > 0; j--)
743 *ct = (*ct >> 1) ^ (-(*ct & 1) & ZFS_CRC64_POLY);

Completed in 74 milliseconds