Home
last modified time | relevance | path

Searched full:al (Results 1 – 25 of 552) sorted by relevance

12345678910>>...23

/Linux-v5.15/tools/perf/util/
Devent.c470 struct addr_location al; in perf_event__fprintf_text_poke() local
472 al.map = maps__find(&machine->kmaps, tp->addr); in perf_event__fprintf_text_poke()
473 if (al.map && map__load(al.map) >= 0) { in perf_event__fprintf_text_poke()
474 al.addr = al.map->map_ip(al.map, tp->addr); in perf_event__fprintf_text_poke()
475 al.sym = map__find_symbol(al.map, al.addr); in perf_event__fprintf_text_poke()
476 if (al.sym) in perf_event__fprintf_text_poke()
477 ret += symbol__fprintf_symname_offs(al.sym, &al, fp); in perf_event__fprintf_text_poke()
553 struct addr_location *al) in thread__find_map() argument
559 al->maps = maps; in thread__find_map()
560 al->thread = thread; in thread__find_map()
[all …]
Ddlfilter.c26 static void al_to_d_al(struct addr_location *al, struct perf_dlfilter_al *d_al) in al_to_d_al() argument
28 struct symbol *sym = al->sym; in al_to_d_al()
31 if (al->map) { in al_to_d_al()
32 struct dso *dso = al->map->dso; in al_to_d_al()
51 if (al->addr < sym->end) in al_to_d_al()
52 d_al->symoff = al->addr - sym->start; in al_to_d_al()
54 d_al->symoff = al->addr - al->map->start - sym->start; in al_to_d_al()
63 d_al->addr = al->addr; in al_to_d_al()
70 struct addr_location *al = d->al; in get_al() local
72 if (!al->thread && machine__resolve(d->machine, al, d->sample) < 0) in get_al()
[all …]
Dunwind-libdw.c43 static int __report_module(struct addr_location *al, u64 ip, in __report_module() argument
49 * Some callers will use al->sym, so we can't just use the in __report_module()
52 thread__find_symbol(ui->thread, PERF_RECORD_MISC_USER, ip, al); in __report_module()
54 if (al->map) in __report_module()
55 dso = al->map->dso; in __report_module()
65 if (s != al->map->start - al->map->pgoff) in __report_module()
71 al->map->start - al->map->pgoff, false); in __report_module()
77 al->map->start - al->map->pgoff, false); in __report_module()
92 struct addr_location al; in report_module() local
94 return __report_module(&al, ip, ui); in report_module()
[all …]
Dsymbol_fprintf.c20 const struct addr_location *al, in __symbol__fprintf_symname_offs() argument
29 if (al && print_offsets) { in __symbol__fprintf_symname_offs()
30 if (al->addr < sym->end) in __symbol__fprintf_symname_offs()
31 offset = al->addr - sym->start; in __symbol__fprintf_symname_offs()
33 offset = al->addr - al->map->start - sym->start; in __symbol__fprintf_symname_offs()
37 } else if (al && unknown_as_addr) in __symbol__fprintf_symname_offs()
38 return fprintf(fp, "[%#" PRIx64 "]", al->addr); in __symbol__fprintf_symname_offs()
44 const struct addr_location *al, in symbol__fprintf_symname_offs() argument
47 return __symbol__fprintf_symname_offs(sym, al, false, true, fp); in symbol__fprintf_symname_offs()
51 const struct addr_location *al, in __symbol__fprintf_symname() argument
[all …]
Ddb-export.c176 static int db_ids_from_al(struct db_export *dbe, struct addr_location *al, in db_ids_from_al() argument
181 if (al->map) { in db_ids_from_al()
182 struct dso *dso = al->map->dso; in db_ids_from_al()
184 err = db_export__dso(dbe, dso, al->maps->machine); in db_ids_from_al()
189 if (!al->sym) { in db_ids_from_al()
190 al->sym = symbol__new(al->addr, 0, 0, 0, "unknown"); in db_ids_from_al()
191 if (al->sym) in db_ids_from_al()
192 dso__insert_symbol(dso, al->sym); in db_ids_from_al()
195 if (al->sym) { in db_ids_from_al()
196 u64 *db_id = symbol__priv(al->sym); in db_ids_from_al()
[all …]
Dannotate.c1055 struct annotation_line *al = notes->offsets[offset]; in annotation__count_and_fill() local
1057 if (al && al->ipc == 0.0) { in annotation__count_and_fill()
1058 al->ipc = ipc; in annotation__count_and_fill()
1089 struct annotation_line *al; in annotation__compute_ipc() local
1093 al = notes->offsets[offset]; in annotation__compute_ipc()
1094 if (al && ch->num_aggr) { in annotation__compute_ipc()
1095 al->cycles = ch->cycles_aggr / ch->num_aggr; in annotation__compute_ipc()
1096 al->cycles_max = ch->cycles_max; in annotation__compute_ipc()
1097 al->cycles_min = ch->cycles_min; in annotation__compute_ipc()
1167 static void annotation_line__init(struct annotation_line *al, in annotation_line__init() argument
[all …]
Ddata-convert-json.c118 u64 ip, struct addr_location *al) in output_sample_callchain_entry() argument
126 if (al && al->sym && al->sym->namelen) { in output_sample_callchain_entry()
128 output_json_key_string(out, false, 5, "symbol", al->sym->name); in output_sample_callchain_entry()
130 if (al->map && al->map->dso) { in output_sample_callchain_entry()
131 const char *dso = al->map->dso->short_name; in output_sample_callchain_entry()
151 struct addr_location al, tal; in process_sample_event() local
154 if (machine__resolve(machine, &al, sample) < 0) { in process_sample_event()
168 output_json_key_format(out, true, 3, "pid", "%i", al.thread->pid_); in process_sample_event()
169 output_json_key_format(out, true, 3, "tid", "%i", al.thread->tid); in process_sample_event()
171 if (al.thread->cpu >= 0) in process_sample_event()
[all …]
Dhist.c593 struct addr_location *al, in hists__findnew_entry() argument
669 he_stat__add_cpumode_period(&he->stat, al->cpumode, period); in hists__findnew_entry()
671 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period); in hists__findnew_entry()
703 struct addr_location *al, in __hists__add_entry() argument
712 struct namespaces *ns = thread__namespaces(al->thread); in __hists__add_entry()
714 .thread = al->thread, in __hists__add_entry()
715 .comm = thread__comm(al->thread), in __hists__add_entry()
722 .maps = al->maps, in __hists__add_entry()
723 .map = al->map, in __hists__add_entry()
724 .sym = al->sym, in __hists__add_entry()
[all …]
/Linux-v5.15/fs/ntfs3/
Dattrlist.c281 typeof(ni->attr_list) *al = &ni->attr_list; in al_add_le()
287 old_size = al->size; in al_add_le()
294 off = PtrOffset(al->le, le); in al_add_le()
302 memcpy(ptr, al->le, off); in al_add_le()
305 kfree(al->le); in al_add_le()
306 al->le = ptr; in al_add_le()
312 al->size = new_size; in al_add_le()
323 err = attr_set_size(ni, ATTR_LIST, NULL, 0, &al->run, new_size, in al_add_le()
328 al->size = old_size; in al_add_le()
332 al->dirty = true; in al_add_le()
[all …]
/Linux-v5.15/tools/perf/ui/browsers/
Dannotate.c49 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in disasm_line__filter() local
50 return annotation_line__filter(al, notes); in disasm_line__filter()
100 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in annotate_browser__write() local
122 annotation_line__write(al, notes, &ops, ab->opts); in annotate_browser__write()
125 ab->selection = al; in annotate_browser__write()
130 struct disasm_line *pos = list_prev_entry(cursor, al.node); in is_fused()
134 while (pos && pos->al.offset == -1) { in is_fused()
135 pos = list_prev_entry(pos, al.node); in is_fused()
204 from = cursor->al.idx_asm; in annotate_browser__draw_current_jump()
207 from = (u64)cursor->al.idx; in annotate_browser__draw_current_jump()
[all …]
/Linux-v5.15/Documentation/devicetree/bindings/arm/cpu-enable-method/
Dal,alpine-smp2 Secondary CPU enable-method "al,alpine-smp" binding
5 This document describes the "al,alpine-smp" method for
7 "al,alpine-smp" enable method should be defined in the
10 Enable method name: "al,alpine-smp"
11 Compatible machines: "al,alpine"
17 "al,alpine-cpu-resume" and "al,alpine-nb-service".
26 - compatible : Should contain "al,alpine-cpu-resume".
36 - compatible : Should contain "al,alpine-sysfabric-service" and "syscon".
45 enable-method = "al,alpine-smp";
73 compatible = "al,alpine-cpu-resume";
[all …]
/Linux-v5.15/arch/x86/lib/
Dstring_32.c23 "testb %%al,%%al\n\t" in strcpy()
40 "testb %%al,%%al\n\t" in strncpy()
61 "testb %%al,%%al\n\t" in strcat()
82 "testb %%al,%%al\n\t" in strncat()
102 "testb %%al,%%al\n\t" in strcmp()
107 "orb $1,%%al\n" in strcmp()
127 "testb %%al,%%al\n\t" in strncmp()
132 "orb $1,%%al\n" in strncmp()
147 asm volatile("movb %%al,%%ah\n" in strchr()
149 "cmpb %%ah,%%al\n\t" in strchr()
[all …]
Dcmpxchg16b_emu.S14 * %al : Operation successful
19 # Emulate 'cmpxchg16b %gs:(%rsi)' except we return the result in %al not
20 # via the ZF. Caller will access %al to get result.
39 mov $1, %al
44 xor %al,%al
/Linux-v5.15/Documentation/hwmon/
Dsmsc47b397.rst60 OUT DX,AL
62 IN AL,DX
64 AL contains the data in hex, the temperature in Celsius is the decimal
67 Ex: If AL contains 0x2A, the temperature is 42 degrees C.
151 OUT DX,AL
154 MOV AL,20H
155 OUT DX,AL
158 IN AL,DX
162 OUT DX,AL
179 OUT DX,AL
[all …]
/Linux-v5.15/arch/arm/lib/
Dashrdi3.S33 #define al r1 macro
36 #define al r0 macro
45 movmi al, al, lsr r2
46 movpl al, ah, asr r3
47 ARM( orrmi al, al, ah, lsl ip )
49 THUMB( orrmi al, al, r3 )
Dlshrdi3.S33 #define al r1 macro
36 #define al r0 macro
45 movmi al, al, lsr r2
46 movpl al, ah, lsr r3
47 ARM( orrmi al, al, ah, lsl ip )
49 THUMB( orrmi al, al, r3 )
Dashldi3.S33 #define al r1 macro
36 #define al r0 macro
46 movpl ah, al, lsl r3
47 ARM( orrmi ah, ah, al, lsr ip )
48 THUMB( lsrmi r3, al, ip )
50 mov al, al, lsl r2
/Linux-v5.15/Documentation/devicetree/bindings/interrupt-controller/
Dal,alpine-msix.txt7 - compatible: should be "al,alpine-msix"
12 - al,msi-base-spi: SPI base of the MSI frame
13 - al,msi-num-spis: number of SPIs assigned to the MSI frame, relative to SPI0
18 compatible = "al,alpine-msix";
23 al,msi-base-spi = <160>;
24 al,msi-num-spis = <160>;
/Linux-v5.15/Documentation/devicetree/bindings/arm/
Damazon,al.yaml4 $id: http://devicetree.org/schemas/arm/amazon,al.yaml#
19 - const: al,alpine
24 - al,alpine-v2-evp
25 - const: al,alpine-v2
30 - amazon,al-alpine-v3-evp
31 - const: amazon,al-alpine-v3
/Linux-v5.15/net/
Dcompat.c334 #define AL(x) ((x) * sizeof(u32)) macro
336 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
337 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
338 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
339 AL(4), AL(5), AL(4)
341 #undef AL
/Linux-v5.15/include/uapi/linux/
Dinput-event-codes.h71 * AL - Application Launch Button
195 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */
216 #define KEY_HELP 138 /* AL Integrated Help Center */
218 #define KEY_CALC 140 /* AL Calculator */
222 #define KEY_FILE 144 /* AL Local Machine Browser */
228 #define KEY_WWW 150 /* AL Internet Browser */
230 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */
251 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */
281 #define KEY_DASHBOARD 204 /* AL Dashboard */
296 #define KEY_FINANCE 219 /* AL Checkbook/Finance */
[all …]
/Linux-v5.15/include/dt-bindings/input/
Dlinux-event-codes.h71 * AL - Application Launch Button
195 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */
216 #define KEY_HELP 138 /* AL Integrated Help Center */
218 #define KEY_CALC 140 /* AL Calculator */
222 #define KEY_FILE 144 /* AL Local Machine Browser */
228 #define KEY_WWW 150 /* AL Internet Browser */
230 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */
251 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */
281 #define KEY_DASHBOARD 204 /* AL Dashboard */
296 #define KEY_FINANCE 219 /* AL Checkbook/Finance */
[all …]
/Linux-v5.15/arch/alpha/math-emu/
Dsfp-util.h8 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
9 ((sl) = (al) + (bl), (sh) = (ah) + (bh) + ((sl) < (al)))
11 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
12 ((sl) = (al) - (bl), (sh) = (ah) - (bh) - ((al) < (bl)))
/Linux-v5.15/tools/perf/
Dbuiltin-annotate.c129 static void process_branch_stack(struct branch_stack *bs, struct addr_location *al, in process_branch_stack() argument
139 bi = sample__resolve_bstack(sample, al); in process_branch_stack()
156 struct addr_location *al __maybe_unused, in hist_iter__branch_callback()
180 struct addr_location *al __maybe_unused, in process_branch_callback()
204 hist__account_cycles(sample->branch_stack, al, sample, false, NULL); in process_branch_callback()
216 struct addr_location *al, struct perf_annotate *ann, in evsel__add_sample() argument
225 (al->sym == NULL || in evsel__add_sample()
226 strcmp(ann->sym_hist_filter, al->sym->name) != 0)) { in evsel__add_sample()
232 if (al->sym != NULL) { in evsel__add_sample()
233 rb_erase_cached(&al->sym->rb_node, in evsel__add_sample()
[all …]
/Linux-v5.15/lib/mpi/
Dlonglong.h114 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
121 "%r" ((USItype)(al)), \
123 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
130 "r" ((USItype)(al)), \
176 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
183 "%r" ((USItype)(al)), \
185 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
192 "r" ((USItype)(al)), \
263 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
270 "%1" ((USItype)(al)), \
[all …]

12345678910>>...23