Home
last modified time | relevance | path

Searched refs:ull (Results 1 – 25 of 70) sorted by relevance

123

/freebsd/contrib/processor-trace/libipt/test/src/
H A Dptunit-image_section_cache.c402 section->bcsize = 0ull; in pt_section_unmap()
471 return 0ull; in pt_section_offset()
479 return 0ull; in pt_section_size()
489 *size = section->mcount ? section->size + section->bcsize : 0ull; in pt_section_memsize()
593 0ull); in sfix_init()
658 errcode = pt_iscache_add(NULL, &section, 0ull); in add_null()
661 errcode = pt_iscache_add(&iscache, NULL, 0ull); in add_null()
671 errcode = pt_iscache_find(NULL, "filename", 0ull, 0ull, 0ull); in find_null()
718 errcode = pt_iscache_add_file(NULL, "filename", 0ull, 0ull, 0ull); in add_file_null()
721 errcode = pt_iscache_add_file(&iscache, NULL, 0ull, 0ull, 0ull); in add_file_null()
[all …]
H A Dptunit-msec_cache.c211 status = pt_msec_cache_read(NULL, &msec, &image, 0ull); in read_null()
214 status = pt_msec_cache_read(&mcache, NULL, &image, 0ull); in read_null()
217 status = pt_msec_cache_read(&mcache, &msec, NULL, 0ull); in read_null()
233 status = pt_msec_cache_fill(NULL, &msec, &image, &asid, 0ull); in fill_null()
236 status = pt_msec_cache_fill(&mcache, NULL, &image, &asid, 0ull); in fill_null()
239 status = pt_msec_cache_fill(&mcache, &msec, NULL, &asid, 0ull); in fill_null()
242 status = pt_msec_cache_fill(&mcache, &msec, &image, NULL, 0ull); in fill_null()
272 status = pt_msec_cache_read(&tfix->mcache, &msec, &tfix->image, 0ull); in read_nomap()
285 status = pt_msec_cache_read(&tfix->mcache, &msec, &tfix->image, 0ull); in read()
306 0ull); in fill_nomap()
[all …]
H A Dptunit-tnt_cache.c46 ptu_uint_eq(tnt_cache.tnt, 0ull); in init()
47 ptu_uint_eq(tnt_cache.index, 0ull); in init()
90 tnt_cache.index = 0ull; in is_empty_yes()
128 tnt_cache.tnt = 0ull; in query_not_taken()
143 tnt_cache.index = 0ull; in query_empty()
H A Dptunit-block_cache.c128 errcode = pt_bcache_add(NULL, 0ull, bce); in add_null()
140 errcode = pt_bcache_lookup(&bce, NULL, 0ull); in lookup_null()
143 errcode = pt_bcache_lookup(NULL, &bcache, 0ull); in lookup_null()
175 bfix->bcache = pt_bcache_alloc(0ull); in alloc_zero()
365 ptu_run_fp(suite, add, bfix, 0ull); in main()
H A Dptunit-last_ip.c46 ptu_uint_eq(last_ip.ip, 0ull); in init()
180 ptu_uint_eq(ip, 0ull); in query_noip()
197 ptu_uint_eq(ip, 0ull); in query_suppressed()
301 packet.ip = 0ull; in update_ip_bad_packet()
H A Dptunit-config.c188 ptu_uint_eq(config.addr_filter.config.addr_cfg, 0ull); in addr_filter_none()
213 ptu_uint_ne(config.addr_filter.config.addr_cfg, 0ull); in addr_filter_0()
248 ptu_uint_ne(config.addr_filter.config.addr_cfg, 0ull); in addr_filter_1_3()
291 ptu_uint_eq(addr_a, 0ull); in addr_filter_oob()
294 ptu_uint_eq(addr_b, 0ull); in addr_filter_oob()
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfixunstfti.c33 unsigned long long ull[2]; // High and low doubles as 64-bit integers. in __fixunstfti() member
46 hiExponent = ((ldUnion.ull[0] & 0x7FFFFFFFFFFFFFFFll) >> 52) - BIAS; in __fixunstfti()
47 loExponent = ((ldUnion.ull[1] & 0x7FFFFFFFFFFFFFFFll) >> 52) - BIAS; in __fixunstfti()
72 ldUnion.ull[0] &= 0x800FFFFFFFFFFFFFll; in __fixunstfti()
73 ldUnion.ull[0] |= 0x4350000000000000ll; in __fixunstfti()
96 ldUnion.ull[1] &= 0x800FFFFFFFFFFFFFll; in __fixunstfti()
97 ldUnion.ull[1] |= 0x4350000000000000ll; in __fixunstfti()
/freebsd/crypto/heimdal/lib/roken/
H A Dgettimeofday.c45 ULONGLONG ull; in gettimeofday() local
50 ull = li.QuadPart; in gettimeofday()
52 ull -= 116444736000000000i64; in gettimeofday()
53 ull /= 10i64; /* ull is now in microseconds */ in gettimeofday()
55 tp->tv_usec = (ull % 1000000i64); in gettimeofday()
56 tp->tv_sec = (ull / 1000000i64); in gettimeofday()
/freebsd/contrib/libfido2/src/
H A Dutil.c18 unsigned long long ull; in fido_to_uint64() local
21 ull = strtoull(str, &ep, base); in fido_to_uint64()
24 else if (ull == ULLONG_MAX && errno == ERANGE) in fido_to_uint64()
26 else if (ull > UINT64_MAX) in fido_to_uint64()
28 *out = (uint64_t)ull; in fido_to_uint64()
/freebsd/contrib/libpcap/
H A Dpcap-int.h116 #define SWAPLL(ull) ((ull & 0xff00000000000000ULL) >> 56) | \ argument
117 ((ull & 0x00ff000000000000ULL) >> 40) | \
118 ((ull & 0x0000ff0000000000ULL) >> 24) | \
119 ((ull & 0x000000ff00000000ULL) >> 8) | \
120 ((ull & 0x00000000ff000000ULL) << 8) | \
121 ((ull & 0x0000000000ff0000ULL) << 24) | \
122 ((ull & 0x000000000000ff00ULL) << 40) | \
123 ((ull & 0x00000000000000ffULL) << 56)
/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_time.c144 time->fc = 0ull; in pt_time_update_tsc()
271 time->fc = 0ull; in pt_time_update_mtc()
513 tcal->cyc_tsc = 0ull; in pt_tcal_update_tsc()
535 tcal->cyc_tsc = 0ull; in pt_tcal_header_tsc()
559 if (tsc_delta & ~(~0ull >> pt_tcal_fcr_shr)) in pt_tcal_header_tsc()
637 tcal->cyc_mtc = 0ull; in pt_tcal_update_mtc()
652 tcal->cyc_mtc = 0ull; in pt_tcal_update_mtc()
671 if (fc & ~(~0ull >> pt_tcal_fcr_shr)) in pt_tcal_update_mtc()
753 tcal->tsc = 0ull; in pt_tcal_update_ovf()
754 tcal->cyc_tsc = 0ull; in pt_tcal_update_ovf()
[all …]
H A Dpt_last_ip.c39 last_ip->ip = 0ull; in pt_last_ip_init()
51 *ip = 0ull; in pt_last_ip_query()
57 *ip = 0ull; in pt_last_ip_query()
73 mask = ~0ull << sign; in sext()
H A Dpt_config.c161 return 0ull; in pt_filter_addr_a()
164 return 0ull; in pt_filter_addr_a()
175 return 0ull; in pt_filter_addr_b()
178 return 0ull; in pt_filter_addr_b()
H A Dpt_tnt_cache.c39 cache->tnt = 0ull; in pt_tnt_cache_init()
40 cache->index = 0ull; in pt_tnt_cache_init()
H A Dpt_section.c361 return 0ull; in pt_section_size()
376 *psize = 0ull; in pt_section_bcache_memsize()
401 *psize = 0ull; in pt_section_memsize_locked()
438 return 0ull; in pt_section_offset()
463 memsize = 0ull; in pt_section_alloc_bcache()
/freebsd/contrib/sendmail/libsm/
H A Dt-types.c26 ULONGLONG_T ull; variable
88 ull = ULLONG_MAX;
89 SM_TEST(ull + 1 == 0);
90 sm_snprintf(buf, sizeof(buf), "%llx", ull);
/freebsd/tools/tools/kttcp/
H A Dkttcp.c115 unsigned long long ull, usecs, bytespersec, bitspersec, xmitsize; in main() local
141 ull = get_bytes(optarg); in main()
142 if (ull > INT_MAX) in main()
145 bufsize = ull; in main()
288 ull = tvtmp.tv_sec * 1000000ULL + tvtmp.tv_usec; in main()
292 ull += tvtmp.tv_sec * 1000000ULL + tvtmp.tv_usec; in main()
295 printf(" %lld%%", ull * 100 / usecs); in main()
/freebsd/contrib/processor-trace/libipt/internal/include/
H A Dpt_mapped_section.h96 return 0ull; in pt_msec_begin()
105 return 0ull; in pt_msec_end()
114 return 0ull; in pt_msec_offset()
123 return 0ull; in pt_msec_size()
/freebsd/contrib/ofed/infiniband-diags/src/
H A Dibping.c129 return ~0ull; in ibping()
143 static uint64_t minrtt = ~0ull, maxrtt, total_rtt;
160 minrtt == ~0ull ? 0 : minrtt / 1000, in report()
161 minrtt == ~0ull ? 0 : minrtt % 1000, in report()
265 if ((rtt = ibping(&portid, flood)) == ~0ull) { in main()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILShaderFlags.h49 FlagValue |= FlagName ? getMask(DxilModuleBit) : 0ull; in uint64_t()
51 FlagValue |= FlagName ? getMask(DxilModuleBit) : 0ull; in uint64_t()
58 FeatureFlags |= FlagName ? getMask(FeatureBit) : 0ull; in getFeatureFlags()
/freebsd/contrib/bc/src/
H A Dfile.c381 unsigned long long ull; in bc_file_vprintf()
388 if (c == 'z') ull = (unsigned long long) va_arg(args, size_t); in bc_file_vprintf()
389 else ull = (unsigned long long) va_arg(args, unsigned long); in bc_file_vprintf()
392 if (!ull) bc_file_putchar(f, bc_flush_none, '0'); in bc_file_vprintf()
395 bc_file_ultoa(ull, buf); in bc_file_puts()
363 unsigned long long ull; bc_file_vprintf() local
/freebsd/tools/regression/include/tgmath/
H A Dtgmath.c170 unsigned long long ull; variable
193 RUN_TEST(FNC(ull), double) && \
211 RUN_TEST(FNC(ull), RET) && \
229 RUN_TEST(FNC(ull, ARG2), double) && \
261 RUN_TEST(FNC(1.f, ull), double) && \
295 RUN_TEST(FNC(1.f, ull, ARG3), double) && \
379 RUN_TEST(FNC(dc, ull), double complex) && \
567 PASS_REAL_FIXED_ARG_REAL_RET(nexttoward, ull) && in main()
/freebsd/contrib/ntp/sntp/
H A Dkod_management.c191 unsigned long long ull; in kod_init_kod_db() local
272 if (3 != sscanf(fbuf, "%llx %4s %254s", &ull, in kod_init_kod_db()
281 kod_db[b]->timestamp = (time_t)ull; in kod_init_kod_db()
/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dlinear_congruential_engine.h40 …bool _HasOverflow = (__a != 0ull && (__m & (__m - 1ull)) != 0ull), // a != 0, m != 0, m != 2^n
97 struct __lce_ta<__a, 0ull, __m, (unsigned long long)(-1), _LCE_Schrage> {
128 struct __lce_ta<__a, __c, 0ull, (unsigned long long)(-1), _LCE_Full> {
162 struct __lce_ta<_Ap, 0ull, _Mp, unsigned(-1), _LCE_Schrage> {
203 struct __lce_ta<_Ap, _Cp, 0ull, unsigned(-1), _LCE_Full> {
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDIERef.h115 (1ull << (k_file_index_bit_size + k_die_offset_bit_size));
117 (1ull << (k_file_index_bit_size + k_die_offset_bit_size + 1));
119 k_file_index_mask = (~0ull) >> (64 - k_file_index_bit_size); // 0x3fffff;
120 static constexpr uint64_t k_die_offset_mask = (~0ull) >>

123