Searched refs:int64_t (Results 326 - 350 of 923) sorted by relevance

<<11121314151617181920>>

/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_read_disk_posix.c153 int64_t dev;
154 int64_t ino;
164 int64_t dev;
234 int64_t length;
235 int64_t offset;
251 int64_t entry_remaining_bytes;
252 int64_t entry_total;
280 static void tree_push(struct tree *, const char *, int, int64_t, int64_t,
350 int64_t de
[all...]
H A Darchive_write_disk_posix.c160 int64_t atime;
161 int64_t birthtime;
162 int64_t mtime;
163 int64_t ctime;
210 int64_t user_uid;
212 int64_t skip_file_dev;
213 int64_t skip_file_ino;
216 int64_t (*lookup_gid)(void *private, const char *gname, int64_t gid);
219 int64_t (*lookup_ui
[all...]
/freebsd-10.2-release/sys/netgraph/
H A Dng_car.c59 int64_t tc; /* commited token bucket counter */
60 int64_t te; /* exceeded/peak token bucket counter */
610 int64_t delta;
619 if (h->te > ((int64_t)h->conf.ebs))
626 if (h->tc > ((int64_t)h->conf.cbs))
631 if (h->te > ((int64_t)h->conf.ebs))
637 if (h->tc > ((int64_t)h->conf.cbs))
H A Dng_patch.c453 *((int64_t *)&buf) = be64toh(*((int64_t *)&buf));
471 *((int64_t *)&buf) = - *((int64_t *)&buf);
489 *((int64_t *)&buf) = htobe64(*((int64_t *)&buf));
/freebsd-10.2-release/usr.bin/xlint/lint1/
H A Dscan.l596 uq = (int64_t)(long)ul;
600 uq = (uint64_t)xsign((int64_t)uq, typ, -1);
606 yylval.y_val->v_quad = (int64_t)uq;
618 sign(int64_t q, tspec_t t, int len)
627 msb(int64_t q, tspec_t t, int len)
638 int64_t
639 xsign(int64_t q, tspec_t t, int len)
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp224 int64_t Addend,
242 ((int64_t)Value <= INT32_MAX && (int64_t)Value >= INT32_MIN)));
259 int64_t RealOffset = GOTAddr + Addend - SymOffset - FinalAddress;
272 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
329 int64_t Addend) {
352 assert(static_cast<int64_t>(Result) >= INT32_MIN &&
353 static_cast<int64_t>(Result) <= UINT32_MAX);
364 assert(-(1LL << 27) <= static_cast<int64_t>(BranchImm) &&
365 static_cast<int64_t>(BranchIm
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp24 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) {
26 int64_t Value = CE->getValue();
195 bool isImm(int64_t MinValue, int64_t MaxValue) const {
421 int64_t MinVal, int64_t MaxVal);
774 int64_t MinVal, int64_t MaxVal) {
785 int64_t Valu
[all...]
/freebsd-10.2-release/contrib/libarchive/cpio/
H A Dcpio.c104 const char * cpio_i64toa(int64_t);
616 int64_t blocks =
1001 int64_t blocks = (archive_filter_bytes(a, 0) + 511)
1021 int64_t offset;
1077 int64_t blocks = (archive_filter_bytes(a, 0) + 511)
1212 int64_t blocks =
1363 cpio_i64toa((int64_t)id));
1391 cpio_i64toa((int64_t)id));
1405 cpio_i64toa(int64_t n0)
1411 int64_t
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueProperties.cpp387 int64_t
388 OptionValueProperties::GetPropertyAtIndexAsEnumeration (const ExecutionContext *exe_ctx, uint32_t idx, int64_t fail_value) const
401 OptionValueProperties::SetPropertyAtIndexAsEnumeration (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value)
481 int64_t
482 OptionValueProperties::GetPropertyAtIndexAsSInt64 (const ExecutionContext *exe_ctx, uint32_t idx, int64_t fail_value) const
495 OptionValueProperties::SetPropertyAtIndexAsSInt64 (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value)
/freebsd-10.2-release/contrib/llvm/lib/Target/AArch64/InstPrinter/
H A DAArch64InstPrinter.cpp31 static int64_t unpackSignedImm(int BitWidth, uint64_t Value) {
34 return static_cast<int64_t>(Value) - (1LL << BitWidth);
97 int64_t Imm12 = Imm12Op.getImm();
226 int64_t SImm = scale * ((UImm & ~Sign) - Sign);
392 int64_t Address;
433 int64_t Imm = MO.getImm();
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp342 int64_t &EarlierOff,
343 int64_t &LaterOff) {
436 LaterOff < int64_t(EarlierOff + Earlier.Size) &&
437 int64_t(LaterOff + Later.Size) >= int64_t(EarlierOff + Earlier.Size))
567 int64_t InstWriteOffset, DepWriteOffset;
/freebsd-10.2-release/contrib/tzdata/
H A DMakefile56 # Types to try, as an alternative to time_t. int64_t should be first.
57 TIME_T_ALTERNATIVES= int64_t int32_t uint32_t uint64_t
701 time_t.dir/int64_t/etc/zoneinfo \
706 int64_t) continue;; \
711 time_t.dir/int64_t/etc/zdump -V -t $$range $$zones \
712 >time_t.dir/int64_t.out && \
715 diff -u time_t.dir/int64_t.out time_t.dir/$$type.out \
/freebsd-10.2-release/contrib/ldns/
H A Dutil.c227 ldns_year_and_yday_from_days_since_epoch(int64_t days, struct tm *result)
232 while (days < 0 || days >= (int64_t) (is_leap_year(year) ? 366 : 365)) {
275 ldns_gmtime64_r(int64_t clock, struct tm *result)
295 static int64_t
299 return (int64_t) now + offset;
307 int64_t secs_since_epoch = ldns_serial_arithmitics_time(time, now);
/freebsd-10.2-release/sys/kern/
H A Dkern_ntptime.c61 typedef int64_t l_fp;
64 #define L_ADDHI(v, a) ((v) += (int64_t)(a) << 32)
76 #define L_LINT(v, a) ((v) = (int64_t)(a) << 32)
163 static int64_t time_adjtime; /* correction from adjtime(2) (usec) */
484 ntp_update_second(int64_t *adjustment, time_t *newsec)
985 time_adjtime = (int64_t)delta->tv_sec * 1000000 +
/freebsd-10.2-release/usr.sbin/makefs/ffs/
H A Dffs_balloc.c338 int64_t *bap;
340 int64_t *allocblk, allociblk[NIADDR + 1];
341 int64_t *allocib;
474 pref = ffs_blkpref_ufs2(ip, lbn, 0, (int64_t *)0);
504 bap = (int64_t *)bp->b_data;
514 pref = ffs_blkpref_ufs2(ip, lbn, 0, (int64_t *)0);
/freebsd-10.2-release/contrib/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp623 int64_t Val = CE->getValue();
624 int64_t Align = 1LL << scale;
625 int64_t Max = Align * ((1LL << width) - 1);
637 int64_t Val = CE->getValue();
638 int64_t Align = 1LL << scale;
639 int64_t Max = Align * ((1LL << (width-1)) - 1);
640 int64_t Min = -Align * (1LL << (width-1));
651 int64_t Val = 0;
677 int64_t Value = CE->getValue();
684 int64_t Valu
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DDataExtractor.h719 int64_t
800 int64_t
1062 int64_t
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp234 int64_t slide = -2 * ((int64_t) target->GetArchitecture().GetAddressByteSize());
251 int64_t offset_to_top = data.GetMaxS64(&offset, process->GetAddressByteSize());
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Utility/
H A DStringExtractor.cpp221 int64_t
222 StringExtractor::GetS64 (int64_t fail_value, int base)
229 int64_t result = ::strtoll (cstr, &end, base);
/freebsd-10.2-release/lib/libdwarf/
H A Ddwarf_loc.c32 static int64_t
35 int64_t ret = 0;
90 int64_t sval;
/freebsd-10.2-release/lib/libkvm/
H A Dkvm_minidump_amd64.c59 int64_t off;
74 hpt_insert(kvm_t *kd, vm_paddr_t pa, int64_t off)
88 static int64_t
H A Dkvm_minidump_i386.c61 int64_t off;
76 hpt_insert(kvm_t *kd, uint64_t pa, int64_t off)
90 static int64_t
/freebsd-10.2-release/contrib/libarchive/libarchive/test/
H A Dtest_sparse_basic.c254 int64_t offset;
255 int64_t total;
323 int64_t offset;
/freebsd-10.2-release/sys/dev/drm2/
H A Ddrm_os_freebsd.c41 int64_t
44 return ((int64_t)tv->tv_sec * NSEC_PER_SEC) +
49 ns_to_timeval(const int64_t nsec)
/freebsd-10.2-release/sys/dev/hyperv/utilities/
H A Dhv_util.c161 int64_t diff;
170 diff = (int64_t)host_ts.tv_sec - (int64_t)guest_ts.tv_sec;

Completed in 203 milliseconds

<<11121314151617181920>>