Home
last modified time | relevance | path

Searched refs:COUNT (Results 1 – 3 of 3) sorted by relevance

/haiku/src/bin/
H A Dleak_analyser.sh145 COUNT=0
147 COUNT=$(echo "$ALLOCATIONS" | wc -l)
151 echo "$ALLOCATIONS^total leaks: $COUNT" | tr '^' '\n' | less
/haiku/docs/develop/kits/app/
H A Dbmessage.txt123 // entry COUNT, type='LONG', c=1, size= 4, data[0]: 0x5 (5, '')
128 COUNT 5 name (COUNT)
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dlonglong.h133 #define count_leading_zeros(COUNT,X) \ argument
134 __asm__("ctlz %1,%0" : "=r"(COUNT) : "r"(X))
135 #define count_trailing_zeros(COUNT,X) \ argument
136 __asm__("cttz %1,%0" : "=r"(COUNT) : "r"(X))
140 #define count_leading_zeros(COUNT,X) \ argument
146 (COUNT) = 64 - (__clz_tab[__t] + __a*8); \
148 #define count_trailing_zeros(COUNT,X) \ argument
162 (COUNT) = __a; \