Searched defs:Used (Results 1 - 25 of 36) sorted by relevance

12

/external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
H A DUsed.java30 @interface Used { interface
/external/clang/include/clang/Sema/
H A DWeak.h36 void setUsed(bool Used=true) { used = Used; } argument
/external/llvm/lib/Object/
H A DRecordStreamer.h18 enum State { NeverSeen, Global, GlobalWeak, Defined, DefinedGlobal, Used }; enumerator in enum:llvm::RecordStreamer::State
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_variable.h41 int Used; member in struct:live_intervals
H A Dradeon_program.c75 unsigned char * Used; member in struct:get_used_temporaries_data
94 d->Used[index] |= mask;
111 d.Used = used;
H A Dradeon_program_pair.h59 unsigned int Used:1; member in struct:rc_pair_instruction_source
H A Dradeon_pair_regalloc.c55 unsigned int Used:1; member in struct:register_info
167 if (!src || !src->Used) {
185 if (!a->Used || !b->Used) {
222 s->Input[index].Used = 1;
229 reg->Live[i].Used = 1;
562 if (s->Input[i].Live[chan].Used) {
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp30 enum IVarState { Unused, Used }; enumerator in enum:IVarState
41 I->second = Used;
75 I->second = Used;
/external/llvm/lib/Transforms/IPO/
H A DInternalize.cpp157 SmallPtrSet<GlobalValue *, 8> Used; local
158 collectUsedGlobalVariables(M, Used, false);
180 for (GlobalValue *V : Used) {
H A DWholeProgramDevirt.cpp91 std::vector<ArrayRef<uint8_t>> Used; local
101 Used.push_back(VTUsed.slice(Offset));
105 // Find a free bit in each member of Used.
108 for (auto &&B : Used)
116 // Find a free (Size/8) byte region in each member of Used.
119 for (auto &&B : Used) {
H A DSampleProfile.cpp223 unsigned computeCoverage(unsigned Used, unsigned Total) const;
378 unsigned SampleCoverageTracker::computeCoverage(unsigned Used, argument
380 assert(Used <= Total &&
382 return Total > 0 ? Used * 100 / Total : 100;
1166 unsigned Used = CoverageTracker.countUsedRecords(Samples); local
1168 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
1172 Twine(Used) + " of " + Twine(Total) + " available profile records (" +
1179 uint64_t Used = CoverageTracker.getTotalUsedSamples(); local
1181 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
1185 Twine(Used)
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-unused-value.cpp58 struct Used { struct in namespace:test3
59 Used();
60 Used(int);
61 Used(int, int);
69 Used();
70 Used(1);
71 Used(1, 1);
/external/llvm/include/llvm/
H A DPassAnalysisSupport.h49 SmallVector<AnalysisID, 0> Used; member in class:llvm::AnalysisUsage
93 Used.push_back(ID);
97 Used.push_back(&ID);
103 Used.push_back(&PassClass::ID);
135 const VectorType &getUsedSet() const { return Used; }
/external/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp73 // Map from callee ValueId to profile count. Used to accumulate profile
212 SmallPtrSet<GlobalValue *, 8> Used; local
213 collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
215 llvm::any_of(Used, [](GlobalValue *V) { return V->hasLocalLinkage(); });
/external/llvm/utils/
H A Dupdate_llc_test_checks.py12 import os # Used to advertise this file's name ("autogenerated_note"). namespace
H A Dupdate_test_checks.py34 import os # Used to advertise this file's name ("autogenerated_note"). namespace
/external/python/cpython3/Lib/idlelib/
H A Dmacosx.py4 from sys import platform # Used in _init_tk_type, changed by test. namespace
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetCallingConv.h110 bool Used; member in struct:llvm::ISD::InputArg
112 InputArg() : VT(MVT::Other), Used(false) {}
114 : Flags(flags), Used(used) {
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp220 std::vector<Constant*> Used; local
224 Used.push_back(cast<Constant>(V));
228 auto *NewValTy = ArrayType::get(NewValElemTy, Used.size());
229 auto *NewUsedVal = ConstantArray::get(NewValTy, Used);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRenderMachineFunction.h258 typedef enum { Dead, Defined, Used, AliveReg, AliveStack } LiveState; enumerator in enum:llvm::RenderMachineFunction::__anon22657
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp828 GlobalVariable *Used = collectUsedGlobalVariables(*M, UsedGlobals, true); local
835 if (Used)
836 Used->eraseFromParent();
/external/llvm/include/llvm/Target/
H A DTargetCallingConv.h149 bool Used; member in struct:llvm::ISD::InputArg
161 InputArg() : VT(MVT::Other), Used(false) {}
164 : Flags(flags), Used(used), OrigArgIndex(origIdx), PartOffset(partOffs) {
/external/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp397 static BasicBlock* FindPhiPredForUseInBlock(Value* Used, BasicBlock* BB) { argument
398 for (Use &U : Used->uses()) {
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DCodeExtractor.cpp360 static BasicBlock* FindPhiPredForUseInBlock(Value* Used, BasicBlock* BB) { argument
361 for (Value::use_iterator UI = Used->use_begin(),
362 UE = Used->use_end(); UI != UE; ++UI) {
/external/swiftshader/third_party/LLVM/tools/lto/
H A DLTOModule.cpp464 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used}; enumerator in enum:__anon23147::RecordStreamer::State
478 case Used:
493 case Used:
507 case Used:
508 S = Used;
654 Value == RecordStreamer::Used)

Completed in 694 milliseconds

12