HomeSort by: relevance | last modified time | path
    Searched defs:LG_CEIL (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
bit_util.h 402 lg_ceil(size_t x) {
406 /* A compile-time version of lg_floor and lg_ceil. */
420 #define LG_CEIL(x) (LG_FLOOR(x) + (((x) & ((x) - 1)) == 0 ? 0 : 1))
  /src/external/bsd/jemalloc/include/jemalloc/internal/
bit_util.h 402 lg_ceil(size_t x) {
406 /* A compile-time version of lg_floor and lg_ceil. */
420 #define LG_CEIL(x) (LG_FLOOR(x) + (((x) & ((x) - 1)) == 0 ? 0 : 1))

Completed in 24 milliseconds