Home
last modified time | relevance | path

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

12345678

/tools/perf/util/
Dmem-events.h53 u32 nr_entries;
55 u32 locks; /* count of 'lock' transactions */
56 u32 store; /* count of all stores in trace */
57 u32 st_uncache; /* stores to uncacheable address */
58 u32 st_noadrs; /* cacheable store with no address */
59 u32 st_l1hit; /* count of stores that hit L1D */
60 u32 st_l1miss; /* count of stores that miss L1D */
61 u32 load; /* count of all loads in trace */
62 u32 ld_excl; /* exclusive loads, rmt/lcl DRAM - snp none/miss */
63 u32 ld_shared; /* shared loads, rmt/lcl DRAM - snp hit */
[all …]
Devents_stats.h36 u32 nr_events[PERF_RECORD_HEADER_MAX];
37 u32 nr_non_filtered_samples;
38 u32 nr_lost_warned;
39 u32 nr_unknown_events;
40 u32 nr_invalid_chains;
41 u32 nr_unknown_id;
42 u32 nr_unprocessable_samples;
43 u32 nr_auxtrace_errors[PERF_AUXTRACE_ERROR_MAX];
44 u32 nr_proc_map_timeout;
47 void events_stats__inc(struct events_stats *stats, u32 type);
Denv.h18 u32 level;
19 u32 line_size;
20 u32 sets;
21 u32 ways;
28 u32 node;
72 u32 comp_ratio;
73 u32 comp_ver;
74 u32 comp_type;
75 u32 comp_level;
76 u32 comp_mmap_len;
[all …]
Dcputopo.h8 u32 core_sib;
9 u32 die_sib;
10 u32 thread_sib;
18 u32 node;
24 u32 nr;
Devent.h124 u32 pid, tid;
134 u32 cpu;
135 u32 raw_size;
139 u32 flags;
185 u32 padding;
188 u32 ip : 1,
191 u32 flags;
197 u32 padding;
198 u32 reserved;
211 u32 padding;
[all …]
Dcs-etm.h124 u32 instr_count;
125 u32 last_instr_type;
126 u32 last_instr_subtype;
127 u32 flags;
128 u32 exception_number;
149 u32 packet_count;
150 u32 head;
151 u32 tail;
152 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()
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/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_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_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_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/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/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 …]
Doslinuxtbl.c21 u32 instance;
31 osl_table_name_from_file(char *filename, char *signature, u32 *instance);
33 static acpi_status osl_add_table_to_list(char *signature, u32 instance);
58 u32 instance,
66 u32 instance,
103 u32 gbl_table_count = 0;
158 u32 table_length; in acpi_os_get_table_by_address()
220 u32 instance, in acpi_os_get_table_by_name()
277 static acpi_status osl_add_table_to_list(char *signature, u32 instance) in osl_add_table_to_list()
281 u32 next_instance = 0; in osl_add_table_to_list()
[all …]
/tools/testing/selftests/kvm/include/
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 …]
/tools/testing/selftests/kvm/include/x86_64/
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/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()
/tools/bpf/runqslower/
Drunqslower.bpf.c16 __type(key, u32);
22 __uint(key_size, sizeof(u32));
23 __uint(value_size, sizeof(u32));
28 static int trace_enqueue(u32 tgid, u32 pid) in trace_enqueue()
69 u32 pid; in handle__sched_switch()
/tools/include/linux/unaligned/
Dpacked_struct.h8 struct __una_u32 { u32 x; } __packed;
17 static inline u32 __get_unaligned_cpu32(const void *p) in __get_unaligned_cpu32()
35 static inline void __put_unaligned_cpu32(u32 val, void *p) in __put_unaligned_cpu32()

12345678