Searched refs:SIGN_EXTEND_CHAR (Results 1 – 8 of 8) sorted by relevance
575 int nval = SIGN_EXTEND_CHAR(t->t_nice); in execute()
1274 #define SIGN_EXTEND_CHAR(a) (((a) & 0x80) ? ((a) | ~0x7f) : (a)) macro
1880 int nval = SIGN_EXTEND_CHAR(t->t_nice); in pfork()
255 # undef SIGN_EXTEND_CHAR257 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro260 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro687 (destination) += ((unsigned) SIGN_EXTEND_CHAR (*((source) + 1))) << 8; \699 int temp = SIGN_EXTEND_CHAR (*(source + 1)); in PREFIX()
256 # undef SIGN_EXTEND_CHAR258 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro261 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro688 (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \700 int temp = SIGN_EXTEND_CHAR (*(source + 1)); in PREFIX()
256 # undef SIGN_EXTEND_CHAR258 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro261 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro688 (destination) += ((unsigned) SIGN_EXTEND_CHAR (*((source) + 1))) << 8; \700 int temp = SIGN_EXTEND_CHAR (*(source + 1)); in PREFIX()