Home
last modified time | relevance | path

Searched refs:newState (Results 1 - 25 of 61) sorted by relevance

123

/third_party/lzma/CPP/Windows/
H A DSecurityUtils.h68 bool AdjustPrivileges(bool disableAllPrivileges, PTOKEN_PRIVILEGES newState, in AdjustPrivileges() argument
71 newState, bufferLength, previousState, returnLength)); } in AdjustPrivileges()
73 bool AdjustPrivileges(bool disableAllPrivileges, PTOKEN_PRIVILEGES newState) in AdjustPrivileges() argument
74 { return AdjustPrivileges(disableAllPrivileges, newState, 0, NULL, NULL); } in AdjustPrivileges()
76 bool AdjustPrivileges(PTOKEN_PRIVILEGES newState) in AdjustPrivileges() argument
77 { return AdjustPrivileges(false, newState); } in AdjustPrivileges()
/third_party/node/deps/v8/tools/profview/
H A Dprofview.js667 render(newState) {
669 if (!newState.file || !CallTreeView.isCallTreeMode(newState.mode)) {
675 this.currentState = newState;
677 if (newState.file === oldState.file &&
678 newState.start === oldState.start &&
679 newState.end === oldState.end &&
680 newState.mode === oldState.mode &&
681 newState.callTree.attribution === oldState.callTree.attribution &&
682 newState
[all...]
/third_party/skia/modules/canvaskit/htmlcanvas/
H A Dcanvas2dcontext.js859 var newState = this._canvasStateStack.pop();
860 if (!newState) {
868 CanvasKit.Matrix.invert(newState.ctm)
872 this._paint = newState.paint;
874 this._lineDashList = newState.ldl;
875 this._strokeWidth = newState.sw;
876 this._strokeStyle = newState.ss;
877 this._fillStyle = newState.fs;
878 this._shadowOffsetX = newState.sox;
879 this._shadowOffsetY = newState
[all...]
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
H A DNGramParser.java47 private int newState; field in NGramParser.StateEntry
52 newState = theState; in StateEntry()
58 return newState; in getNewState()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-aat-layout-common.hh456 HBUINT16 newState; /* Byte offset from beginning of state table member
475 HBUINT16 newState; /* Byte offset from beginning of state table to the new state. */ member
501 int new_state (unsigned int newState) const in new_state()
502 { return Types::extended ? newState : ((int) newState - (int) stateArrayTable) / (int) nClasses; } in new_state()
616 int newState = new_state (p->newState); in sanitize() local
617 min_state = hb_min (min_state, newState); in sanitize()
618 max_state = hb_max (max_state, newState); in sanitize()
760 const int next_state = machine.new_state (entry.newState); in drive()
[all...]
/third_party/skia/src/sksl/
H A DSkSLLexer.cpp516 State newState = get_transition(kMappings[c], state); in next() local
517 if (!newState) { in next()
520 state = newState; in next()
/third_party/vk-gl-cts/framework/common/
H A DtcuTestHierarchyIterator.hpp161 void setState (State newState) in setState()
163 switch (newState) in setState()
173 m_state = newState; in setState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DSamplerGL.cpp51 const gl::SamplerState &newState, in SyncSamplerStateMember()
57 if ((curState.*getter)() != (newState.*getter)()) in SyncSamplerStateMember()
59 (curState.*setter)((newState.*getter)()); in SyncSamplerStateMember()
60 SetSamplerParameter(functions, sampler, name, (newState.*getter)()); in SyncSamplerStateMember()
49 SyncSamplerStateMember(const rx::FunctionsGL *functions, GLuint sampler, const gl::SamplerState &newState, gl::SamplerState &curState, GLenum name, Getter getter, Setter setter) SyncSamplerStateMember() argument
/third_party/skia/src/gpu/
H A DGrDirectContextPriv.h54 const GrBackendSurfaceMutableState* newState = nullptr);
61 const GrBackendSurfaceMutableState* newState = nullptr) {
63 return this->flushSurfaces({&proxy, size}, access, info, newState);
H A DGrDrawingManager.h142 const GrBackendSurfaceMutableState* newState);
197 const GrBackendSurfaceMutableState* newState);
/third_party/skia/tests/
H A DBackendSurfaceMutableStateTest.cpp45 GrBackendSurfaceMutableState newState(VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL, in DEF_GPUTEST_FOR_VULKAN_CONTEXT()
47 backendTexCopy.setMutableState(newState); in DEF_GPUTEST_FOR_VULKAN_CONTEXT()
88 backendTexImage.setMutableState(newState); in DEF_GPUTEST_FOR_VULKAN_CONTEXT()
114 dContext->setBackendTextureState(backendTex, newState, &previousState); in DEF_GPUTEST_FOR_VULKAN_CONTEXT()
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DTextureD3D12.h83 D3D12_RESOURCE_STATES newState,
88 D3D12_RESOURCE_STATES newState);
124 D3D12_RESOURCE_STATES newState,
H A DTextureD3D12.cpp730 D3D12_RESOURCE_STATES newState) { in TrackAllUsageAndTransitionNow()
731 TrackUsageAndTransitionNow(commandContext, newState, GetAllSubresources()); in TrackAllUsageAndTransitionNow()
735 D3D12_RESOURCE_STATES newState, in TrackUsageAndTransitionNow()
754 TransitionUsageAndGetResourceBarrier(commandContext, &barriers, newState, range); in TrackUsageAndTransitionNow()
763 D3D12_RESOURCE_STATES newState, in TransitionSubresourceRange()
767 if (state->lastState == newState) { in TransitionSubresourceRange()
793 state->lastState = newState; in TransitionSubresourceRange()
804 if (IsSubset(newState, kD3D12PromotableReadOnlyStates)) { in TransitionSubresourceRange()
812 } else if (newState == D3D12_RESOURCE_STATE_COPY_DEST) { in TransitionSubresourceRange()
824 barrier.Transition.StateAfter = newState; in TransitionSubresourceRange()
729 TrackAllUsageAndTransitionNow(CommandRecordingContext* commandContext, D3D12_RESOURCE_STATES newState) TrackAllUsageAndTransitionNow() argument
734 TrackUsageAndTransitionNow(CommandRecordingContext* commandContext, D3D12_RESOURCE_STATES newState, const SubresourceRange& range) TrackUsageAndTransitionNow() argument
760 TransitionSubresourceRange(std::vector<D3D12_RESOURCE_BARRIER>* barriers, const SubresourceRange& range, StateAndDecay* state, D3D12_RESOURCE_STATES newState, ExecutionSerial pendingCommandSerial) const TransitionSubresourceRange() argument
868 TransitionUsageAndGetResourceBarrier( CommandRecordingContext* commandContext, std::vector<D3D12_RESOURCE_BARRIER>* barriers, D3D12_RESOURCE_STATES newState, const SubresourceRange& range) TransitionUsageAndGetResourceBarrier() argument
[all...]
H A DBufferD3D12.cpp230 D3D12_RESOURCE_STATES newState = D3D12BufferUsage(newUsage); in TransitionUsageAndGetResourceBarrier() local
235 newState == D3D12_RESOURCE_STATE_UNORDERED_ACCESS; in TransitionUsageAndGetResourceBarrier()
286 if (lastState == newState) { in TransitionUsageAndGetResourceBarrier()
294 barrier->Transition.StateAfter = newState; in TransitionUsageAndGetResourceBarrier()
/third_party/typescript/tests/baselines/reference/
H A DtwiceNestedKeyofIndexInference.js33 const newState: State = set(state, ["a", 'b'], 'why'); // shouldn't be an error
43 var newState = set(state, ["a", 'b'], 'why'); // shouldn't be an error variable
/kernel/linux/linux-5.10/lib/zstd/
H A Dfse.h476 unsigned short newState; member
501 DStatePtr->state = DInfo.newState + lowBits; in FSE_updateState()
511 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbol()
524 DStatePtr->state = DInfo.newState + lowBits; in FSE_decodeSymbolFast()
H A Dfse_decompress.c153 tableDecode[u].newState = (U16)((nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable_wksp()
173 cell->newState = 0; in FSE_buildDTable_rle()
199 dinfo[s].newState = 0; in FSE_buildDTable_raw()
/third_party/skia/third_party/externals/oboe/src/opensles/
H A DAudioInputStreamOpenSLES.cpp233 Result AudioInputStreamOpenSLES::setRecordState_l(SLuint32 newState) { in setRecordState_l() argument
234 LOGD("AudioInputStreamOpenSLES::%s(%u)", __func__, newState); in setRecordState_l()
241 SLresult slResult = (*mRecordInterface)->SetRecordState(mRecordInterface, newState); in setRecordState_l()
242 //LOGD("AudioInputStreamOpenSLES::%s(%u) returned %u", __func__, newState, slResult); in setRecordState_l()
245 __func__, newState, getSLErrStr(slResult)); in setRecordState_l()
H A DAudioInputStreamOpenSLES.h58 Result setRecordState_l(SLuint32 newState);
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DThaiStateTable.java23 private final static int newState() in newState() method in ThaiStateTable
90 int state = newState(); in addState()
/third_party/skia/src/gpu/d3d/
H A DGrD3DTextureResource.h64 void updateResourceState(D3D12_RESOURCE_STATES newState) { in updateResourceState() argument
66 fState->setResourceState(newState); in updateResourceState()
/third_party/icu/icu4c/source/tools/toolutil/
H A Ducmstate.cpp624 int32_t i, j, leadState, trailState, newState, fallback; in compactToUnicode2() local
718 newState=states->countStates++; in compactToUnicode2()
719 states->stateFlags[newState]=0; in compactToUnicode2()
726 states->stateTable[newState][i]=MBCS_ENTRY_FINAL_SET_ACTION_VALUE(entry, MBCS_STATE_UNASSIGNED, 0xfffe); in compactToUnicode2()
729 states->stateTable[newState][i]=entry; in compactToUnicode2()
737 states->stateTable[leadState][i]=MBCS_ENTRY_SET_STATE(states->stateTable[leadState][i], newState); in compactToUnicode2()
790 if(trailState!=newState) { in compactToUnicode2()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Ducmstate.cpp624 int32_t i, j, leadState, trailState, newState, fallback; in compactToUnicode2() local
718 newState=states->countStates++; in compactToUnicode2()
719 states->stateFlags[newState]=0; in compactToUnicode2()
726 states->stateTable[newState][i]=MBCS_ENTRY_FINAL_SET_ACTION_VALUE(entry, MBCS_STATE_UNASSIGNED, 0xfffe); in compactToUnicode2()
729 states->stateTable[newState][i]=entry; in compactToUnicode2()
737 states->stateTable[leadState][i]=MBCS_ENTRY_SET_STATE(states->stateTable[leadState][i], newState); in compactToUnicode2()
790 if(trailState!=newState) { in compactToUnicode2()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Ducmstate.cpp624 int32_t i, j, leadState, trailState, newState, fallback; in compactToUnicode2() local
718 newState=states->countStates++; in compactToUnicode2()
719 states->stateFlags[newState]=0; in compactToUnicode2()
726 states->stateTable[newState][i]=MBCS_ENTRY_FINAL_SET_ACTION_VALUE(entry, MBCS_STATE_UNASSIGNED, 0xfffe); in compactToUnicode2()
729 states->stateTable[newState][i]=entry; in compactToUnicode2()
737 states->stateTable[leadState][i]=MBCS_ENTRY_SET_STATE(states->stateTable[leadState][i], newState); in compactToUnicode2()
790 if(trailState!=newState) { in compactToUnicode2()
/kernel/linux/linux-6.6/lib/zstd/common/
H A Dfse.h595 unsigned short newState;
620 DStatePtr->state = DInfo.newState + lowBits;
630 DStatePtr->state = DInfo.newState + lowBits;
643 DStatePtr->state = DInfo.newState + lowBits;

Completed in 19 milliseconds

123