X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Futil.c;h=e02f59fb0a0af60d4a71b3c66d297badc86aa924;hb=97d6520bea3b779d1acee7b1b2fd8ed60269078f;hp=0b82318cab8d225b63fbc24d55d1f2910d020248;hpb=55d5bb44cbca6993494b05a374d4f09ec03c9102;p=openvswitch diff --git a/lib/util.c b/lib/util.c index 0b82318c..e02f59fb 100644 --- a/lib/util.c +++ b/lib/util.c @@ -301,9 +301,9 @@ set_program_name__(const char *argv0, const char *date, const char *time) /* Returns a pointer to a string describing the program version. The * caller must not modify or free the returned string. - */ + */ const char * -get_program_version() +get_program_version(void) { return program_version; } @@ -663,3 +663,65 @@ log_2_floor(uint32_t n) } #endif } + +/* Returns the number of trailing 0-bits in 'n', or 32 if 'n' is 0. */ +int +ctz(uint32_t n) +{ + if (!n) { + return 32; + } else { +#if !defined(UINT_MAX) || !defined(UINT32_MAX) +#error "Someone screwed up the #includes." +#elif __GNUC__ >= 4 && UINT_MAX == UINT32_MAX + return __builtin_ctz(n); +#else + unsigned int k; + int count = 31; + +#define CTZ_STEP(X) \ + k = n << (X); \ + if (k) { \ + count -= X; \ + n = k; \ + } + CTZ_STEP(16); + CTZ_STEP(8); + CTZ_STEP(4); + CTZ_STEP(2); + CTZ_STEP(1); +#undef CTZ_STEP + + return count; +#endif + } +} + +/* Returns true if the 'n' bytes starting at 'p' are zeros. */ +bool +is_all_zeros(const uint8_t *p, size_t n) +{ + size_t i; + + for (i = 0; i < n; i++) { + if (p[i] != 0x00) { + return false; + } + } + return true; +} + +/* Returns true if the 'n' bytes starting at 'p' are 0xff. */ +bool +is_all_ones(const uint8_t *p, size_t n) +{ + size_t i; + + for (i = 0; i < n; i++) { + if (p[i] != 0xff) { + return false; + } + } + return true; +} +