| /freebsd-14.2/usr.sbin/ppp/ |
| H A D | fsm.c | 250 NewState(fp, ST_REQSENT); in FsmOpenNow() 299 NewState(fp, ST_CLOSED); in fsm_Up() 304 NewState(fp, ST_REQSENT); in fsm_Up() 318 NewState(fp, ST_INITIAL); in fsm_Down() 323 NewState(fp, ST_INITIAL); in fsm_Down() 351 NewState(fp, ST_INITIAL); in fsm_Close() 355 NewState(fp, ST_CLOSED); in fsm_Close() 358 NewState(fp, ST_CLOSING); in fsm_Close() 374 NewState(fp, ST_CLOSING); in fsm_Close() 650 NewState(fp, ST_OPENED); in FsmRecvConfigAck() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DFAEmitter.cpp | 179 uint64_t NewState; member in __anon4755e2d60211::Transition 278 uint64_t NewState = T.transitionFrom(State); in emit() local 279 if (SeenStates.emplace(NewState).second) in emit() 280 Worklist.emplace_back(NewState); in emit() 282 Emitter.addTransition(State, NewState, Actions.idFor(T.getActions())); in emit() 311 NewState = 0; in Transition() 317 NewState |= 1ULL << I; in Transition() 343 if ((State & NewState) == 0) in canTransitionFrom() 350 return State | NewState; in transitionFrom()
|
| H A D | DFAPacketizerEmitter.cpp | 327 for (uint64_t NewState : applyInsnClass(Resources, State)) { in emitForItineraries() local 328 if (SeenStates.emplace(NewState).second) in emitForItineraries() 329 Worklist.emplace_back(NewState); in emitForItineraries() 330 Emitter.addTransition(State, NewState, ResourcesID); in emitForItineraries()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | Taint.cpp | 93 ProgramStateRef NewState = State->set<TaintMap>(Sym, Kind); in addTaint() local 94 assert(NewState); in addTaint() 95 return NewState; in addTaint() 119 ProgramStateRef NewState = State->remove<TaintMap>(Sym); in removeTaint() local 120 assert(NewState); in removeTaint() 121 return NewState; in removeTaint() 142 ProgramStateRef NewState = State->set<DerivedSymTaint>(ParentSym, Regs); in addPartialTaint() local 143 assert(NewState); in addPartialTaint() 144 return NewState; in addPartialTaint()
|
| H A D | Iterator.cpp | 272 ProgramStateRef NewState = State; in assumeNoOverflow() local 279 NewState = NewState->assume(*DV, true); in assumeNoOverflow() 280 if (!NewState) in assumeNoOverflow() 289 NewState = NewState->assume(*DV, true); in assumeNoOverflow() 290 if (!NewState) in assumeNoOverflow() 294 return NewState; in assumeNoOverflow()
|
| H A D | IteratorModeling.cpp | 544 auto NewState = in handleIncrement() local 547 assert(NewState && in handleIncrement() 550 const auto *NewPos = getIteratorPosition(NewState, Iter); in handleIncrement() 570 auto NewState = in handleDecrement() local 573 assert(NewState && in handleDecrement() 576 const auto *NewPos = getIteratorPosition(NewState, Iter); in handleDecrement() 660 ProgramStateRef NewState = setIteratorPosition(State, NewVal, *NewPos); in handlePtrIncrOrDecr() local 661 C.addTransition(NewState); in handlePtrIncrOrDecr() 800 auto NewState = State->assume(comparison.castAs<DefinedSVal>(), Equal); in relateSymbols() local 801 if (!NewState) in relateSymbols() [all …]
|
| H A D | CastValueChecker.cpp | 309 ProgramStateRef NewState = State; in addInstanceOfTransition() local 311 NewState = setDynamicTypeAndCastInfo(State, MR, CastFromTy, CastToTy, in addInstanceOfTransition() 317 NewState->BindExpr(Call.getOriginExpr(), C.getLocationContext(), in addInstanceOfTransition() 324 C.generateSink(NewState, C.getPredecessor()); in addInstanceOfTransition()
|
| H A D | NonNullParamChecker.cpp | 271 if (ProgramStateRef NewState = State->assume(StoredVal, true)) { in checkBeginFunction() local 272 State = NewState; in checkBeginFunction()
|
| H A D | StdLibraryFunctionsChecker.cpp | 1319 ProgramStateRef NewState = State; in checkPreCall() local 1338 NewState = SuccessSt; in checkPreCall() 1339 if (NewState != State) { in checkPreCall() 1351 NewState, NewNode, in checkPreCall() 1374 ProgramStateRef NewState = State; in checkPostCall() local 1376 NewState = Constraint->apply(NewState, Call, Summary, C); in checkPostCall() 1377 if (!NewState) in checkPostCall() 1381 if (NewState) in checkPostCall() 1382 NewState = Case.getErrnoConstraint().apply(NewState, Call, Summary, C); in checkPostCall() 1384 if (!NewState) in checkPostCall() [all …]
|
| H A D | NullabilityChecker.cpp | 637 if (ProgramStateRef NewState = State->assume(*StoredVal, true)) { in checkLocation() local 638 Context.addTransition(NewState); in checkLocation()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ProgramState.cpp | 101 ProgramState NewState = *state; in removeDeadBindingsFromEnvironmentAndStore() local 103 NewState.Env = EnvMgr.removeDeadBindings(NewState.Env, SymReaper, state); in removeDeadBindingsFromEnvironmentAndStore() 106 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindingsFromEnvironmentAndStore() 108 NewState.setStore(newStore); in removeDeadBindingsFromEnvironmentAndStore() 111 return getPersistentState(NewState); in removeDeadBindingsFromEnvironmentAndStore() 406 ProgramState NewState(*FromState); in getPersistentStateWithGDM() local 407 NewState.GDM = GDMState->GDM; in getPersistentStateWithGDM() 408 return getPersistentState(NewState); in getPersistentStateWithGDM() 539 ProgramState NewState = *state; in removeGDM() local 540 NewState.GDM = NewM; in removeGDM() [all …]
|
| H A D | ExprEngine.cpp | 1146 ProgramStateRef NewState = Pred->getState(); in ProcessLoopExit() local 1149 NewState = processLoopEnd(S, NewState); in ProcessLoopExit() 1152 Bldr.generateNode(PP, NewState, Pred); in ProcessLoopExit() 2128 ProgramStateRef NewState = in Visit() local 2130 if (NewState != State) { in Visit() 2131 Pred = Bldr.generateNode(OCE, Pred, NewState, /*tag=*/nullptr, in Visit() 2500 ProgramStateRef NewState = updateLoopStack(Term, AMgr.getASTContext(), in processCFGBlockEntrance() local 2502 if (NewState != Pred->getState()) { in processCFGBlockEntrance() 2503 ExplodedNode *UpdatedNode = nodeBuilder.generateNode(NewState, Pred); in processCFGBlockEntrance()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinException.cpp | 385 int NewState; member 405 LastStateChange.NewState = BaseState; in InvokeStateChangeIterator() 475 LastStateChange.NewState = BaseState; in scan() 495 int NewState = StateAndEnd.first; in scan() local 499 if (NewState == LastStateChange.NewState) { in scan() 508 LastStateChange.NewState = NewState; in scan() 517 if (LastStateChange.NewState != BaseState) { in scan() 521 LastStateChange.NewState = BaseState; in scan() 619 LastEHState = StateChange.NewState; in emitCSpecificHandlerTable() 1226 if (StateChange.NewState != CurrentState) { in emitCLRExceptionTable() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSection.cpp | 39 void MCSection::setBundleLockState(BundleLockStateType NewState) { in setBundleLockState() argument 40 if (NewState == NotBundleLocked) { in setBundleLockState() 53 BundleLockState = NewState; in setBundleLockState()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | path_parser.h | 211 void makeState(ParserState NewState, PosPtr Start, PosPtr End) noexcept { in makeState() 212 State = NewState; in makeState() 215 void makeState(ParserState NewState) noexcept { in makeState() 216 State = NewState; in makeState()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Automaton.td | 86 // A transition S' = T(S) is valid if, for every set bit in NewState, the 89 // S' = S | NewState 94 bits<32> NewState;
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SMTConstraintManager.h | 330 ProgramStateRef NewState = in REGISTER_TRAIT_WITH_PROGRAMSTATE() local 334 NewState->get<ConstraintSMT>().Profile(ID); in REGISTER_TRAIT_WITH_PROGRAMSTATE() 342 addStateConstraints(NewState); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
|
| H A D | CallEvent.h | 378 CallEventRef<T> cloneWithState(ProgramStateRef NewState) const; 381 CallEventRef<> cloneWithState(ProgramStateRef NewState) const { in cloneWithState() argument 382 return cloneWithState<CallEvent>(NewState); in cloneWithState() 1401 CallEventRef<T> CallEvent::cloneWithState(ProgramStateRef NewState) const { in cloneWithState() argument 1406 if (NewState == State) in cloneWithState() 1414 Copy->State = NewState; in cloneWithState()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSection.h | 156 void setBundleLockState(BundleLockStateType NewState);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Format/ |
| H A D | ContinuationIndenter.cpp | 1904 auto &NewState = State.Stack.back(); in moveStatePastScopeOpener() local 1905 NewState.NestedBlockIndent = NestedBlockIndent; in moveStatePastScopeOpener() 1906 NewState.BreakBeforeParameter = BreakBeforeParameter; in moveStatePastScopeOpener() 1907 NewState.HasMultipleNestedBlocks = (Current.BlockParameterCount > 1); in moveStatePastScopeOpener() 1915 NewState.HasMultipleNestedBlocks = true; in moveStatePastScopeOpener() 1922 NewState.IsInsideObjCArrayLiteral = Current.is(TT_ArrayInitializerLSquare) && in moveStatePastScopeOpener()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | RewriteStatepointsForGC.cpp | 1027 BDVState NewState(BDV); in findBasePointer() local 1031 NewState.meet(OpState); in findBasePointer() 1038 auto BV = NewState.getBaseValue(); in findBasePointer() 1040 NewState = BDVState(I, BDVState::Conflict); in findBasePointer() 1043 if (OldState != NewState) { in findBasePointer() 1045 States[BDV] = NewState; in findBasePointer()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RegAllocFast.cpp | 271 void setPhysRegState(MCPhysReg PhysReg, unsigned NewState); 424 void RegAllocFast::setPhysRegState(MCPhysReg PhysReg, unsigned NewState) { in setPhysRegState() argument 426 RegUnitStates[Unit] = NewState; in setPhysRegState()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | MachineIRBuilder.h | 302 void setState(const MachineIRBuilderState &NewState) { State = NewState; } in setState() argument
|
| /freebsd-14.2/sys/dev/mpt/mpilib/ |
| H A D | mpi_ioc.h | 706 U16 NewState; /* 02h */ member
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclAttr.cpp | 1368 SetTypestateAttr::ConsumedState NewState; in handleSetTypestateAttr() local 1372 if (!SetTypestateAttr::ConvertStrToConsumedState(Param, NewState)) { in handleSetTypestateAttr() 1383 D->addAttr(::new (S.Context) SetTypestateAttr(S.Context, AL, NewState)); in handleSetTypestateAttr() 8990 std::vector<StringRef> NewState; in handleArmNewAttr() local 8993 NewState.push_back(S); in handleArmNewAttr() 9014 if (!llvm::is_contained(NewState, StateName)) // Avoid adding duplicates. in handleArmNewAttr() 9015 NewState.push_back(StateName); in handleArmNewAttr() 9033 ArmNewAttr(S.Context, AL, NewState.data(), NewState.size())); in handleArmNewAttr()
|