| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineObjC.cpp | 56 ProgramStateRef nextState = in populateObjCForDestinationSet() local 76 nextState = nextState->bindLoc(elementV, V, LCtx); in populateObjCForDestinationSet() 79 Bldr.generateNode(S, Pred, nextState); in populateObjCForDestinationSet()
|
| /freebsd/sys/contrib/zstd/lib/common/ |
| H A D | fse_decompress.c | 153 U32 const nextState = symbolNext[symbol]++; in FSE_buildDTable_internal() local 154 tableDecode[u].nbBits = (BYTE) (tableLog - ZSTD_highbit32(nextState) ); in FSE_buildDTable_internal() 155 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable_internal()
|
| /freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
| H A D | fse_decompress.c | 154 U32 const nextState = symbolNext[symbol]++; in FSE_buildDTable_internal() local 155 tableDecode[u].nbBits = (BYTE) (tableLog - ZSTD_highbit32(nextState) ); in FSE_buildDTable_internal() 156 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable_internal()
|
| /freebsd/contrib/opencsd/decoder/source/etmv3/ |
| H A D | trc_pkt_proc_etmv3_impl.h | 100 …void setBytesPartPkt(const int numBytes, const process_state nextState, const ocsd_etmv3_pkt_type …
|
| H A D | trc_pkt_proc_etmv3_impl.cpp | 219 void EtmV3PktProcImpl::setBytesPartPkt(int numBytes, process_state nextState, const ocsd_etmv3_pkt_… in setBytesPartPkt() argument 228 m_post_part_pkt_state = nextState; in setBytesPartPkt()
|
| /freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/ |
| H A D | zstd_decompress_block.c | 474 cell->nextState = 0; in ZSTD_buildSeqTable_rle() 596 U32 const nextState = symbolNext[symbol]++; in ZSTD_buildFSETable_body() local 597 tableDecode[u].nbBits = (BYTE) (tableLog - ZSTD_highbit32(nextState) ); in ZSTD_buildFSETable_body() 598 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in ZSTD_buildFSETable_body() 1205 ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, U16 nextState, U32 nbBi… in ZSTD_updateFseStateWithDInfo() argument 1208 DStatePtr->state = nextState + lowBits; in ZSTD_updateFseStateWithDInfo() 1262 U16 const llNext = llDInfo->nextState; in ZSTD_decodeSequence() 1263 U16 const mlNext = mlDInfo->nextState; in ZSTD_decodeSequence() 1264 U16 const ofNext = ofDInfo->nextState; in ZSTD_decodeSequence()
|
| H A D | zstd_decompress_internal.h | 69 U16 nextState; member
|
| /freebsd/sys/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress_block.c | 473 cell->nextState = 0; in ZSTD_buildSeqTable_rle() 595 U32 const nextState = symbolNext[symbol]++; in ZSTD_buildFSETable_body() local 596 tableDecode[u].nbBits = (BYTE) (tableLog - ZSTD_highbit32(nextState) ); in ZSTD_buildFSETable_body() 597 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in ZSTD_buildFSETable_body() 1204 ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, U16 nextState, U32 nbBi… in ZSTD_updateFseStateWithDInfo() argument 1207 DStatePtr->state = nextState + lowBits; in ZSTD_updateFseStateWithDInfo() 1261 U16 const llNext = llDInfo->nextState; in ZSTD_decodeSequence() 1262 U16 const mlNext = mlDInfo->nextState; in ZSTD_decodeSequence() 1263 U16 const ofNext = ofDInfo->nextState; in ZSTD_decodeSequence()
|
| H A D | zstd_decompress_internal.h | 68 U16 nextState; member
|
| /freebsd/sys/contrib/zstd/lib/legacy/ |
| H A D | zstd_v01.c | 413 U16 nextState = symbolNext[symbol]++; in FSE_buildDTable() local 414 tableDecode[i].nbBits = (BYTE) (tableLog - FSE_highbit32 ((U32)nextState) ); in FSE_buildDTable() 415 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSE_buildDTable()
|
| H A D | zstd_v03.c | 1090 U16 nextState = symbolNext[symbol]++; in FSE_buildDTable() local 1091 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) ); in FSE_buildDTable() 1092 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSE_buildDTable()
|
| H A D | zstd_v02.c | 1090 U16 nextState = symbolNext[symbol]++; in FSE_buildDTable() local 1091 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) ); in FSE_buildDTable() 1092 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSE_buildDTable()
|
| H A D | zstd_v04.c | 1073 U16 nextState = symbolNext[symbol]++; in FSE_buildDTable() local 1074 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) ); in FSE_buildDTable() 1075 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSE_buildDTable()
|
| H A D | zstd_v05.c | 1204 U16 nextState = symbolNext[symbol]++; in FSEv05_buildDTable() local 1205 tableDecode[i].nbBits = (BYTE) (tableLog - BITv05_highbit32 ((U32)nextState) ); in FSEv05_buildDTable() 1206 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSEv05_buildDTable()
|
| H A D | zstd_v06.c | 1452 U16 nextState = symbolNext[symbol]++; in FSEv06_buildDTable() local 1453 tableDecode[u].nbBits = (BYTE) (tableLog - BITv06_highbit32 ((U32)nextState) ); in FSEv06_buildDTable() 1454 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSEv06_buildDTable()
|
| H A D | zstd_v07.c | 1473 U16 nextState = symbolNext[symbol]++; in FSEv07_buildDTable() local 1474 tableDecode[u].nbBits = (BYTE) (tableLog - BITv07_highbit32 ((U32)nextState) ); in FSEv07_buildDTable() 1475 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSEv07_buildDTable()
|