Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCSymbol.h88 mutable unsigned IsUsed : 1; variable
150 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
219 bool isUsed() const { return IsUsed; } in isUsed()
220 void setUsed(bool Value) const { IsUsed |= Value; } in setUsed()
296 IsUsed |= SetUsed;
/external/gptfdisk/
Dgpt.cc320 if ((partitions[i].IsUsed()) && (partitions[i].GetFirstLBA() % sectorAlignment) != 0) { in Verify()
359 if (partitions[i].IsUsed()) { in CheckGPTSize()
600 (partitions[j].GetLastLBA() == mbrLast) && (partitions[j].IsUsed())) in FindHybridMismatches()
630 if ((partitions[i].IsUsed()) && (partitions[j].IsUsed()) && in FindOverlaps()
654 if (partitions[i].IsUsed()) { in FindInsanePartitions()
1618 if (partitions[partNum].IsUsed()) in XFormDisklabel()
1929 if (partitions[pn].IsUsed()) { in SetPartitionGUID()
1945 if (partitions[i].IsUsed()) in RandomizeGUIDs()
2039 if (partitions[i].IsUsed()) { // it exists in GetPartRange()
2060 while ((i < (int) numParts) && (partitions[i].IsUsed())) in FindFirstFreePart()
[all …]
Dgptpart.h70 int IsUsed(void);
Dgpttext.cc433 if (partitions[j].IsUsed() && (partitions[j].IsSizedForMBR() != MBR_SIZED_BAD)) { in MakeHybrid()
503 if (partitions[i].IsUsed()) { in XFormToMBR()
Dgptpart.cc137 int GPTPart::IsUsed(void) { in IsUsed() function in GPTPart
Dgptcurses.cc93 if (partitions[i].IsUsed()) { in MakeSpacesFromParts()
/external/clang/include/clang/Lex/
DMacroInfo.h100 bool IsUsed : 1; variable
149 void setIsUsed(bool Val) { IsUsed = Val; } in setIsUsed()
219 bool isUsed() const { return IsUsed; } in isUsed()
/external/llvm/lib/MC/
DMCSymbol.cpp42 assert(!IsUsed && "Cannot set a variable that has already been used."); in setVariableValue()
/external/clang/lib/Lex/
DMacroInfo.cpp29 IsUsed(false), in MacroInfo()
136 if (IsUsed) Out << " used"; in dump()
/external/v8/src/compiler/
Dinstruction-selector.h160 bool IsUsed(Node* node) const;
163 bool IsLive(Node* node) const { return !IsDefined(node) && IsUsed(node); } in IsLive()
Dinstruction-selector.cc286 bool InstructionSelector::IsUsed(Node* node) const { in IsUsed() function in v8::internal::compiler::InstructionSelector
731 if (!IsUsed(node) || IsDefined(node)) continue; in VisitBlock()
/external/v8/tools/
Dll_prof.py128 def IsUsed(self): member in Code
307 if code.IsUsed():
/external/vixl/src/vixl/a64/
Dassembler-a64.h951 bool IsUsed() { return offset_ < 0; } in IsUsed() function
971 VIXL_ASSERT(IsUsed()); in last_use()
Dassembler-a64.cc585 if (literal->IsUsed()) { in place()
622 (literal->GetLiteralPool() != NULL) && !literal->IsUsed(); in LinkAndGetWordOffsetTo()
632 if (literal->IsUsed()) { in LinkAndGetWordOffsetTo()
Dmacro-assembler-a64.cc112 VIXL_ASSERT((*it)->IsUsed()); in Emit()