Symbol: UWtype
src/system/libroot/posix/glibc/stdlib/longlong.h
1204
UWtype __x; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1214
UWtype __x; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1224
UWtype __x0, __x1, __x2, __x3; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1232
__x0 = (UWtype) __ul * __vl; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1233
__x1 = (UWtype) __ul * __vh; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1234
__x2 = (UWtype) __uh * __vl; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1235
__x3 = (UWtype) __uh * __vh; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1257
UWtype __d1, __d0, __q1, __q0; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1258
UWtype __r1, __r0, __m; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1264
__m = (UWtype) __q1 * __d0; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1277
__m = (UWtype) __q0 * __d0; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1288
(q) = (UWtype) __q1 * __ll_B | __q0; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1313
UWtype __xr = (x); \
src/system/libroot/posix/glibc/stdlib/longlong.h
1314
UWtype __a; \
src/system/libroot/posix/glibc/stdlib/longlong.h
1318
__a = __xr < ((UWtype)1<<2*__BITS4) \
src/system/libroot/posix/glibc/stdlib/longlong.h
1319
? (__xr < ((UWtype)1<<__BITS4) ? 0 : __BITS4) \
src/system/libroot/posix/glibc/stdlib/longlong.h
1320
: (__xr < ((UWtype)1<<3*__BITS4) ? 2*__BITS4 : 3*__BITS4); \
src/system/libroot/posix/glibc/stdlib/longlong.h
1339
UWtype __ctz_x = (x); \
src/system/libroot/posix/glibc/stdlib/longlong.h
1340
UWtype __ctz_c; \
src/system/libroot/posix/glibc/stdlib/longlong.h
38
#define __ll_B ((UWtype) 1 << (W_TYPE_SIZE / 2))
src/system/libroot/posix/glibc/stdlib/longlong.h
39
#define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1))
src/system/libroot/posix/glibc/stdlib/longlong.h
40
#define __ll_highpart(t) ((UWtype) (t) >> (W_TYPE_SIZE / 2))