Symbol: ecb_const
crypto/krb5/src/util/verto/ev.c
1005
ecb_function_ ecb_const int ecb_ld64 (uint64_t x);
crypto/krb5/src/util/verto/ev.c
1006
ecb_function_ ecb_const int ecb_ld64 (uint64_t x)
crypto/krb5/src/util/verto/ev.c
1022
ecb_function_ ecb_const ecb_bool ecb_is_pot32 (uint32_t x);
crypto/krb5/src/util/verto/ev.c
1023
ecb_function_ ecb_const ecb_bool ecb_is_pot32 (uint32_t x) { return !(x & (x - 1)); }
crypto/krb5/src/util/verto/ev.c
1024
ecb_function_ ecb_const ecb_bool ecb_is_pot64 (uint64_t x);
crypto/krb5/src/util/verto/ev.c
1025
ecb_function_ ecb_const ecb_bool ecb_is_pot64 (uint64_t x) { return !(x & (x - 1)); }
crypto/krb5/src/util/verto/ev.c
1027
ecb_function_ ecb_const uint8_t ecb_bitrev8 (uint8_t x);
crypto/krb5/src/util/verto/ev.c
1028
ecb_function_ ecb_const uint8_t ecb_bitrev8 (uint8_t x)
crypto/krb5/src/util/verto/ev.c
1034
ecb_function_ ecb_const uint16_t ecb_bitrev16 (uint16_t x);
crypto/krb5/src/util/verto/ev.c
1035
ecb_function_ ecb_const uint16_t ecb_bitrev16 (uint16_t x)
crypto/krb5/src/util/verto/ev.c
1045
ecb_function_ ecb_const uint32_t ecb_bitrev32 (uint32_t x);
crypto/krb5/src/util/verto/ev.c
1046
ecb_function_ ecb_const uint32_t ecb_bitrev32 (uint32_t x)
crypto/krb5/src/util/verto/ev.c
1059
ecb_function_ ecb_const int ecb_popcount64 (uint64_t x);
crypto/krb5/src/util/verto/ev.c
1060
ecb_function_ ecb_const int
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
1098
ecb_function_ ecb_const uint16_t ecb_bswap16 (uint16_t x);
crypto/krb5/src/util/verto/ev.c
1099
ecb_function_ ecb_const uint16_t
crypto/krb5/src/util/verto/ev.c
1105
ecb_function_ ecb_const uint32_t ecb_bswap32 (uint32_t x);
crypto/krb5/src/util/verto/ev.c
1106
ecb_function_ ecb_const uint32_t
crypto/krb5/src/util/verto/ev.c
1112
ecb_function_ ecb_const uint64_t ecb_bswap64 (uint64_t x);
crypto/krb5/src/util/verto/ev.c
1113
ecb_function_ ecb_const uint64_t
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
1197
ecb_function_ ecb_const uint32_t ecb_binary16_to_binary32 (uint32_t x);
crypto/krb5/src/util/verto/ev.c
1198
ecb_function_ ecb_const uint32_t
crypto/krb5/src/util/verto/ev.c
1229
ecb_function_ ecb_const uint16_t ecb_binary32_to_binary16 (uint32_t x);
crypto/krb5/src/util/verto/ev.c
1230
ecb_function_ ecb_const uint16_t
crypto/krb5/src/util/verto/ev.c
1345
ecb_function_ ecb_const uint32_t ecb_float_to_binary32 (float x);
crypto/krb5/src/util/verto/ev.c
1346
ecb_function_ ecb_const uint32_t
crypto/krb5/src/util/verto/ev.c
1385
ecb_function_ ecb_const float ecb_binary32_to_float (uint32_t x);
crypto/krb5/src/util/verto/ev.c
1386
ecb_function_ ecb_const float
crypto/krb5/src/util/verto/ev.c
1415
ecb_function_ ecb_const uint64_t ecb_double_to_binary64 (double x);
crypto/krb5/src/util/verto/ev.c
1416
ecb_function_ ecb_const uint64_t
crypto/krb5/src/util/verto/ev.c
1455
ecb_function_ ecb_const double ecb_binary64_to_double (uint64_t x);
crypto/krb5/src/util/verto/ev.c
1456
ecb_function_ ecb_const double
crypto/krb5/src/util/verto/ev.c
1485
ecb_function_ ecb_const uint16_t ecb_float_to_binary16 (float x);
crypto/krb5/src/util/verto/ev.c
1486
ecb_function_ ecb_const uint16_t
crypto/krb5/src/util/verto/ev.c
1493
ecb_function_ ecb_const float ecb_binary16_to_float (uint16_t x);
crypto/krb5/src/util/verto/ev.c
1494
ecb_function_ ecb_const float
crypto/krb5/src/util/verto/ev.c
928
ecb_function_ ecb_const int ecb_ctz32 (uint32_t x);
crypto/krb5/src/util/verto/ev.c
929
ecb_function_ ecb_const int
crypto/krb5/src/util/verto/ev.c
959
ecb_function_ ecb_const int ecb_ctz64 (uint64_t x);
crypto/krb5/src/util/verto/ev.c
960
ecb_function_ ecb_const int
crypto/krb5/src/util/verto/ev.c
973
ecb_function_ ecb_const int ecb_popcount32 (uint32_t x);
crypto/krb5/src/util/verto/ev.c
974
ecb_function_ ecb_const int
crypto/krb5/src/util/verto/ev.c
985
ecb_function_ ecb_const int ecb_ld32 (uint32_t x);
crypto/krb5/src/util/verto/ev.c
986
ecb_function_ ecb_const int ecb_ld32 (uint32_t x)