HomeSort by: relevance | last modified time | path
    Searched defs:State (Results 1 - 25 of 170) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SnippetRepetitor.h 32 Create(InstructionBenchmark::RepetitionModeE Mode, const LLVMState &State);
44 explicit SnippetRepetitor(const LLVMState &State) : State(State) {}
47 const LLVMState &State;
BenchmarkRunner.h 37 explicit BenchmarkRunner(const LLVMState &State,
77 const LLVMState &State;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
raw_sha1_ostream.h 24 SHA1 State;
28 State.update(ArrayRef<uint8_t>((const uint8_t *)Ptr, Size));
35 return State.result();
38 /// Reset the internal state to start over from scratch.
39 void resetHash() { State.init(); }
SHA1.h 30 /// Reinitialize the internal state
41 /// state and as such is not suited for getting an intermediate result
47 /// any time without invalidating the internal state so that more calls can be
60 // Internal State
66 uint32_t State[HASH_LENGTH / 4];
SHA256.h 37 /// Reinitialize the internal state
48 /// internal state and as such is not suited for getting an intermediate
54 /// SHA256 at any time without invalidating the internal state so that more
67 // Internal State
73 uint32_t State[HASH_LENGTH / 4];
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
TaintTesterChecker.cpp 48 ProgramStateRef State = C.getState();
49 if (!State)
52 if (isTainted(State, E, C.getLocationContext())) {
DebugContainerModeling.cpp 86 auto State = C.getState();
89 const auto *Data = getContainerData(State, Cont);
93 State = State->BindExpr(CE, C.getLocationContext(),
107 C.addTransition(State, InterestingTag);
114 State = State->BindExpr(CE, C.getLocationContext(),
DebugIteratorModeling.cpp 90 auto State = C.getState();
92 const auto *Pos = getIteratorPosition(State, V);
94 State = State->BindExpr(CE, C.getLocationContext(), get(Pos));
96 State = State->BindExpr(CE, C.getLocationContext(), Default);
98 C.addTransition(State);
InvalidatedIteratorChecker.cpp 80 ProgramStateRef State = C.getState();
82 SVal SubVal = State->getSVal(UO->getSubExpr(), C.getLocationContext());
91 ProgramStateRef State = C.getState();
93 SVal LVal = State->getSVal(BO->getLHS(), C.getLocationContext());
102 ProgramStateRef State = C.getState();
103 SVal LVal = State->getSVal(ASE->getLHS(), C.getLocationContext());
112 ProgramStateRef State = C.getState();
113 SVal BaseVal = State->getSVal(ME->getBase(), C.getLocationContext());
118 auto State = C.getState();
119 const auto *Pos = getIteratorPosition(State, Val)
    [all...]
ReturnValueChecker.cpp 112 ProgramStateRef State = C.getState();
113 State = State->assume(ReturnV.castAs<DefinedOrUnknownSVal>(), ExpectedValue);
114 C.addTransition(State, CallTag);
127 ProgramStateRef State = C.getState();
129 CallEventRef<> Call = CMgr.getCaller(SFC, State);
137 SVal ReturnV = State->getSVal(RS->getRetValue(), C.getLocationContext());
161 C.addTransition(State, CallTag);
DynamicTypeChecker.cpp 14 // state, it is just the observer of the type information provided by other
93 ProgramStateRef State = N->getState();
96 DynamicTypeInfo TrackedType = getDynamicTypeInfo(State, Reg);
164 ProgramStateRef State = C.getState();
165 DynamicTypeInfo DynTypeInfo = getDynamicTypeInfo(State, Region);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugSubsectionVisitor.h 40 const StringsAndChecksumsRef &State) = 0;
42 const StringsAndChecksumsRef &State) = 0;
44 const StringsAndChecksumsRef &State) = 0;
47 const StringsAndChecksumsRef &State) = 0;
50 const StringsAndChecksumsRef &State) = 0;
53 const StringsAndChecksumsRef &State) = 0;
56 const StringsAndChecksumsRef &State) = 0;
59 const StringsAndChecksumsRef &State) = 0;
61 const StringsAndChecksumsRef &State) = 0;
66 const StringsAndChecksumsRef &State);
    [all...]
  /src/external/mit/libcbor/dist/oss-fuzz/
cbor_load_fuzzer.cc 13 struct State {
16 State() : fout(fopen("/dev/null", "r")) {
21 static State kState;
  /src/sys/external/bsd/acpica/dist/utilities/
utstate.c 3 * Module Name: utstate - state object support procedures
55 * PARAMETERS: ListHead - Head of the state stack
56 * State - State object to push
60 * DESCRIPTION: Push a state object onto a state stack
67 ACPI_GENERIC_STATE *State)
72 /* Push the state object onto the front of the list (stack) */
74 State->Common.Next = *ListHead;
75 *ListHead = State;
    [all...]
utmisc.c 208 * PARAMETERS: Object - Object to be added to the new state
210 * StateList - List the state will be added to
214 * DESCRIPTION: Create a new state and push it
224 ACPI_GENERIC_STATE *State;
237 State = AcpiUtCreateUpdateState (Object, Action);
238 if (!State)
243 AcpiUtPushGenericState (StateList, State);
272 ACPI_GENERIC_STATE *State;
280 State = AcpiUtCreatePkgState (SourceObject, TargetObject, 0);
281 if (!State)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
InMemoryModuleCache.h 22 /// This is a cache for modules for use across a compilation, sharing state
57 enum State { Unknown, Tentative, ToBuild, Final };
59 /// Get the state of the PCM.
60 State getPCMState(llvm::StringRef Filename) const;
64 /// \pre state is Unknown
65 /// \post state is Tentative
72 /// \pre state is Unknown or ToBuild.
73 /// \pre state is not Tentative.
78 /// Try to remove a buffer from the cache. No effect if state is Final.
80 /// \pre state is Tentative/Final
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
TpiHashing.h 24 State = 0;
30 State = 1;
36 State = 2;
43 switch (State) {
61 uint8_t State = 0;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
RecordStreamer.h 26 enum State { NeverSeen, Global, Defined, DefinedGlobal, DefinedWeak, Used,
31 StringMap<State> Symbols;
37 /// Get the state recorded for the given symbol.
38 State getSymbolState(const MCSymbol *Sym);
74 using const_iterator = StringMap<State>::const_iterator;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCCodeEmitter.h 38 // A mutable state of the emitter when encoding bundles and duplexes.
46 mutable EmitterState State;
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oswindir.c 56 char State;
137 SearchInfo->State = 0;
172 if (SearchInfo->State == 0)
176 SearchInfo->State = 1;
  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
BlockPrinter.h 24 enum class State {
36 State CurrentState = State::Start;
55 void reset() { CurrentState = State::Start; }
BlockVerifier.h 25 // We force State elements to be size_t, to be used as indices for containers.
26 enum class State : std::size_t {
44 State CurrentRecord = State::Unknown;
48 Error transition(State To);
  /src/sys/external/bsd/acpica/dist/tools/acpixtract/
acpixtract.c 79 unsigned int State = AX_STATE_FIND_HEADER;
133 (State == AX_STATE_EXTRACT_DATA))
147 State = AX_STATE_FIND_HEADER;
150 switch (State)
208 State = AX_STATE_EXTRACT_DATA;
225 State = AX_STATE_FIND_HEADER; /* No more data block lines */
254 if (State == AX_STATE_EXTRACT_DATA)
298 unsigned int State = AX_STATE_FIND_HEADER;
337 (State == AX_STATE_EXTRACT_DATA))
351 State = AX_STATE_FIND_HEADER
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
State.cpp 1 //===--- State.cpp - State chain for the VM and AST Walker ------*- C++ -*-===//
9 #include "State.h"
18 State::~State() {}
20 OptionalDiagnostic State::FFDiag(SourceLocation Loc, diag::kind DiagId,
25 OptionalDiagnostic State::FFDiag(const Expr *E, diag::kind DiagId,
33 OptionalDiagnostic State::FFDiag(const SourceInfo &SI, diag::kind DiagId,
41 OptionalDiagnostic State::CCEDiag(SourceLocation Loc, diag::kind DiagId,
52 OptionalDiagnostic State::CCEDiag(const Expr *E, diag::kind DiagId
    [all...]
State.h 1 //===--- State.h - State chain for the VM and AST Walker --------*- C++ -*-===//
9 // Defines the base class of the interpreter and evaluator state.
55 class State {
57 virtual ~State();

Completed in 30 milliseconds

1 2 3 4 5 6 7