Searched refs:TypeBits (Results 1 - 6 of 6) sorted by relevance
/external/webkit/Source/JavaScriptCore/parser/ |
H A D | ResultType.h | 44 static const Type TypeBits = TypeMaybeNumber | TypeMaybeString | TypeMaybeNull | TypeMaybeBool | TypeMaybeOther; member in struct:JSC::ResultType 63 return (m_type & TypeBits) == TypeMaybeNumber; 68 return (m_type & TypeBits) == TypeMaybeString; 118 return ResultType(TypeBits);
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineShifts.cpp | 331 uint32_t TypeBits = Op0->getType()->getScalarSizeInBits(); local 336 if (Op1->uge(TypeBits)) { 340 I.setOperand(1, ConstantInt::get(I.getType(), TypeBits-1)); 424 uint32_t Op1Val = Op1->getLimitedValue(TypeBits); 426 APInt::getHighBitsSet(TypeBits, TypeBits-Op1Val))); 456 uint32_t Op1Val = Op1->getLimitedValue(TypeBits); 458 APInt::getHighBitsSet(TypeBits, TypeBits-Op1Val))); 507 isValid = Op0C->getValue()[TypeBits [all...] |
H A D | InstCombineCompares.cpp | 937 uint32_t TypeBits = CmpRHSV.getBitWidth(); local 938 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits); 939 if (ShAmtVal >= TypeBits || ShAmtVal == 0) 952 (!Shr->isExact() || ShAmtVal == TypeBits - 1)) 959 ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal)); 1007 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal)); 1280 uint32_t TypeBits = RHSV.getBitWidth(); local 1285 if (ShAmt->uge(TypeBits)) 1309 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits); [all...] |
/external/clang/lib/AST/ |
H A D | Type.cpp | 1488 switch (TypeBits.TC) { 2055 return CachedProperties(T->TypeBits.getLinkage(), 2056 T->TypeBits.hasLocalOrUnnamedType()); 2061 if (T->TypeBits.isCacheValid()) return; 2068 T->TypeBits.CacheValid = true; 2069 T->TypeBits.CachedLinkage = CT->TypeBits.CachedLinkage; 2070 T->TypeBits.CachedLocalOrUnnamed = CT->TypeBits.CachedLocalOrUnnamed; 2076 T->TypeBits [all...] |
/external/clang/include/clang/AST/ |
H A D | Type.h | 1332 TypeBitfields TypeBits; member in union:clang::Type::__anon3453 1346 TypeBits.FromAST = V; 1359 TypeBits.TC = tc; 1360 TypeBits.Dependent = Dependent; 1361 TypeBits.InstantiationDependent = Dependent || InstantiationDependent; 1362 TypeBits.VariablyModified = VariablyModified; 1363 TypeBits.ContainsUnexpandedParameterPack = ContainsUnexpandedParameterPack; 1364 TypeBits.CacheValid = false; 1365 TypeBits.CachedLocalOrUnnamed = false; 1366 TypeBits [all...] |
/external/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 1011 static APInt ReadWideAPInt(ArrayRef<uint64_t> Vals, unsigned TypeBits) { argument 1016 return APInt(TypeBits, Words);
|
Completed in 581 milliseconds