Home
last modified time | relevance | path

Searched refs:u32 (Results 1 – 25 of 211) sorted by relevance

123456789

/tools/perf/util/
Dmem-events.h58 u32 nr_entries;
60 u32 locks; /* count of 'lock' transactions */
61 u32 store; /* count of all stores in trace */
62 u32 st_uncache; /* stores to uncacheable address */
63 u32 st_noadrs; /* cacheable store with no address */
64 u32 st_l1hit; /* count of stores that hit L1D */
65 u32 st_l1miss; /* count of stores that miss L1D */
66 u32 load; /* count of all loads in trace */
67 u32 ld_excl; /* exclusive loads, rmt/lcl DRAM - snp none/miss */
68 u32 ld_shared; /* shared loads, rmt/lcl DRAM - snp hit */
[all …]
Devents_stats.h35 u32 nr_events[PERF_RECORD_HEADER_MAX];
36 u32 nr_lost_warned;
37 u32 nr_unknown_events;
38 u32 nr_invalid_chains;
39 u32 nr_unknown_id;
40 u32 nr_unprocessable_samples;
41 u32 nr_auxtrace_errors[PERF_AUXTRACE_ERROR_MAX];
42 u32 nr_proc_map_timeout;
48 u32 nr_samples;
49 u32 nr_non_filtered_samples;
[all …]
Dcputopo.h8 u32 core_sib;
9 u32 die_sib;
10 u32 thread_sib;
18 u32 node;
24 u32 nr;
34 u32 nr;
Denv.h18 u32 level;
19 u32 line_size;
20 u32 sets;
21 u32 ways;
28 u32 node;
87 u32 comp_ratio;
88 u32 comp_ver;
89 u32 comp_type;
90 u32 comp_level;
91 u32 comp_mmap_len;
[all …]
Devent.h128 u32 pid, tid;
138 u32 cpu;
139 u32 raw_size;
145 u32 flags;
194 u32 padding;
197 u32 ip : 1,
200 u32 flags;
206 u32 padding;
207 u32 reserved;
220 u32 padding;
[all …]
Dcs-etm.h154 u32 instr_count;
155 u32 last_instr_type;
156 u32 last_instr_subtype;
157 u32 flags;
158 u32 exception_number;
179 u32 packet_count;
180 u32 head;
181 u32 tail;
182 u32 instr_count;
Dvalues.h10 u32 *pid, *tid;
22 u32 pid, u32 tid,
/tools/include/linux/
Djhash.h30 #define jhash_size(n) ((u32)1<<(n))
70 static inline u32 jhash(const void *key, u32 length, u32 initval) in jhash()
72 u32 a, b, c; in jhash()
90 case 12: c += (u32)k[11]<<24; in jhash()
91 case 11: c += (u32)k[10]<<16; in jhash()
92 case 10: c += (u32)k[9]<<8; in jhash()
94 case 8: b += (u32)k[7]<<24; in jhash()
95 case 7: b += (u32)k[6]<<16; in jhash()
96 case 6: b += (u32)k[5]<<8; in jhash()
98 case 4: a += (u32)k[3]<<24; in jhash()
[all …]
Dhash.h60 static inline u32 __hash_32_generic(u32 val) in __hash_32_generic()
68 static inline u32 hash_32_generic(u32 val, unsigned int bits) in hash_32_generic()
77 static __always_inline u32 hash_64_generic(u64 val, unsigned int bits) in hash_64_generic()
84 return hash_32((u32)val ^ __hash_32(val >> 32), bits); in hash_64_generic()
88 static inline u32 hash_ptr(const void *ptr, unsigned int bits) in hash_ptr()
94 static inline u32 hash32_ptr(const void *ptr) in hash32_ptr()
101 return (u32)val; in hash32_ptr()
Dmath64.h22 static inline u64 mul_u64_u32_shr(u64 a, u32 b, unsigned int shift) in mul_u64_u32_shr()
30 static inline u64 mul_u32_u32(u32 a, u32 b) in mul_u32_u32()
32 u32 high, low; in mul_u32_u32()
40 static inline u64 mul_u32_u32(u32 a, u32 b) in mul_u32_u32()
46 static inline u64 mul_u64_u32_shr(u64 a, u32 b, unsigned int shift) in mul_u64_u32_shr()
48 u32 ah, al; in mul_u64_u32_shr()
Dbtf_ids.h7 u32 cnt;
8 u32 ids[];
74 extern u32 name[];
146 #define BTF_ID_LIST(name) static u32 name[5];
149 #define BTF_ID_LIST_GLOBAL(name) u32 name[1];
150 #define BTF_ID_LIST_SINGLE(name, prefix, typename) static u32 name[1];
184 extern u32 btf_sock_ids[];
/tools/perf/util/cs-etm-decoder/
Dcs-etm-decoder.h22 typedef u32 (*cs_etm_mem_cb_type)(struct cs_etm_queue *, u8, u64, size_t, u8 *);
25 u32 reg_ctrl;
26 u32 reg_trc_id;
27 u32 reg_ccer;
28 u32 reg_idr;
32 u32 reg_idr0;
33 u32 reg_idr1;
34 u32 reg_idr2;
35 u32 reg_idr8;
36 u32 reg_configr;
[all …]
/tools/testing/selftests/bpf/progs/
Dtest_jhash.h5 typedef unsigned int u32; typedef
7 static __always_inline u32 rol32(u32 word, unsigned int shift) in rol32()
36 u32 jhash(const void *key, u32 length, u32 initval) in jhash()
38 u32 a, b, c; in jhash()
44 a += *(volatile u32 *)(k); in jhash()
45 b += *(volatile u32 *)(k + 4); in jhash()
46 c += *(volatile u32 *)(k + 8); in jhash()
52 case 12: c += (u32)k[11]<<24; in jhash()
53 case 11: c += (u32)k[10]<<16; in jhash()
54 case 10: c += (u32)k[9]<<8; in jhash()
[all …]
Dtest_l4lb.c57 typedef unsigned int u32; typedef
59 static inline u32 jhash(const void *key, u32 length, u32 initval) in jhash()
61 u32 a, b, c; in jhash()
67 a += *(u32 *)(k); in jhash()
68 b += *(u32 *)(k + 4); in jhash()
69 c += *(u32 *)(k + 8); in jhash()
75 case 12: c += (u32)k[11]<<24; in jhash()
76 case 11: c += (u32)k[10]<<16; in jhash()
77 case 10: c += (u32)k[9]<<8; in jhash()
79 case 8: b += (u32)k[7]<<24; in jhash()
[all …]
Dtest_l4lb_noinline.c51 typedef unsigned int u32; typedef
53 static __noinline u32 jhash(const void *key, u32 length, u32 initval) in jhash()
55 u32 a, b, c; in jhash()
61 a += *(u32 *)(k); in jhash()
62 b += *(u32 *)(k + 4); in jhash()
63 c += *(u32 *)(k + 8); in jhash()
69 case 12: c += (u32)k[11]<<24; in jhash()
70 case 11: c += (u32)k[10]<<16; in jhash()
71 case 10: c += (u32)k[9]<<8; in jhash()
73 case 8: b += (u32)k[7]<<24; in jhash()
[all …]
Dtest_core_reloc_bitfields_probed.c25 uint32_t u32; member
36 int64_t u32; member
52 out->u32 = BPF_CORE_READ_BITFIELD_PROBED(in, u32); in test_core_bitfields()
Dtest_core_reloc_bitfields_direct.c25 uint32_t u32; member
36 int64_t u32; member
58 out->u32 = BPF_CORE_READ_BITFIELD(in, u32); in test_core_bitfields_direct()
/tools/power/acpi/os_specific/service_layers/
Dosunixxf.c52 acpi_status acpi_ut_read_line(char *buffer, u32 buffer_length, u32 *bytes_read);
279 u32 *new_table_length) in acpi_os_physical_table_override()
301 acpi_status acpi_os_enter_sleep(u8 sleep_state, u32 rega_value, u32 regb_value) in acpi_os_enter_sleep()
440 acpi_status acpi_os_get_line(char *buffer, u32 buffer_length, u32 *bytes_read) in acpi_os_get_line()
443 u32 end_of_line; in acpi_os_get_line()
590 acpi_os_create_semaphore(u32 max_units, in acpi_os_create_semaphore()
591 u32 initial_units, acpi_handle *out_handle) in acpi_os_create_semaphore()
602 acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout) in acpi_os_wait_semaphore()
607 acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units) in acpi_os_signal_semaphore()
627 acpi_os_create_semaphore(u32 max_units, in acpi_os_create_semaphore()
[all …]
/tools/testing/selftests/bpf/
Dxdpxceiver.h73 static u32 num_frames = DEFAULT_PKT_CNT / 4;
79 static u32 xdp_flags = XDP_FLAGS_UPDATE_IF_NOEXIST;
80 static u32 xdp_bind_flags = XDP_USE_NEED_WAKEUP | XDP_COPY;
82 static u32 rxqsize;
83 static u32 frame_headroom;
97 u32 outstanding_tx;
109 u32 len;
110 u32 payload;
114 u32 nb_pkts;
129 u32 dst_ip;
[all …]
/tools/testing/selftests/kvm/include/x86_64/
Devmcs.h16 #define u32 uint32_t macro
33 u32 revision_id;
34 u32 abort;
54 u32 host_ia32_sysenter_cs;
56 u32 pin_based_vm_exec_control;
57 u32 vm_exit_controls;
58 u32 secondary_vm_exec_control;
73 u32 guest_es_limit;
74 u32 guest_cs_limit;
75 u32 guest_ss_limit;
[all …]
Dsvm.h63 u32 intercept_cr;
64 u32 intercept_dr;
65 u32 intercept_exceptions;
73 u32 asid;
76 u32 int_ctl;
77 u32 int_vector;
78 u32 int_state;
80 u32 exit_code;
81 u32 exit_code_hi;
84 u32 exit_int_info;
[all …]
/tools/arch/x86/kcpuid/
Dkcpuid.c12 typedef unsigned int u32; typedef
45 u32 index;
46 u32 sub;
47 u32 eax, ebx, ecx, edx;
80 static u32 user_index = 0xFFFFFFFF;
81 static u32 user_sub = 0xFFFFFFFF;
84 static inline void cpuid(u32 *eax, u32 *ebx, u32 *ecx, u32 *edx) in cpuid()
95 static inline bool has_subleafs(u32 f) in has_subleafs()
135 static bool cpuid_store(struct cpuid_range *range, u32 f, int subleaf, in cpuid_store()
136 u32 a, u32 b, u32 c, u32 d) in cpuid_store()
[all …]
/tools/bpf/bpftool/skeleton/
Dprofiler.bpf.c16 __uint(key_size, sizeof(u32));
23 __uint(key_size, sizeof(u32));
30 __uint(key_size, sizeof(u32));
37 __uint(key_size, sizeof(u32));
49 u32 key = bpf_get_smp_processor_id(); in BPF_PROG()
50 u32 i; in BPF_PROG()
54 u32 flag = i; in BPF_PROG()
77 fexit_update_maps(u32 id, struct bpf_perf_event_value___local *after) in fexit_update_maps()
103 u32 cpu = bpf_get_smp_processor_id(); in BPF_PROG()
104 u32 i, zero = 0; in BPF_PROG()
/tools/power/acpi/tools/acpidump/
Dacpidump.h41 u32 to_be_done;
55 #define MIN_FADT_FOR_DSDT (ACPI_FADT_OFFSET (dsdt) + sizeof (u32))
56 #define MIN_FADT_FOR_FACS (ACPI_FADT_OFFSET (facs) + sizeof (u32))
75 u32 ap_get_table_length(struct acpi_table_header *table);
82 int ap_write_to_binary_file(struct acpi_table_header *table, u32 instance);
85 u32 *file_size);
Dapdump.c16 u32 instance, acpi_physical_address address);
40 *(u32 *)table->signature); in ap_is_valid_header()
104 u32 ap_get_table_length(struct acpi_table_header *table) in ap_get_table_length()
141 u32 instance, acpi_physical_address address) in ap_dump_table_buffer()
143 u32 table_length; in ap_dump_table_buffer()
191 u32 instance = 0; in ap_dump_all_tables()
195 u32 i; in ap_dump_all_tables()
293 u32 instance; in ap_dump_table_by_name()
366 u32 file_size = 0; in ap_dump_table_from_file()

123456789