Symbol: ecb_inline
crypto/krb5/src/util/verto/ev.c
1066
ecb_inline ecb_const uint8_t ecb_rotl8 (uint8_t x, unsigned int count);
crypto/krb5/src/util/verto/ev.c
1067
ecb_inline ecb_const uint8_t ecb_rotr8 (uint8_t x, unsigned int count);
crypto/krb5/src/util/verto/ev.c
1068
ecb_inline ecb_const uint16_t ecb_rotl16 (uint16_t x, unsigned int count);
crypto/krb5/src/util/verto/ev.c
1069
ecb_inline ecb_const uint16_t ecb_rotr16 (uint16_t x, unsigned int count);
crypto/krb5/src/util/verto/ev.c
1070
ecb_inline ecb_const uint32_t ecb_rotl32 (uint32_t x, unsigned int count);
crypto/krb5/src/util/verto/ev.c
1071
ecb_inline ecb_const uint32_t ecb_rotr32 (uint32_t x, unsigned int count);
crypto/krb5/src/util/verto/ev.c
1072
ecb_inline ecb_const uint64_t ecb_rotl64 (uint64_t x, unsigned int count);
crypto/krb5/src/util/verto/ev.c
1073
ecb_inline ecb_const uint64_t ecb_rotr64 (uint64_t x, unsigned int count);
crypto/krb5/src/util/verto/ev.c
1075
ecb_inline ecb_const uint8_t ecb_rotl8 (uint8_t x, unsigned int count) { return (x >> ( 8 - count)) | (x << count); }
crypto/krb5/src/util/verto/ev.c
1076
ecb_inline ecb_const uint8_t ecb_rotr8 (uint8_t x, unsigned int count) { return (x << ( 8 - count)) | (x >> count); }
crypto/krb5/src/util/verto/ev.c
1077
ecb_inline ecb_const uint16_t ecb_rotl16 (uint16_t x, unsigned int count) { return (x >> (16 - count)) | (x << count); }
crypto/krb5/src/util/verto/ev.c
1078
ecb_inline ecb_const uint16_t ecb_rotr16 (uint16_t x, unsigned int count) { return (x << (16 - count)) | (x >> count); }
crypto/krb5/src/util/verto/ev.c
1079
ecb_inline ecb_const uint32_t ecb_rotl32 (uint32_t x, unsigned int count) { return (x >> (32 - count)) | (x << count); }
crypto/krb5/src/util/verto/ev.c
1080
ecb_inline ecb_const uint32_t ecb_rotr32 (uint32_t x, unsigned int count) { return (x << (32 - count)) | (x >> count); }
crypto/krb5/src/util/verto/ev.c
1081
ecb_inline ecb_const uint64_t ecb_rotl64 (uint64_t x, unsigned int count) { return (x >> (64 - count)) | (x << count); }
crypto/krb5/src/util/verto/ev.c
1082
ecb_inline ecb_const uint64_t ecb_rotr64 (uint64_t x, unsigned int count) { return (x << (64 - count)) | (x >> count); }
crypto/krb5/src/util/verto/ev.c
1124
ecb_inline ecb_noreturn void ecb_unreachable (void);
crypto/krb5/src/util/verto/ev.c
1125
ecb_inline ecb_noreturn void ecb_unreachable (void) { }
crypto/krb5/src/util/verto/ev.c
1131
ecb_inline ecb_const uint32_t ecb_byteorder_helper (void);
crypto/krb5/src/util/verto/ev.c
1132
ecb_inline ecb_const uint32_t
crypto/krb5/src/util/verto/ev.c
1159
ecb_inline ecb_const ecb_bool ecb_big_endian (void);
crypto/krb5/src/util/verto/ev.c
1160
ecb_inline ecb_const ecb_bool ecb_big_endian (void) { return ecb_byteorder_helper () == 0x11223344; }
crypto/krb5/src/util/verto/ev.c
1161
ecb_inline ecb_const ecb_bool ecb_little_endian (void);
crypto/krb5/src/util/verto/ev.c
1162
ecb_inline ecb_const ecb_bool ecb_little_endian (void) { return ecb_byteorder_helper () == 0x44332211; }
crypto/krb5/src/util/verto/ev.c
1534
#define inline_size ecb_inline
crypto/krb5/src/util/verto/ev.c
1537
# define inline_speed ecb_inline
crypto/krb5/src/util/verto/ev.c
821
#define ecb_function_ ecb_inline