HomeSort by relevance Sort by last modified time
    Searched refs:NewState (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/mesa3d/src/mesa/swrast_setup/
ss_context.h 36 GLuint NewState;
ss_context.c 59 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/
DynamicTypeMap.cpp 45 ProgramStateRef NewState = State->set<DynamicTypeMap>(Reg, NewTy);
46 assert(NewState);
47 return NewState;
ProgramState.cpp 100 ProgramState NewState = *state;
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);
116 ProgramStateRef newState = makeWithStore(Mgr.StoreMgr->Bind(getStore(),
120 return Mgr.getOwningEngine()->processRegionChange(newState, MR);
122 return newState;
195 ProgramStateRef newState = makeWithStore(newStore)
    [all...]
  /external/llvm/lib/MC/
MCSection.cpp 37 void MCSection::setBundleLockState(BundleLockStateType NewState) {
38 if (NewState == NotBundleLocked) {
51 BundleLockState = NewState;
  /external/mesa3d/src/mesa/main/
multisample.c 48 ctx->NewState |= _NEW_MULTISAMPLE;
77 if (ctx->NewState & _NEW_BUFFERS) {
139 ctx->NewState |= _NEW_MULTISAMPLE;
matrix.c 63 * __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 |= ctx->CurrentStack->DirtyFlag
    [all...]
state.c 316 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;
context.h 211 * \param newstate new state.
215 * __struct gl_contextRec::NewState with \p newstate.
217 #define FLUSH_VERTICES(ctx, newstate) \
223 ctx->NewState |= newstate; \
230 * \param newstate new state.
234 * __struct gl_contextRec::NewState with \p newstate.
236 #define FLUSH_CURRENT(ctx, newstate) \
    [all...]
clear.c 137 * 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) {
drawtex.c 46 if (ctx->NewState)
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
XenBus.c 324 IN enum xenbus_state NewState
331 DEBUG ((EFI_D_INFO, "XenBus: Set state to %d\n", NewState));
339 if (CurrentState == NewState) {
344 Status = XenStoreSPrint (Transaction, This->Node, "state", "%d", NewState);
350 DEBUG ((EFI_D_INFO, "XenBus: Set state to %d, done\n", NewState));
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 257 const State &newState();
508 const State &DFA::newState() {
889 const State *Initial = &D.newState();
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
WinException.cpp 340 int NewState;
360 LastStateChange.NewState = BaseState;
423 if (!VisitingInvoke && LastStateChange.NewState != BaseState &&
430 LastStateChange.NewState = BaseState;
450 int NewState = StateAndEnd.first;
454 if (NewState == LastStateChange.NewState) {
463 LastStateChange.NewState = NewState;
472 if (LastStateChange.NewState != BaseState)
    [all...]
  /external/lzma/CPP/Windows/
MemoryLock.cpp 20 PTOKEN_PRIVILEGES NewState, DWORD BufferLength, PTOKEN_PRIVILEGES PreviousState, PDWORD ReturnLength);
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_pixel.c 61 if (ctx->NewState)
intel_pixel_read.c 190 if (ctx->NewState)
  /external/mesa3d/src/mesa/swrast/
s_context.c 266 _swrast_update_fragment_program(struct gl_context *ctx, GLbitfield newState)
437 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 );
    [all...]
s_bitmap.c 69 if (SWRAST_CONTEXT(ctx)->NewState)
162 if (SWRAST_CONTEXT(ctx)->NewState)
  /external/v8/src/crankshaft/
hydrogen-escape-analysis.h 33 HCapturedObject* NewState(HInstruction* prev);
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_pixel.c 58 if (ctx->NewState)
  /external/mesa3d/src/mesa/state_tracker/
st_cb_compute.c 52 if (ctx->NewState)
  /external/mesa3d/src/mesa/vbo/
vbo_save_draw.c 102 ctx->NewState |= _NEW_LIGHT;
104 ctx->NewState |= _NEW_CURRENT_ATTRIB;
292 if (ctx->NewState)
309 if (ctx->NewState)
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common.c 221 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/
path.cpp 189 void makeState(ParserState NewState, PosPtr Start, PosPtr End) noexcept {
190 State = NewState;
193 void makeState(ParserState NewState) noexcept {
194 State = NewState;

Completed in 610 milliseconds

1 2 3 4 5 6