Searched defs:VAL (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Ddebug-info-byval.cpp18 class VAL { class
26 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
/external/llvm/include/llvm/ADT/
H A DAPInt.h77 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
79 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:llvm::APInt::__anon10104
148 VAL &= mask;
157 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
237 : BitWidth(numBits), VAL(0) {
240 VAL = val;
279 APInt(const APInt &that) : BitWidth(that.BitWidth), VAL(0) {
281 VAL = that.VAL;
287 APInt(APInt &&that) : BitWidth(that.BitWidth), VAL(tha
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h90 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::TemplateArgument::I::__anon623
288 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
H A DExpr.h1235 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::APNumericStorage::__anon591
1246 APNumericStorage() : VAL(0), BitWidth(0) { }
1253 return llvm::APInt(BitWidth, VAL);

Completed in 483 milliseconds