Lines Matching refs:lzo_uint64l_t
1051 LZOLIB_EXTERN(lzo_uint64l_t, lzo_ua_get_be64) (const lzo_hvoid_p);
1052 LZOLIB_EXTERN(void, lzo_ua_set_be64) (lzo_hvoid_p, lzo_uint64l_t);
1053 LZOLIB_EXTERN(lzo_uint64l_t, lzo_ua_get_le64) (const lzo_hvoid_p);
1054 LZOLIB_EXTERN(void, lzo_ua_set_le64) (lzo_hvoid_p, lzo_uint64l_t);
1226 lzo_uint64l_t ticks_base;
1294 lzo_uint64l_t seed;
1305 lzo_uint64l_t seed;
1310 LZOLIB_EXTERN(void, lzo_srand64) (lzo_rand64_p, lzo_uint64l_t);
1327 lzo_uint64l_t s[312];
1332 LZOLIB_EXTERN(void, lzo_srandmt64) (lzo_randmt64_p, lzo_uint64l_t);
1333 LZOLIB_EXTERN(lzo_uint64l_t, lzo_randmt64_r64) (lzo_randmt64_p);
1777 LZOCHK_ASSERT(sizeof(lzo_uint64l_t) >= 8)
1778 LZOCHK_ASSERT(sizeof(lzo_int64l_t) == sizeof(lzo_uint64l_t))
1784 LZOCHK_ASSERT_IS_UNSIGNED_T(lzo_uint64l_t)
1787 LZOCHK_ASSERT(((( LZO_STATIC_CAST(lzo_uint64l_t, 1) << 63) + 1) >> 63) == 1)
1809 LZOCHK_ASSERT(sizeof(lzo_uint64f_t) >= sizeof(lzo_uint64l_t))
2138 lzo_uint64l_t a; in LZOLIB_PUBLIC()
2146 lzo_uint64l_t a; in LZOLIB_PUBLIC()
2154 LZOLIB_PUBLIC(void, lzo_srand64) (lzo_rand64_p r, lzo_uint64l_t seed) in LZOLIB_PUBLIC()
2160 lzo_uint64l_t a; in LZOLIB_PUBLIC()
2170 lzo_uint64l_t a; in LZOLIB_PUBLIC()
2213 LZOLIB_PUBLIC(void, lzo_srandmt64) (lzo_randmt64_p r, lzo_uint64l_t seed) in LZOLIB_PUBLIC()
2226 lzo_uint64l_t v;
2231 LZOLIB_PUBLIC(lzo_uint64l_t, lzo_randmt64_r64) (lzo_randmt64_p r) in LZOLIB_PUBLIC() argument
2233 lzo_uint64l_t v; in LZOLIB_PUBLIC()
2933 lzo_uint64l_t nsecs; in lzo_pclock_read_clock()
2936 nsecs = LZO_STATIC_CAST(lzo_uint64l_t, (secs * 1000000000.0)); in lzo_pclock_read_clock()
2970 lzo_uint64l_t ticks; in lzo_pclock_read_uclock()
2972 lzo_uint64l_t nsecs; in lzo_pclock_read_uclock()
2975 nsecs = LZO_STATIC_CAST(lzo_uint64l_t, (secs * 1000000000.0)); in lzo_pclock_read_uclock()
3016 lzo_uint64l_t ticks; in lzo_pclock_read_getprocesstimes()
3019 ticks = (LZO_STATIC_CAST(lzo_uint64l_t, ut.dwHighDateTime) << 32) | ut.dwLowDateTime; in lzo_pclock_read_getprocesstimes()
3084 lzo_uint64l_t ticks; in lzo_pclock_read_getthreadtimes()
3087 ticks = (LZO_STATIC_CAST(lzo_uint64l_t, ut.dwHighDateTime) << 32) | ut.dwLowDateTime; in lzo_pclock_read_getthreadtimes()
3504 lzo_uint64l_t rr = (LZO_ICONV(lzo_uint64l_t, a) * b) / x; in LZOLIB_PUBLIC()