Lines Matching refs:SIGN
402 #define SIGN 1 /* unsigned/signed, must be 1 */
467 if (spec.flags & SIGN) {
662 spec.flags |= SIGN;
2494 spec->flags |= SIGN;
2515 BUILD_BUG_ON(FORMAT_TYPE_ULONG + SIGN != FORMAT_TYPE_LONG);
2516 spec->type = FORMAT_TYPE_ULONG + (spec->flags & SIGN);
2522 BUILD_BUG_ON(FORMAT_TYPE_UBYTE + SIGN != FORMAT_TYPE_BYTE);
2523 spec->type = FORMAT_TYPE_UBYTE + (spec->flags & SIGN);
2525 BUILD_BUG_ON(FORMAT_TYPE_USHORT + SIGN != FORMAT_TYPE_SHORT);
2526 spec->type = FORMAT_TYPE_USHORT + (spec->flags & SIGN);
2528 BUILD_BUG_ON(FORMAT_TYPE_UINT + SIGN != FORMAT_TYPE_INT);
2529 spec->type = FORMAT_TYPE_UINT + (spec->flags & SIGN);
2690 if (spec.flags & SIGN)