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

  /src/external/public-domain/xz/dist/src/common/
tuklib_integer.h 27 /// - Count trailing zeros: ctz32(num)
28 /// - Bit scan forward (simply an alias for ctz32()): bsf32(num)
484 ctz32(uint32_t n) function
532 #define bsf32 ctz32
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid_binarydecimal.c 33 #define ctz32(n) (__builtin_ctz (n)) macro
381 t = ctz32(c); \
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid_binarydecimal.c 54 #define ctz32(n) (((n) == 0) ? 32 : ctz32_1bit((n) & -(n))) macro
424 t = ctz32(c); \
    [all...]

Completed in 38 milliseconds