Home
last modified time | relevance | path

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

/dragonfly/contrib/binutils-2.27/libiberty/
H A Dregex.c258 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro
261 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro
/dragonfly/contrib/gdb-7/libiberty/
H A Dregex.c258 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro
261 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro
/dragonfly/contrib/binutils-2.34/libiberty/
H A Dregex.c257 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro
260 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro
/dragonfly/contrib/gcc-8.0/libiberty/
H A Dregex.c257 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro
260 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro
/dragonfly/contrib/gcc-4.7/libiberty/
H A Dregex.c258 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro
261 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro
/dragonfly/contrib/tcsh-6/
H A Dsh.h1274 #define SIGN_EXTEND_CHAR(a) (((a) & 0x80) ? ((a) | ~0x7f) : (a)) macro