Searched defs:Ch (Results 1 – 5 of 5) sorted by relevance
/titanic_52/usr/src/lib/iconv_modules/hi_IN/ |
H A D | UTF-8%iscii91.c | 38 #define utf8_len(Ch) (Ch < 0x80 ? 1 : (Ch < 0xe0 ? 2 : (Ch < 0xf0 ? 3 : (Ch < 0xf8 ? 4 : (Ch < 0xfc ? 5 : 6))))) argument 40 #define analyze_utf8(Ch, Mask, nBytes) \ argument 62 ucs2_from_utf8(mUCS,Ch,Ct,Mask,Len) global() argument [all...] |
/titanic_52/usr/src/grub/grub-0.97/stage2/ |
H A D | zfs_sha256.c | 46 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) macro
|
/titanic_52/usr/src/boot/sys/cddl/boot/zfs/ |
H A D | sha256.c | 47 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) macro
|
/titanic_52/usr/src/common/crypto/sha2/ |
H A D | sha2.c | 91 #define Ch(b, c, d) (((b) & (c)) ^ ((~b) & (d))) macro
|
/titanic_52/usr/src/contrib/ast/src/lib/libsum/ |
H A D | sum-sha2.c | 249 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro [all...] |