Home
last modified time | relevance | path

Searched refs:DInfo (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/lib/zstd/common/
Dfse.h610 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_peekSymbol() local
611 return DInfo.symbol; in FSE_peekSymbol()
616 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_updateState() local
617 U32 const nbBits = DInfo.nbBits; in FSE_updateState()
619 DStatePtr->state = DInfo.newState + lowBits; in FSE_updateState()
624 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbol() local
625 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbol()
626 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbol()
629 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbol()
637 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbolFast() local
[all …]
/linux-6.1.9/fs/hfsplus/
Dxattr.c264 u16 folder_finderinfo_len = sizeof(struct DInfo) + in __hfsplus_setxattr()
445 u16 folder_rec_len = sizeof(struct DInfo) + sizeof(struct DXInfo); in hfsplus_getxattr_finder_info()
448 u8 folder_finder_info[sizeof(struct DInfo) + sizeof(struct DXInfo)]; in hfsplus_getxattr_finder_info()
613 u8 folder_finder_info[sizeof(struct DInfo) + sizeof(struct DXInfo)]; in hfsplus_listxattr_finder_info()
630 len = sizeof(struct DInfo) + sizeof(struct DXInfo); in hfsplus_listxattr_finder_info()
Dhfsplus_raw.h236 struct DInfo { struct
264 struct DInfo user_info;
/linux-6.1.9/lib/zstd/decompress/
Dzstd_decompress_block.c914 ZSTD_seqSymbol const DInfo = DStatePtr->table[DStatePtr->state]; in ZSTD_updateFseState() local
915 U32 const nbBits = DInfo.nbBits; in ZSTD_updateFseState()
917 DStatePtr->state = DInfo.nextState + lowBits; in ZSTD_updateFseState()
921 …_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, ZSTD_seqSymbol const DInfo) in ZSTD_updateFseStateWithDInfo() argument
923 U32 const nbBits = DInfo.nbBits; in ZSTD_updateFseStateWithDInfo()
925 DStatePtr->state = DInfo.nextState + lowBits; in ZSTD_updateFseStateWithDInfo()