/u-boot/arch/mips/mach-octeon/include/mach/cvmx/ |
A D | cvmx-lmcx-defs.h | 273 uint64_t dr:1; 275 uint64_t en:1; 276 uint64_t sel:1; 282 uint64_t dr:1; 284 uint64_t en:1; 285 uint64_t sel:1; 291 uint64_t en:1; 292 uint64_t sel:1; 306 uint64_t dr:1; 308 uint64_t en:1; [all …]
|
/u-boot/include/zfs/ |
A D | dsl_dataset.h | 15 uint64_t ds_dir_obj; 16 uint64_t ds_prev_snap_obj; 17 uint64_t ds_prev_snap_txg; 18 uint64_t ds_next_snap_obj; 22 uint64_t ds_creation_txg; 23 uint64_t ds_deadlist_obj; 24 uint64_t ds_used_bytes; 25 uint64_t ds_compressed_bytes; 33 uint64_t ds_fsid_guid; 34 uint64_t ds_guid; [all …]
|
A D | zfs_znode.h | 33 uint64_t zp_ctime[2]; /* 32 - last file change time */ 34 uint64_t zp_crtime[2]; /* 48 - creation time */ 36 uint64_t zp_mode; /* 72 - file mode bits */ 37 uint64_t zp_size; /* 80 - size of file */ 38 uint64_t zp_parent; /* 88 - directory parent (`..') */ 39 uint64_t zp_links; /* 96 - number of links to file */ 40 uint64_t zp_xattr; /* 104 - DMU object for xattrs */ 42 uint64_t zp_flags; /* 120 - persistent flags */ 43 uint64_t zp_uid; /* 128 - file owner */ 44 uint64_t zp_gid; /* 136 - owning group */ [all …]
|
A D | zap_impl.h | 22 uint64_t mze_value; 29 uint64_t mz_block_type; /* ZBT_MICRO */ 30 uint64_t mz_salt; 31 uint64_t mz_pad[6]; 65 ((uint64_t *)(zap)->zap_f.zap_phys) \ 73 uint64_t zap_block_type; /* ZBT_HEADER */ 74 uint64_t zap_magic; /* ZAP_MAGIC */ 77 uint64_t zt_blk; /* starting block number */ 78 uint64_t zt_numblks; /* number of blocks */ 79 uint64_t zt_shift; /* bits to index it */ [all …]
|
A D | dsl_dir.h | 15 uint64_t dd_creation_time; /* not actually used */ 16 uint64_t dd_head_dataset_obj; 17 uint64_t dd_parent_obj; 18 uint64_t dd_clone_parent_obj; 19 uint64_t dd_child_dir_zapobj; 24 uint64_t dd_used_bytes; 25 uint64_t dd_compressed_bytes; 26 uint64_t dd_uncompressed_bytes; 28 uint64_t dd_quota; 30 uint64_t dd_reserved; [all …]
|
A D | zil.h | 31 uint64_t zh_claim_txg; /* txg in which log blocks were claimed */ 32 uint64_t zh_replay_seq; /* highest replayed sequence number */ 34 uint64_t zh_claim_seq; /* highest claimed sequence number */ 35 uint64_t zh_flags; /* header flags */ 36 uint64_t zh_pad[4];
|
A D | uberblock_impl.h | 30 uint64_t ub_magic; /* UBERBLOCK_MAGIC */ 31 uint64_t ub_version; /* ZFS_VERSION */ 32 uint64_t ub_txg; /* txg of last sync */ 33 uint64_t ub_guid_sum; /* sum of all vdev guids */ 34 uint64_t ub_timestamp; /* UTC time of last sync */
|
A D | vdev_impl.h | 24 uint64_t vb_magic; /* VDEV_BOOT_MAGIC */ 25 uint64_t vb_version; /* VDEV_BOOT_VERSION */ 26 uint64_t vb_offset; /* start offset (bytes) */ 27 uint64_t vb_size; /* size (bytes) */ 28 char vb_pad[VDEV_BOOT_HEADER_SIZE - 4 * sizeof(uint64_t)];
|
/u-boot/drivers/net/ |
A D | ftmac110.h | 138 uint64_t ctrl; 143 #define FTMAC110_RXD_END ((uint64_t)1 << 63) 144 #define FTMAC110_RXD_BUFSZ(x) (((uint64_t)(x) & 0x7ff) << 32) 150 #define FTMAC110_RXD_RUNT ((uint64_t)1 << 21) /* runt pkt */ 154 #define FTMAC110_RXD_ERRMASK ((uint64_t)0x1f << 18) 155 #define FTMAC110_RXD_BCST ((uint64_t)1 << 17) /* Bcst pkt */ 156 #define FTMAC110_RXD_MCST ((uint64_t)1 << 16) /* Mcst pkt */ 157 #define FTMAC110_RXD_LEN(x) ((uint64_t)((x) & 0x7ff)) 162 #define FTMAC110_TXD_END ((uint64_t)1 << 63) /* end of ring */ 167 #define FTMAC110_TXD_LEN(x) ((uint64_t)((x) & 0x7ff) << 32) [all …]
|
/u-boot/lib/libavb/ |
A D | avb_vbmeta_image.h | 118 uint64_t auxiliary_data_block_size; 124 uint64_t hash_offset; 126 uint64_t hash_size; 129 uint64_t signature_offset; 131 uint64_t signature_size; 134 uint64_t public_key_offset; 136 uint64_t public_key_size; 143 uint64_t public_key_metadata_size; 146 uint64_t descriptors_offset; 148 uint64_t descriptors_size; [all …]
|
A D | avb_hashtree_descriptor.h | 50 uint64_t image_size; 51 uint64_t tree_offset; 52 uint64_t tree_size; 56 uint64_t fec_offset; 57 uint64_t fec_size;
|
A D | avb_util.c | 22 uint64_t avb_be64toh(uint64_t in) { in avb_be64toh() 24 uint64_t ret; in avb_be64toh() 32 ret |= ((uint64_t)d[7]); in avb_be64toh() 50 uint64_t avb_htobe64(uint64_t in) { in avb_htobe64() 52 uint64_t word; in avb_htobe64() 86 bool avb_safe_add_to(uint64_t* value, uint64_t value_to_add) { in avb_safe_add_to() 87 uint64_t original_value; in avb_safe_add_to() 102 bool avb_safe_add(uint64_t* out_result, uint64_t a, uint64_t b) { in avb_safe_add() 103 uint64_t dummy; in avb_safe_add() 160 uint64_t combined_len; in avb_str_concat() [all …]
|
A D | avb_util.h | 134 uint64_t avb_be64toh(uint64_t in) AVB_ATTR_WARN_UNUSED_RESULT; 140 uint64_t avb_htobe64(uint64_t in) AVB_ATTR_WARN_UNUSED_RESULT; 161 bool avb_safe_add_to(uint64_t* value, 162 uint64_t value_to_add) AVB_ATTR_WARN_UNUSED_RESULT; 172 bool avb_safe_add(uint64_t* out_result, 173 uint64_t a, 174 uint64_t b) AVB_ATTR_WARN_UNUSED_RESULT;
|
/u-boot/arch/x86/lib/ |
A D | physmem.c | 28 uint64_t p:1; 29 uint64_t mbz_0:2; 30 uint64_t pwt:1; 31 uint64_t pcd:1; 32 uint64_t mbz_1:4; 33 uint64_t avl:3; 34 uint64_t base:40; 35 uint64_t mbz_2:12; 41 uint64_t p:1; /* present */ 46 uint64_t a:1; /* accessed */ [all …]
|
/u-boot/drivers/net/octeontx/ |
A D | nic_reg.h | 209 uint64_t reserved_42_63:22; 213 uint64_t reserved_32_32:1; 214 uint64_t maxlen:16; /* Max frame size */ 215 uint64_t minlen:16; /* Min frame size */ 217 uint64_t minlen:16; 218 uint64_t maxlen:16; 219 uint64_t reserved_32_32:1; 220 uint64_t lenerr_en:1; 221 uint64_t rx_hdr:3; 222 uint64_t hdr_sl:5; [all …]
|
/u-boot/include/linux/ |
A D | xxhash.h | 78 uint64_t xxh64(const void *input, size_t length, uint64_t seed); 94 uint64_t seed) in xxhash() 131 uint64_t total_len; 132 uint64_t v1; 133 uint64_t v2; 134 uint64_t v3; 135 uint64_t v4; 136 uint64_t mem64[4]; 182 void xxh64_reset(struct xxh64_state *state, uint64_t seed); 207 uint64_t xxh64_digest(const struct xxh64_state *state);
|
/u-boot/arch/mips/mach-octeon/include/mach/ |
A D | octeon_ddr.h | 183 uint64_t bstrun:1; 184 uint64_t lbist:1; 186 uint64_t dpres1:1; 187 uint64_t dpres0:1; 189 uint64_t fpexp:4; 191 uint64_t fpen:1; 234 uint64_t maxvab:4; 235 uint64_t maxlfb:4; 239 uint64_t disecc:1; 257 uint64_t disecc:1; [all …]
|
/u-boot/arch/arm/lib/ |
A D | image.c | 22 uint64_t text_offset; /* Image load offset, LE */ 23 uint64_t image_size; /* Effective Image size, LE */ 24 uint64_t flags; /* Kernel flags, LE */ 25 uint64_t res2; /* reserved */ 26 uint64_t res3; /* reserved */ 27 uint64_t res4; /* reserved */ 36 uint64_t dst; in booti_setup() 37 uint64_t image_size, text_offset; in booti_setup()
|
/u-boot/lib/ |
A D | time.c | 83 uint64_t notrace get_ticks(void) in get_ticks() 114 uint64_t __weak notrace get_ticks(void) in get_ticks() 122 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l; in get_ticks() 128 static uint64_t notrace tick_to_time(uint64_t tick) in tick_to_time() 148 static uint64_t notrace tick_to_time_us(uint64_t tick) in tick_to_time_us() 157 uint64_t __weak get_timer_us(uint64_t base) in get_timer_us() 172 uint64_t usec_to_tick(unsigned long usec) in usec_to_tick() 174 uint64_t tick = usec; in usec_to_tick() 182 uint64_t tmp; in __udelay()
|
A D | xxhash.c | 126 static uint64_t xxh64_round(uint64_t acc, const uint64_t input) in xxh64_round() 134 static uint64_t xxh64_merge_round(uint64_t acc, uint64_t val) in xxh64_merge_round() 142 uint64_t xxh64(const void *input, const size_t len, const uint64_t seed) in xxh64() 146 uint64_t h64; in xxh64() 152 uint64_t v3 = seed + 0; in xxh64() 177 h64 += (uint64_t)len; in xxh64() 383 uint64_t v1 = state->v1; in xxh64_update() 384 uint64_t v2 = state->v2; in xxh64_update() 385 uint64_t v3 = state->v3; in xxh64_update() 386 uint64_t v4 = state->v4; in xxh64_update() [all …]
|
/u-boot/arch/arm/cpu/armv7/iproc-common/ |
A D | timer.c | 15 static inline uint64_t timer_global_read(void) in timer_global_read() 17 uint64_t cur_tick; in timer_global_read() 50 uint64_t count; in get_timer() 51 uint64_t ret; in get_timer() 52 uint64_t tim_clk; in get_timer() 53 uint64_t periph_clk; in get_timer() 72 uint64_t cur_tick, end_tick; in __udelay() 73 uint64_t tim_clk; in __udelay() 74 uint64_t periph_clk; in __udelay()
|
/u-boot/include/fsl-mc/ |
A D | fsl_mc_cmd.h | 11 ((uint64_t)((_width) < 64 ? ((uint64_t)1 << (_width)) - 1 : -1)) 13 static inline uint64_t mc_enc(int lsoffset, int width, uint64_t val) in mc_enc() 15 return (uint64_t)(((uint64_t)val & MAKE_UMASK64(width)) << lsoffset); in mc_enc() 17 static inline uint64_t mc_dec(uint64_t val, int lsoffset, int width) in mc_dec() 19 return (uint64_t)((val >> lsoffset) & MAKE_UMASK64(width)); in mc_dec() 23 uint64_t header; 24 uint64_t params[MC_CMD_NUM_OF_PARAMS]; 100 static inline uint64_t mc_encode_cmd_header(uint16_t cmd_id, in mc_encode_cmd_header() 104 uint64_t hdr = 0; in mc_encode_cmd_header()
|
/u-boot/fs/zfs/ |
A D | zfs_fletcher.c | 34 fletcher_2_endian(const void *buf, uint64_t size, in fletcher_2_endian() 38 const uint64_t *ip = buf; in fletcher_2_endian() 39 const uint64_t *ipend = ip + (size / sizeof(uint64_t)); in fletcher_2_endian() 40 uint64_t a0, b0, a1, b1; in fletcher_2_endian() 56 fletcher_4_endian(const void *buf, uint64_t size, zfs_endian_t endian, in fletcher_4_endian() 61 uint64_t a, b, c, d; in fletcher_4_endian()
|
/u-boot/arch/riscv/lib/ |
A D | image.c | 25 uint64_t text_offset; /* Image load offset */ 26 uint64_t image_size; /* Effective Image size */ 27 uint64_t flags; /* kernel flags (little endian) */ 30 uint64_t res2; /* reserved */ 31 uint64_t res3; /* reserved */
|
/u-boot/drivers/net/octeontx2/ |
A D | cgx_intf.h | 283 uint64_t reserved1:9; 284 uint64_t ignore:1; 285 uint64_t reserved2:54; 360 uint64_t reserved1:8; 365 uint64_t mode:42; 399 uint64_t reserved1:8; 400 uint64_t ignore:1; 401 uint64_t reserved2:55; 406 uint64_t reserved1:8; 407 uint64_t addr:48; [all …]
|