Home
last modified time | relevance | path

Searched refs:nextState (Results 1 – 6 of 6) sorted by relevance

/openbmc/pldm/libpldmresponder/
H A Dplatform_state_effecter.hpp153 uint8_t* nextState = in setStateEffecterStatesHandler() local
159 reinterpret_cast<state_effecter_possible_states*>(nextState); in setStateEffecterStatesHandler()
H A Dplatform.hpp450 uint8_t* nextState = in setStateEffecterStatesHandler() local
456 nextState); in setStateEffecterStatesHandler()
/openbmc/openbmc-test-automation/redfish/extended/
H A Dtest_power_restore.robot113 [Arguments] ${policy} ${expectedState} ${nextState}
118 # nextState Test end host state.
129 ... 10 min 20 sec Valid Boot States ${nextState}
/openbmc/linux/lib/zstd/common/
H A Dfse_decompress.c168 U32 const nextState = symbolNext[symbol]++; in FSE_buildDTable_internal() local
169 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) ); in FSE_buildDTable_internal()
170 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable_internal()
/openbmc/linux/lib/zstd/decompress/
H A Dzstd_decompress_block.c432 cell->nextState = 0; in ZSTD_buildSeqTable_rle()
553 U32 const nextState = symbolNext[symbol]++; in ZSTD_buildFSETable_body() local
554 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) ); in ZSTD_buildFSETable_body()
555 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in ZSTD_buildFSETable_body()
1150 ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, U16 nextState, U32 nbBi… in ZSTD_updateFseStateWithDInfo() argument
1153 DStatePtr->state = nextState + lowBits; in ZSTD_updateFseStateWithDInfo()
1183 U16 const llNext = llDInfo->nextState;
1184 U16 const mlNext = mlDInfo->nextState;
1185 U16 const ofNext = ofDInfo->nextState;
H A Dzstd_decompress_internal.h68 U16 nextState; member