Home
last modified time | relevance | path

Searched refs:SIGN_EXTEND_CHAR (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/tcsh/
Dsh.sem.c575 int nval = SIGN_EXTEND_CHAR(t->t_nice); in execute()
Dsh.h1269 #define SIGN_EXTEND_CHAR(a) (((a) & 0x80) ? ((a) | ~0x7f) : (a)) macro
Dsh.proc.c1864 int nval = SIGN_EXTEND_CHAR(t->t_nice); in pfork()
/freebsd-12-stable/contrib/binutils/libiberty/
Dregex.c254 # undef SIGN_EXTEND_CHAR
256 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro
259 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro
686 (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \
698 int temp = SIGN_EXTEND_CHAR (*(source + 1)); in PREFIX()
/freebsd-12-stable/contrib/gcclibs/libiberty/
Dregex.c254 # undef SIGN_EXTEND_CHAR
256 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro
259 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro
686 (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \
698 int temp = SIGN_EXTEND_CHAR (*(source + 1)); in PREFIX()
/freebsd-12-stable/contrib/gdb/gdb/doc/
Dgdbint.texinfo4748 @item SIGN_EXTEND_CHAR