Home
last modified time | relevance | path

Searched defs:Ch (Results 1 – 12 of 12) sorted by relevance

/dflybsd-src/contrib/cvs-1.12/lib/
H A Dstrftime.c240 # define TOUPPER(Ch, L) __towupper_l (Ch, L) argument
241 # define TOLOWER(Ch, L) __towlower_l (Ch, L) argument
243 # define TOUPPER(Ch, L) towupper (Ch) argument
244 # define TOLOWER(Ch, L) towlower (Ch) argument
249 # define TOUPPER(Ch, L) __toupper_l (Ch, L) argument
250 # define TOLOWER(Ch, L) __tolower_l (Ch, L) argument
252 # define TOUPPER(Ch, L) toupper (Ch) argument
253 # define TOLOWER(Ch, L) tolower (Ch) argument
256 # define TOUPPER(Ch, L) (islower (Ch) ? toupper (Ch) : (Ch)) argument
257 # define TOLOWER(Ch, L) (isupper (Ch) ? tolower (Ch) : (Ch)) argument
[all …]
H A Dstrcasecmp.c33 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch)) argument
/dflybsd-src/contrib/grep/lib/
H A Dmbscasecmp.c29 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch)) argument
/dflybsd-src/contrib/wpa_supplicant/src/crypto/
H A Dsha512-internal.c92 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
H A Dsha256-internal.c71 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
/dflybsd-src/contrib/xz/src/liblzma/check/
H A Dsha256.c38 #define Ch(x, y, z) (z ^ (x & (y ^ z))) macro
/dflybsd-src/crypto/libressl/crypto/sha/
H A Dsha256.c147 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
H A Dsha512.c350 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
/dflybsd-src/lib/libcrypt/
H A Dcrypt-sha256.c92 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in __crypt__sha256_process_block() macro
H A Dcrypt-sha512.c123 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in __crypt__sha512_process_block() macro
/dflybsd-src/contrib/ldns/
H A Dsha2.c198 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
/dflybsd-src/sys/crypto/sha2/
H A Dsha2.c191 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro