Home | History | Annotate | Download | only in AST

Lines Matching defs:Signed

3072 /// getSignedWCharType - Return the type of "signed wchar_t".
3657 // For instance, unsigned long bf : 4 gets promoted to signed int.
3706 // At this point, we should have a signed or unsigned integer type.
3748 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
3753 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
3759 // If the signed type can represent all values of the unsigned type, it
3769 // If the signed type can represent all values of the unsigned type, it
5928 // a signed integer type, or an unsigned integer type.
6235 // Turn <4 x signed int> -> <4 x unsigned int>
6245 assert(BTy && "Unexpected signed integer type");
6261 llvm_unreachable("Unexpected signed integer type");
6286 bool Signed = false, Unsigned = false;
6299 assert(!Signed && "Can't use 'S' modifier multiple times!");
6300 Signed = true;
6303 assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
6320 assert(HowLong == 0 && !Signed && !Unsigned &&
6325 assert(HowLong == 0 && !Signed && !Unsigned &&
6330 assert(HowLong < 2 && !Signed && !Unsigned &&
6356 if (Signed)
6364 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!");
6368 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!");
6434 if (Signed)
6445 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!");