HomeSort by relevance Sort by last modified time
    Searched defs:pVal (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/ADT/
APInt.h 79 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
82 uint64_t *pVal; ///< Used to store the >64 bits integer value.
97 APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { }
146 pVal[getNumWords() - 1] &= mask;
153 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
287 delete [] pVal;
540 return &pVal[0];
594 if (pVal[i])
619 delete [] pVal;
659 pVal[0] |= RHS
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 85 const uint64_t *pVal; ///< Used to store the >64 bits integer value.
279 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
Expr.h     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 434 milliseconds