HomeSort by relevance Sort by last modified time
    Searched refs:IsUsed (Results 1 - 15 of 15) sorted by null

  /external/llvm/include/llvm/MC/
MCSymbol.h 87 /// IsUsed - True if this symbol has been used.
88 mutable unsigned IsUsed : 1;
150 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false),
218 /// isUsed - Check if this is used.
219 bool isUsed() const { return IsUsed; }
220 void setUsed(bool Value) const { IsUsed |= Value; }
296 IsUsed |= SetUsed;
  /external/gptfdisk/
gptpart.h 70 int IsUsed(void);
gpt.cc 320 if ((partitions[i].IsUsed()) && (partitions[i].GetFirstLBA() % sectorAlignment) != 0) {
359 if (partitions[i].IsUsed()) {
600 (partitions[j].GetLastLBA() == mbrLast) && (partitions[j].IsUsed()))
630 if ((partitions[i].IsUsed()) && (partitions[j].IsUsed()) &&
654 if (partitions[i].IsUsed()) {
    [all...]
gpttext.cc 433 if (partitions[j].IsUsed() && (partitions[j].IsSizedForMBR() != MBR_SIZED_BAD)) {
503 if (partitions[i].IsUsed()) {
    [all...]
gptpart.cc 137 int GPTPart::IsUsed(void) {
139 } // GPTPart::IsUsed()
gptcurses.cc 93 if (partitions[i].IsUsed()) {
  /external/llvm/lib/MC/
MCSymbol.cpp 42 assert(!IsUsed && "Cannot set a variable that has already been used.");
  /external/clang/include/clang/Lex/
MacroInfo.h 100 bool IsUsed : 1;
148 /// \brief Set the value of the IsUsed flag.
149 void setIsUsed(bool Val) { IsUsed = Val; }
219 bool isUsed() const { return IsUsed; }
  /external/clang/lib/Lex/
MacroInfo.cpp 29 IsUsed(false),
136 if (IsUsed) Out << " used";
  /external/v8/src/compiler/
instruction-selector.h 147 bool IsUsed(Node* node) const;
150 bool IsLive(Node* node) const { return !IsDefined(node) && IsUsed(node); }
instruction-selector.cc 266 bool InstructionSelector::IsUsed(Node* node) const {
668 if (!IsUsed(node) || IsDefined(node)) continue;
    [all...]
  /external/v8/tools/
ll_prof.py 128 def IsUsed(self):
299 if code.IsUsed():
    [all...]
  /external/vixl/src/vixl/a64/
assembler-a64.h 951 bool IsUsed() { return offset_ < 0; }
971 VIXL_ASSERT(IsUsed());
    [all...]
assembler-a64.cc 585 if (literal->IsUsed()) {
622 (literal->GetLiteralPool() != NULL) && !literal->IsUsed();
632 if (literal->IsUsed()) {
    [all...]
macro-assembler-a64.cc 112 VIXL_ASSERT((*it)->IsUsed());
    [all...]

Completed in 1965 milliseconds