Searched refs:uint64_t (Results 276 - 300 of 5847) sorted by relevance

<<11121314151617181920>>

/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dbqueue.h33 uint64_t bq_size;
34 uint64_t bq_maxsize;
40 uint64_t bqn_size;
44 int bqueue_init(bqueue_t *, uint64_t, size_t);
46 void bqueue_enqueue(bqueue_t *, void *, uint64_t);
H A Dvdev.h61 extern int vdev_create(vdev_t *, uint64_t txg, boolean_t isreplace);
67 extern vdev_t *vdev_lookup_top(spa_t *spa, uint64_t vdev);
68 extern vdev_t *vdev_lookup_by_guid(vdev_t *vd, uint64_t guid);
71 uint64_t txg, uint64_t size);
73 uint64_t txg, uint64_t size);
75 extern boolean_t vdev_dtl_need_resilver(vdev_t *vd, uint64_t off, size_t size);
76 extern void vdev_dtl_reassess(vdev_t *vd, uint64_t txg, uint64_t scrub_tx
[all...]
H A Dzfs_vfsops.h50 uint64_t z_root; /* id of root znode */
53 uint64_t z_unlinkedobj; /* id of unlinked zapobj */
54 uint64_t z_max_blksz; /* maximum block size for files */
55 uint64_t z_fuid_obj; /* fuid table object number */
56 uint64_t z_fuid_size; /* fuid table size */
83 uint64_t z_version; /* ZPL version */
84 uint64_t z_shares_dir; /* hidden shares dir */
87 uint64_t z_userquota_obj;
88 uint64_t z_groupquota_obj;
89 uint64_t z_replay_eo
[all...]
/freebsd-12-stable/sys/netgraph/
H A Dng_checksum.h73 uint64_t csum_flags;
74 uint64_t csum_offload;
78 uint64_t received;
79 uint64_t processed;
80 uint64_t dropped;
/freebsd-12-stable/sys/powerpc/powernv/
H A Dopal.c32 extern uint64_t opal_entrypoint;
33 extern uint64_t opal_data;
34 extern uint64_t opal_msr;
56 opal_data = ((uint64_t)val[0] << 32) | val[1];
58 opal_entrypoint = ((uint64_t)val[0] << 32) | val[1];
/freebsd-12-stable/sys/x86/include/
H A Dpvclock.h35 uint64_t tsc_timestamp;
36 uint64_t system_time;
53 uint64_t pvclock_get_last_cycles(void);
54 uint64_t pvclock_tsc_freq(struct pvclock_vcpu_time_info *ti);
55 uint64_t pvclock_get_timecount(struct pvclock_vcpu_time_info *ti);
/freebsd-12-stable/stand/common/
H A Ddisk.h97 uint64_t d_offset;
108 extern int disk_open(struct disk_devdesc *, uint64_t, u_int);
111 extern int disk_read(struct disk_devdesc *, void *, uint64_t, u_int);
112 extern int disk_write(struct disk_devdesc *, void *, uint64_t, u_int);
113 extern int ptblread(void *, void *, size_t, uint64_t);
/freebsd-12-stable/stand/libsa/zfs/
H A Dlibzfs.h39 uint64_t pool_guid;
40 uint64_t root_guid;
50 int zfs_probe_dev(const char *devname, uint64_t *pool_guid);
52 uint64_t ldi_get_size(void *);
55 int zfs_belist_add(const char *name, uint64_t __unused);
/freebsd-12-stable/sys/contrib/octeon-sdk/
H A Dcvmx-log.c80 uint64_t u64;
84 uint64_t size : 8; /* Data size in 64bit words */
85 uint64_t cycle :53; /* Low bits of the cycle counter as a timestamp */
95 static uint64_t cvmx_log_buffers[CVMX_LOG_NUM_BUFFERS][CVMX_LOG_BUFFER_SIZE];
100 uint64_t *cvmx_log_buffer_write_ptr = NULL; /* The next write will occur here */
101 uint64_t *cvmx_log_buffer_end_ptr = NULL; /* Write must move to the next buffer when it equals this */
102 uint64_t *cvmx_log_buffer_head_ptr = NULL; /* Pointer to begin extracting log data from */
103 static uint64_t *cvmx_log_buffer_read_ptr = NULL; /* Location cvmx_display is reading from */
104 static uint64_t *cvmx_log_buffer_read_end_ptr = NULL; /* Location where read will need the next buffer */
105 uint64_t cvmx_log_mcd0_on_ful
[all...]
H A Dcvmx-llm.h78 uint64_t u64;
81 uint64_t mbz :30;
83 uint64_t address :32; // address<1:0> mbz, address<31:30> mbz
92 uint64_t u64;
102 uint64_t mbz1 :27;
103 uint64_t xxor : 1;
104 uint64_t mbz : 4;
105 uint64_t dat :32;
110 uint64_t mbz :27;
111 uint64_t xxo
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDataExtractor.h38 uint64_t getRelocatedValue(uint32_t Size, uint64_t *Off,
39 uint64_t *SectionIndex = nullptr,
44 uint64_t getRelocatedAddress(uint64_t *Off, uint64_t *SecIx = nullptr) const {
47 uint64_t getRelocatedAddress(Cursor &C, uint64_t *SecIx = nullptr) const {
56 Optional<uint64_t> getEncodedPointer(uint64_t *Offse
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfiling.c21 COMPILER_RT_WEAK uint64_t INSTR_PROF_RAW_VERSION_VAR = INSTR_PROF_RAW_VERSION;
23 COMPILER_RT_VISIBILITY uint64_t __llvm_profile_get_magic(void) {
24 return sizeof(void *) == sizeof(uint64_t) ? (INSTR_PROF_RAW_MAGIC_64)
46 __llvm_profile_get_num_padding_bytes(uint64_t SizeInBytes) {
47 return 7 & (sizeof(uint64_t) - SizeInBytes % sizeof(uint64_t));
50 COMPILER_RT_VISIBILITY uint64_t __llvm_profile_get_version(void) {
55 uint64_t *I = __llvm_profile_begin_counters();
56 uint64_t *E = __llvm_profile_end_counters();
58 memset(I, 0, sizeof(uint64_t) * (
[all...]
H A DInstrProfilingMerge.c23 uint64_t lprofGetLoadModuleSignature() {
25 uint64_t CounterSize = (uint64_t)(__llvm_profile_end_counters() -
27 uint64_t DataSize = __llvm_profile_get_data_size(__llvm_profile_begin_data(),
29 uint64_t NamesSize =
30 (uint64_t)(__llvm_profile_end_names() - __llvm_profile_begin_names());
31 uint64_t NumVnodes =
32 (uint64_t)(__llvm_profile_end_vnodes() - __llvm_profile_begin_vnodes());
42 uint64_t ProfileSize) {
59 Header->CountersSize != (uint64_t)(__llvm_profile_end_counter
[all...]
/freebsd-12-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dmutex_prof.h39 OP(num_ops, uint64_t, "n_lock_ops") \
40 OP(num_wait, uint64_t, "n_waiting") \
41 OP(num_spin_acq, uint64_t, "n_spin_acq") \
42 OP(num_owner_switch, uint64_t, "n_owner_switch") \
43 OP(total_wait_time, uint64_t, "total_wait_ns") \
44 OP(max_wait_time, uint64_t, "max_wait_ns")
61 COUNTER_ENUM(MUTEX_PROF_UINT64_COUNTERS, uint64_t)
77 uint64_t n_wait_times;
79 uint64_t n_spin_acquired;
92 uint64_t n_owner_switche
[all...]
/freebsd-12-stable/sys/amd64/vmm/
H A Dvmm_host.c43 static uint64_t vmm_host_efer, vmm_host_pat, vmm_host_cr0, vmm_host_cr4,
96 uint64_t
103 uint64_t
110 uint64_t
117 uint64_t
124 uint64_t
131 uint64_t
139 uint64_t
146 uint64_t
153 uint64_t
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.h22 uint32_t exc_data_count, uint64_t exc_code,
23 uint64_t exc_subcode)
40 uint64_t exc_code, uint64_t exc_sub_code, uint64_t exc_sub_sub_code,
45 uint64_t m_exc_code;
46 uint64_t m_exc_subcode;
H A DRegisterInfos_ppc64.h200 uint64_t r0;
201 uint64_t r1;
202 uint64_t r2;
203 uint64_t r3;
204 uint64_t r4;
205 uint64_t r5;
206 uint64_t r6;
207 uint64_t r7;
208 uint64_t r8;
209 uint64_t r
[all...]
/freebsd-12-stable/contrib/xz/src/xz/
H A Dutil.h41 extern uint64_t str_to_uint64(const char *name, const char *value,
42 uint64_t min, uint64_t max);
48 extern uint64_t round_up_to_mib(uint64_t n);
51 /// \brief Convert uint64_t to a string
61 extern const char *uint64_to_str(uint64_t value, uint32_t slot);
73 /// \brief Convert uint64_t to a nice human readable string
95 extern const char *uint64_to_nicestr(uint64_t value,
/freebsd-12-stable/sys/xen/
H A Dgntdev.h122 uint64_t index;
140 uint64_t index;
151 uint64_t index;
169 uint64_t index;
178 uint64_t index;
186 uint64_t vaddr;
188 uint64_t offset;
/freebsd-12-stable/lib/libc/amd64/gen/
H A Dmakecontext.c37 typedef void (*func_t)(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t,
38 uint64_t);
41 static void makectx_wrapper(ucontext_t *ucp, func_t func, uint64_t *args);
48 uint64_t *args;
49 uint64_t *sp;
69 sp = (uint64_t *)(uc
[all...]
/freebsd-12-stable/contrib/bearssl/src/hash/
H A Dghash_ctmul64.c32 static inline uint64_t
33 bmul64(uint64_t x, uint64_t y)
35 uint64_t x0, x1, x2, x3;
36 uint64_t y0, y1, y2, y3;
37 uint64_t z0, z1, z2, z3;
39 x0 = x & (uint64_t)0x1111111111111111;
40 x1 = x & (uint64_t)0x2222222222222222;
41 x2 = x & (uint64_t)0x4444444444444444;
42 x3 = x & (uint64_t)
[all...]
/freebsd-12-stable/sys/netpfil/ipfw/nat64/
H A Dnat64_translate.h35 uint64_t opcnt64; /* 6to4 of packets translated */
36 uint64_t opcnt46; /* 4to6 of packets translated */
37 uint64_t ofrags; /* number of fragments generated */
38 uint64_t ifrags; /* number of fragments received */
39 uint64_t oerrors; /* number of output errors */
40 uint64_t noroute4;
41 uint64_t noroute6;
42 uint64_t nomatch4; /* No addr/port match */
43 uint64_t noproto; /* Protocol not supported */
44 uint64_t nome
[all...]
/freebsd-12-stable/sys/compat/ndis/
H A Dpe_var.h454 extern uint64_t x86_64_call1(void *, uint64_t);
455 extern uint64_t x86_64_call2(void *, uint64_t, uint64_t);
456 extern uint64_t x86_64_call3(void *, uint64_t, uint64_t, uint64_t);
457 extern uint64_t x86_64_call
[all...]
/freebsd-12-stable/sys/dev/ioat/
H A Dioat_internal.h55 static __inline uint64_t
60 ((uint64_t)bus_space_read_4(tag, handle, offset + 4)) << 32);
65 bus_space_handle_t handle, bus_size_t offset, uint64_t val)
149 uint64_t src_addr;
150 uint64_t dest_addr;
151 uint64_t next;
152 uint64_t reserved[4];
177 uint64_t src_addr;
178 uint64_t dest_addr;
179 uint64_t nex
[all...]
/freebsd-12-stable/contrib/bearssl/src/symcipher/
H A Daes_ct64_enc.c28 add_round_key(uint64_t *q, const uint64_t *sk)
41 shift_rows(uint64_t *q)
46 uint64_t x;
49 q[i] = (x & (uint64_t)0x000000000000FFFF)
50 | ((x & (uint64_t)0x00000000FFF00000) >> 4)
51 | ((x & (uint64_t)0x00000000000F0000) << 12)
52 | ((x & (uint64_t)0x0000FF0000000000) >> 8)
53 | ((x & (uint64_t)0x000000FF00000000) << 8)
54 | ((x & (uint64_t)
[all...]

Completed in 423 milliseconds

<<11121314151617181920>>