Home
last modified time | relevance | path

Searched refs:IsUsed (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCSymbol.h93 mutable unsigned IsUsed : 1; variable
156 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
217 bool isUsed() const { return IsUsed; } in isUsed()
297 IsUsed |= SetUsed;
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCall.h229 mutable bool IsUsed; member
234 : RV(rv), HasLV(false), IsUsed(false), Ty(ty) {} in CallArg()
236 : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {} in CallArg()
245 assert(HasLV && !IsUsed); in getKnownLValue()
249 assert(!HasLV && !IsUsed); in getKnownRValue()
H A DCoverageMappingGen.h88 bool IsUsed; member
120 bool IsUsed = true);
H A DCoverageMappingGen.cpp1602 if (Info.IsUsed) in emitFunctionMappingRecord()
1642 const std::string &CoverageMapping, bool IsUsed) { in addFunctionMappingRecord() argument
1645 FunctionRecords.push_back({NameHash, FuncHash, CoverageMapping, IsUsed}); in addFunctionMappingRecord()
1647 if (!IsUsed) in addFunctionMappingRecord()
H A DCGCall.cpp4243 IsUsed = true; in getRValue()
4261 IsUsed = true; in copyInto()
/netbsd-src/sys/external/bsd/acpica/dist/tools/acpiexec/
H A Daeinitfile.c272 AcpiGbl_InitEntries[i].IsUsed = TRUE; in AeLookupInitFileEntry()
311 !AcpiGbl_InitEntries[i].IsUsed) in AeDisplayUnusedInitFileItems()
H A Daecommon.h92 BOOLEAN IsUsed; member
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DMacroInfo.h106 bool IsUsed : 1; variable
152 void setIsUsed(bool Val) { IsUsed = Val; } in setIsUsed()
222 bool isUsed() const { return IsUsed; } in isUsed()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DMacroInfo.cpp34 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
139 if (IsUsed) Out << " used"; in dump()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCSymbol.cpp49 assert(!IsUsed && "Cannot set a variable that has already been used."); in setVariableValue()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaAttr.cpp955 if (!Entry.IsUsed) { in ActOnPragmaAttributePop()
994 Entry.IsUsed = true; in AddPragmaAttributes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp887 OperandData(Value *V, bool APO, bool IsUsed) in OperandData()
888 : V(V), APO(APO), IsUsed(IsUsed) {} in OperandData()
898 bool IsUsed = false; member
940 OpsVec[OpIdx][Lane].IsUsed = false; in clearUsed()
1215 if (OpData.IsUsed) in getBestOperand()
1250 getData(BestOp.Idx.getValue(), Lane).IsUsed = true; in getBestOperand()
1353 if (Data.APO != OpAPO || Data.IsUsed) in shouldBroadcast()
1357 Data.IsUsed = true; in shouldBroadcast()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp1583 auto IsUsed = [&HRI,&MRI] (unsigned Reg) -> bool { in needToReserveScavengingSpillSlots() local
1593 if (!IsUsed(*P)) in needToReserveScavengingSpillSlots()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h733 bool IsUsed; member