Searched refs:NewState (Results 1 - 25 of 84) sorted by relevance

1234

/external/mesa3d/src/mesa/swrast_setup/
H A Dss_context.h36 GLuint NewState; member in struct:__anon16057
H A Dss_context.c59 swsetup->NewState = ~0;
189 if (swsetup->NewState & _SWSETUP_NEW_RENDERINDEX) {
193 if (swsetup->NewState & _NEW_PROGRAM) {
197 swsetup->NewState = 0;
225 swsetup->NewState |= new_state;
/external/clang/lib/StaticAnalyzer/Core/
H A DDynamicTypeMap.cpp45 ProgramStateRef NewState = State->set<DynamicTypeMap>(Reg, NewTy); local
46 assert(NewState);
47 return NewState;
H A DProgramState.cpp100 ProgramState NewState = *state; local
102 NewState.Env = EnvMgr.removeDeadBindings(NewState.Env, SymReaper, state);
105 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx,
107 NewState.setStore(newStore);
110 ProgramStateRef Result = getPersistentState(NewState);
376 ProgramState NewState(*FromState);
377 NewState.GDM = GDMState->GDM;
378 return getPersistentState(NewState);
503 ProgramState NewState
682 ProgramStateRef NewState = set<TaintMap>(Sym, Kind); local
[all...]
/external/llvm/lib/MC/
H A DMCSection.cpp37 void MCSection::setBundleLockState(BundleLockStateType NewState) { argument
38 if (NewState == NotBundleLocked) {
51 BundleLockState = NewState;
/external/mesa3d/src/mesa/main/
H A Dmultisample.c48 ctx->NewState |= _NEW_MULTISAMPLE;
77 if (ctx->NewState & _NEW_BUFFERS) {
139 ctx->NewState |= _NEW_MULTISAMPLE;
H A Dmatrix.c63 * __struct gl_contextRec::NewState.
88 ctx->NewState |= ctx->CurrentStack->DirtyFlag;
106 * __struct gl_contextRec::NewState.
133 ctx->NewState |= ctx->CurrentStack->DirtyFlag;
222 * Marks __struct gl_contextRec::NewState with the stack dirty flag.
268 ctx->NewState |= stack->DirtyFlag;
279 * Marks __struct gl_contextRec::NewState with the dirty stack flag.
307 ctx->NewState |= stack->DirtyFlag;
318 * Marks __struct gl_contextRec::NewState with the stack dirty flag.
331 ctx->NewState |
[all...]
H A Dstate.c316 if (params && params->StateFlags & ctx->NewState) {
328 if (params && params->StateFlags & ctx->NewState) {
370 * If __struct gl_contextRec::NewState is non-zero then this function \b must
383 GLbitfield new_state = ctx->NewState;
477 * Set ctx->NewState to zero to avoid recursion if
480 new_state = ctx->NewState | new_prog_state;
481 ctx->NewState = 0;
537 ctx->NewState |= _NEW_VARYING_VP_INPUTS;
559 ctx->NewState |= _NEW_PROGRAM;
H A Dcontext.h215 * __struct gl_contextRec::NewState with \p newstate.
223 ctx->NewState |= newstate; \
234 * __struct gl_contextRec::NewState with \p newstate.
242 ctx->NewState |= newstate; \
H A Dclear.c137 * If __struct gl_contextRec::NewState is set then calls _mesa_update_state()
171 if (ctx->NewState) {
332 if (ctx->NewState) {
429 if (ctx->NewState) {
500 if (ctx->NewState) {
622 if (ctx->NewState) {
H A Ddrawtex.c46 if (ctx->NewState)
/external/llvm/utils/TableGen/
H A DDFAPacketizerEmitter.cpp938 const State *NewState = nullptr; local
956 NewState = VI->second;
958 dbgs() << "\tFound existing state: " << NewState->stateNum
960 dbgsStateInfo(NewState->stateInfo);
964 NewState = &D.newState();
965 NewState->stateInfo = NewStateResources;
966 Visited[NewStateResources] = NewState;
967 WorkList.push_back(NewState);
969 dbgs() << "\tAccepted new state: " << NewState->stateNum << " - ";
970 dbgsStateInfo(NewState
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp340 int NewState; member in struct:__anon12648::InvokeStateChange
360 LastStateChange.NewState = BaseState;
423 if (!VisitingInvoke && LastStateChange.NewState != BaseState &&
430 LastStateChange.NewState = BaseState;
450 int NewState = StateAndEnd.first; local
454 if (NewState == LastStateChange.NewState) {
463 LastStateChange.NewState = NewState;
472 if (LastStateChange.NewState !
[all...]
/external/lzma/CPP/Windows/
H A DMemoryLock.cpp20 PTOKEN_PRIVILEGES NewState, DWORD BufferLength, PTOKEN_PRIVILEGES PreviousState, PDWORD ReturnLength);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_pixel.c61 if (ctx->NewState)
H A Dintel_pixel_read.c190 if (ctx->NewState)
/external/mesa3d/src/mesa/swrast/
H A Ds_context.c437 swrast->NewState |= new_state;
444 swrast->NewState = ~0;
555 if (swrast->NewState) {
556 if (swrast->NewState & _NEW_POLYGON)
559 if (swrast->NewState & (_NEW_HINT | _NEW_PROGRAM))
562 if (swrast->NewState & _SWRAST_NEW_TEXTURE_ENV_MODE)
565 if (swrast->NewState & (_NEW_FOG | _NEW_PROGRAM))
568 if (swrast->NewState & (_NEW_PROGRAM_CONSTANTS | _NEW_PROGRAM))
569 _swrast_update_fragment_program( ctx, swrast->NewState );
571 if (swrast->NewState
[all...]
H A Ds_bitmap.c69 if (SWRAST_CONTEXT(ctx)->NewState)
162 if (SWRAST_CONTEXT(ctx)->NewState)
/external/v8/src/crankshaft/
H A Dhydrogen-escape-analysis.h33 HCapturedObject* NewState(HInstruction* prev);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_pixel.c58 if (ctx->NewState)
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_compute.c52 if (ctx->NewState)
/external/mesa3d/src/mesa/vbo/
H A Dvbo_save_draw.c102 ctx->NewState |= _NEW_LIGHT;
104 ctx->NewState |= _NEW_CURRENT_ATTRIB;
292 if (ctx->NewState)
309 if (ctx->NewState)
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_common.c221 if (ctx->NewState & (_NEW_BUFFERS | _NEW_COLOR | _NEW_PIXEL)) {
292 ctx->NewState |= _NEW_STENCIL;
301 ctx->NewState |= _NEW_POLYGON;
313 ctx->NewState |= (_NEW_DEPTH | _NEW_STENCIL);
320 ctx->NewState |= _NEW_VIEWPORT;
336 ctx->NewState |= _NEW_POLYGON;
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_common.c221 if (ctx->NewState & (_NEW_BUFFERS | _NEW_COLOR | _NEW_PIXEL)) {
292 ctx->NewState |= _NEW_STENCIL;
301 ctx->NewState |= _NEW_POLYGON;
313 ctx->NewState |= (_NEW_DEPTH | _NEW_STENCIL);
320 ctx->NewState |= _NEW_VIEWPORT;
336 ctx->NewState |= _NEW_POLYGON;
/external/libcxx/src/experimental/filesystem/
H A Dpath.cpp189 void makeState(ParserState NewState, PosPtr Start, PosPtr End) noexcept {
190 State = NewState;
193 void makeState(ParserState NewState) noexcept {
194 State = NewState;

Completed in 523 milliseconds

1234