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

/external/clang/test/CodeGenCXX/
H A Ddebug-info-byval.cpp17 class VAL { class
25 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
/external/llvm/include/llvm/ADT/
H A DAPInt.h79 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
81 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:llvm::APInt::__anon21811
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) {
282 VAL = that.VAL;
289 APInt(APInt &&that) : BitWidth(that.BitWidth), VAL(tha
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h84 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::TemplateArgument::I::__anon15839
276 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
H A DExpr.h1203 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::APNumericStorage::__anon15812
1214 APNumericStorage() : VAL(0), BitWidth(0) { }
1221 return llvm::APInt(BitWidth, VAL);

Completed in 1328 milliseconds