Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.27/libiberty/
Dregex.c256 # undef SIGN_EXTEND_CHAR
258 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) macro
261 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) macro
688 (destination) += ((unsigned) SIGN_EXTEND_CHAR (*((source) + 1))) << 8; \
700 int temp = SIGN_EXTEND_CHAR (*(source + 1)); in PREFIX()