Home
last modified time | relevance | path

Searched refs:StateType (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp416 template <typename StateType>
417 ChangeStatus clampStateAndIndicateChange(StateType &S, const StateType &R) { in clampStateAndIndicateChange()
426 template <typename AAType, typename StateType = typename AAType::StateType>
428 Attributor &A, const AAType &QueryingAA, StateType &S, in clampReturnedValueStates()
442 Optional<StateType> T; in clampReturnedValueStates()
451 const StateType &AAS = AA.getState(); in clampReturnedValueStates()
469 typename StateType = typename BaseType::StateType,
477 StateType S(StateType::getBestState(this->getState())); in updateImpl()
478 clampReturnedValueStates<AAType, StateType>( in updateImpl()
483 return clampStateAndIndicateChange<StateType>(this->getState(), S); in updateImpl()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h2217 using StateType = StateTy;
2223 StateType &getState() override { return *this; }
2226 const StateType &getState() const override { return *this; }
2321 using StateType = AbstractState;
2347 virtual StateType &getState() = 0;
2348 virtual const StateType &getState() const = 0;
3348 using MemoryLocationsKind = StateType::base_t;
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
H A Dpackage.d4972 struct Recurrence(alias fun, StateType, size_t stateSize) in Recurrence() argument
4976 StateType[stateSize] _state; in Recurrence()
4979 this(StateType[stateSize] initial) { _state = initial; } in Recurrence()
4990 _state[_n % stateSize] = cast(StateType) binaryFun!(fun, "a", "n")( in Recurrence()
4995 @property StateType front() in Recurrence()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/range/
H A Dpackage.d5912 struct Recurrence(alias fun, StateType, size_t stateSize)
5916 StateType[stateSize] _state;
5919 this(StateType[stateSize] initial) { _state = initial; }
5930 _state[_n % stateSize] = cast(StateType) binaryFun!(fun, "a", "n")(
5935 @property StateType front()