Lines Matching refs:SIGN
409 #define SIGN 1 /* unsigned/signed, must be 1 */
417 static_assert(SIGN == 1);
475 if (spec.flags & SIGN) {
670 spec.flags |= SIGN;
2665 spec->flags |= SIGN;
2687 BUILD_BUG_ON(FORMAT_TYPE_ULONG + SIGN != FORMAT_TYPE_LONG);
2688 spec->type = FORMAT_TYPE_ULONG + (spec->flags & SIGN);
2694 BUILD_BUG_ON(FORMAT_TYPE_UBYTE + SIGN != FORMAT_TYPE_BYTE);
2695 spec->type = FORMAT_TYPE_UBYTE + (spec->flags & SIGN);
2697 BUILD_BUG_ON(FORMAT_TYPE_USHORT + SIGN != FORMAT_TYPE_SHORT);
2698 spec->type = FORMAT_TYPE_USHORT + (spec->flags & SIGN);
2700 BUILD_BUG_ON(FORMAT_TYPE_UINT + SIGN != FORMAT_TYPE_INT);
2701 spec->type = FORMAT_TYPE_UINT + (spec->flags & SIGN);
2862 if (spec.flags & SIGN)