Searched defs:VAL (Results 1 - 5 of 5) 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::__anon8412
144 VAL &= mask;
153 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
230 : BitWidth(numBits), VAL(0) {
233 VAL = val;
269 : BitWidth(that.BitWidth), VAL(0) {
272 VAL = that.VAL;
279 APInt(APInt&& that) : BitWidth(that.BitWidth), VAL(tha
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h80 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::TemplateArgument::__anon3310::__anon3311::__anon3312
249 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
H A DExpr.h1128 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::APNumericStorage::__anon3278
1139 APNumericStorage() : VAL(0), BitWidth(0) { }
1146 return llvm::APInt(BitWidth, VAL);
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp5014 enum { ID, VAL } state = ID; enumerator in enum:WebCore::__anon14541
5025 state = VAL;
5030 case VAL: {

Completed in 455 milliseconds