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

  /src/external/bsd/elftoolchain/dist/common/
_elftc.h 402 #ifndef roundup2
403 #define roundup2 roundup macro
417 #define roundup2 roundup macro
457 #define roundup2 roundup macro
507 #define roundup2 roundup macro
  /src/sys/sys/
param.h 437 * Rounding to powers of two. The naive definitions of roundup2 and
440 * #define roundup2(x,m) (((x) + ((m) - 1)) & ~((m) - 1))
446 * roundup2 and rounddown2 would have the unintended effect of clearing
451 #define roundup2(x,m) ((((x) - 1) | ((m) - 1)) + 1) macro
  /src/external/bsd/tcpdump/dist/
netdissect.h 123 #ifndef roundup2
124 #define roundup2(x, y) (((x)+((u_int)((y)-1)))&(~((u_int)((y)-1)))) macro
  /src/tools/compat/
compat_defs.h 1310 #undef roundup2 macro
1311 #define roundup2(x, m) ((((x) - 1) | ((m) - 1)) + 1) macro

Completed in 17 milliseconds