Home
last modified time | relevance | path

Searched refs:newState (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp122 ProgramStateRef newState = makeWithStore(Mgr.StoreMgr->Bind(getStore(), in bindLoc() local
126 return Mgr.getOwningEngine().processRegionChange(newState, MR, LCtx); in bindLoc()
128 return newState; in bindLoc()
209 ProgramStateRef newState = makeWithStore(newStore); in invalidateRegionsImpl() local
212 newState = Eng.notifyCheckersOfPointerEscape(newState, IS, in invalidateRegionsImpl()
218 return Eng.processRegionChanges(newState, IS, TopLevelInvalidated, in invalidateRegionsImpl()
417 ProgramState *newState = nullptr; in getPersistentState() local
419 newState = freeStates.back(); in getPersistentState()
423 newState = (ProgramState*) Alloc.Allocate<ProgramState>(); in getPersistentState()
425 new (newState) ProgramState(State); in getPersistentState()
[all …]
H A DExprEngine.cpp268 if (ProgramStateRef newState = state->assume(*Constraint, true)) in getInitialState() local
269 state = newState; in getInitialState()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/
H A Dhardware.d990 package(std.math) static void setControlState(ControlState newState) @trusted
998 "fclex; fldcw %0" : : "m" (newState);
1013 mxcsr |= (newState & roundingMask) << 3; // write new rounding mode
1018 mxcsr |= (newState & allExceptions) << 7; // write new exception masks
1030 "msr FPCR, %0;" : : "r" (newState);
1041 "vmsr FPSCR, %0" : : "r" (newState);
1053 "fscsr %0" : : "r" (newState);
1066 fldcw newState;
1078 mxcsr |= (newState & roundingMask) << 3; // write new rounding mode
1083 mxcsr |= (newState & allExceptions) << 7; // write new exception masks
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dmath.d5495 static void setControlState(ControlState newState) @trusted nothrow @nogc
5503 "fclex; fldcw %0" : : "m" (newState);
5518 mxcsr |= (newState & roundingMask) << 3; // write new rounding mode
5523 mxcsr |= (newState & allExceptions) << 7; // write new exception masks
5535 "msr FPCR, %0;" : : "r" (newState);
5546 "vmsr FPSCR, %0" : : "r" (newState);
5558 "fscsr %0" : : "r" (newState);
5571 fldcw newState;
5583 mxcsr |= (newState & roundingMask) << 3; // write new rounding mode
5588 mxcsr |= (newState & allExceptions) << 7; // write new exception masks
/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c6361 static void re_add_state(ReStateSet *pSet, int newState){ in re_add_state() argument
6363 for(i=0; i<pSet->nState; i++) if( pSet->aState[i]==newState ) return; in re_add_state()
6364 pSet->aState[pSet->nState++] = (ReStateNumber)newState; in re_add_state()