Home
last modified time | relevance | path

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

12345678910>>...20

/linux/tools/perf/util/
H A Devent.c554 struct addr_location al; in perf_event__fprintf_text_poke() local
556 addr_location__init(&al); in perf_event__fprintf_text_poke()
557 al.map = maps__find(machine__kernel_maps(machine), tp->addr); in perf_event__fprintf_text_poke()
558 if (al.map && map__load(al.map) >= 0) { in perf_event__fprintf_text_poke()
559 al.addr = map__map_ip(al.map, tp->addr); in perf_event__fprintf_text_poke()
560 al.sym = map__find_symbol(al.map, al.addr); in perf_event__fprintf_text_poke()
561 if (al.sym) in perf_event__fprintf_text_poke()
562 ret += symbol__fprintf_symname_offs(al.sym, &al, fp); in perf_event__fprintf_text_poke()
564 addr_location__exit(&al); in perf_event__fprintf_text_poke()
695 struct addr_location *al) in thread__find_map() argument
[all …]
H A Ddlfilter.c28 static void al_to_d_al(struct addr_location *al, struct perf_dlfilter_al *d_al) in al_to_d_al() argument
30 struct symbol *sym = al->sym; in al_to_d_al()
33 if (al->map) { in al_to_d_al()
34 struct dso *dso = map__dso(al->map); in al_to_d_al()
53 if (al->addr < sym->end) in al_to_d_al()
54 d_al->symoff = al->addr - sym->start; in al_to_d_al()
55 else if (al->map) in al_to_d_al()
56 d_al->symoff = al->addr - map__start(al->map) - sym->start; in al_to_d_al()
67 d_al->addr = al->addr; in al_to_d_al()
75 struct addr_location *al = d->al; in get_al() local
[all …]
H A Daddr_location.c7 void addr_location__init(struct addr_location *al) in addr_location__init() argument
9 al->thread = NULL; in addr_location__init()
10 al->map = NULL; in addr_location__init()
11 al->sym = NULL; in addr_location__init()
12 al->srcline = NULL; in addr_location__init()
13 al->addr = 0; in addr_location__init()
14 al->level = 0; in addr_location__init()
15 al->filtered = 0; in addr_location__init()
16 al->cpumode = 0; in addr_location__init()
17 al->cpu = 0; in addr_location__init()
[all …]
H A Dannotate.c431 struct annotation_line *al; in annotated_source__get_line() local
433 list_for_each_entry(al, &src->source, node) { in annotated_source__get_line()
434 if (al->offset == offset) in annotated_source__get_line()
435 return al; in annotated_source__get_line()
442 struct annotation_line *al; in annotation__count_insn() local
445 al = annotated_source__get_line(notes->src, start); in annotation__count_insn()
446 if (al == NULL) in annotation__count_insn()
449 list_for_each_entry_from(al, &notes->src->source, node) { in annotation__count_insn()
450 if (al->offset == -1) in annotation__count_insn()
452 if ((u64)al->offset > end) in annotation__count_insn()
[all …]
H A Dunwind-libdw.c69 static int __report_module(struct addr_location *al, u64 ip, in __report_module() argument
76 * Some callers will use al->sym, so we can't just use the in __report_module()
79 thread__find_symbol(ui->thread, PERF_RECORD_MISC_USER, ip, al); in __report_module()
81 if (al->map) in __report_module()
82 dso = map__dso(al->map); in __report_module()
95 base = map__start(al->map); in __report_module()
97 base = map__start(al->map) - map__pgoff(al->map); in __report_module()
138 struct addr_location al; in report_module() local
141 addr_location__init(&al); in report_module()
142 res = __report_module(&al, ip, ui); in report_module()
[all …]
H A 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 - map__start(al->map) - 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, fals in symbol__fprintf_symname_offs()
51 __symbol__fprintf_symname(const struct symbol * sym,const struct addr_location * al,bool unknown_as_addr,FILE * fp) __symbol__fprintf_symname() argument
[all...]
H A 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 = map__dso(al->map); in db_ids_from_al()
184 err = db_export__dso(dbe, dso, maps__machine(thread__maps(al->thread))); 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 …]
H A Dhist.c681 const struct addr_location *al, in hists__findnew_entry() argument
755 he_stat__add_cpumode_period(&he->stat, al->cpumode, period); in hists__findnew_entry()
757 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period); in hists__findnew_entry()
793 struct addr_location *al, in __hists__add_entry() argument
803 struct namespaces *ns = thread__namespaces(al->thread); in __hists__add_entry()
805 .thread = al->thread, in __hists__add_entry()
806 .comm = thread__comm(al->thread), in __hists__add_entry()
813 .thread = al->thread, in __hists__add_entry()
814 .map = al->map, in __hists__add_entry()
815 .sym = al->sym, in __hists__add_entry()
[all …]
H A Ddata-convert-json.c132 u64 ip, struct addr_location *al) in output_sample_callchain_entry() argument
140 if (al && al->sym && al->sym->namelen) { in output_sample_callchain_entry()
141 struct dso *dso = al->map ? map__dso(al->map) : NULL; in output_sample_callchain_entry()
144 output_json_key_string(out, false, 5, "symbol", al->sym->name); in output_sample_callchain_entry()
167 struct addr_location al; in process_sample_event() local
171 addr_location__init(&al); in process_sample_event()
172 if (machine__resolve(machine, &al, sample) < 0) { in process_sample_event()
174 addr_location__exit(&al); in process_sample_event()
192 output_json_key_format(out, true, 3, "pid", "%i", thread__pid(al.thread)); in process_sample_event()
193 output_json_key_format(out, true, 3, "tid", "%i", thread__tid(al.thread)); in process_sample_event()
[all …]
/linux/tools/perf/ui/browsers/
H A Dannotate.c67 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in disasm_line__filter() local
68 return annotation_line__filter(al); in disasm_line__filter()
118 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in annotate_browser__write() local
149 annotation_line__write(al, notes, &ops, &apd); in annotate_browser__write()
152 ab->selection = al; in annotate_browser__write()
157 struct disasm_line *pos = list_prev_entry(cursor, al.node); in is_fused()
161 while (pos && pos->al.offset == -1) { in is_fused()
162 pos = list_prev_entry(pos, al.node); in is_fused()
232 from = cursor->al.idx_asm; in annotate_browser__draw_current_jump()
235 from = (u64)cursor->al.idx; in annotate_browser__draw_current_jump()
[all …]
/linux/Documentation/devicetree/bindings/arm/cpu-enable-method/
H A 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".
35 enable-method = "al,alpine-smp";
63 compatible = "al,alpine-cpu-resume";
68 compatible = "al,alpine-sysfabric-service", "syscon";
/linux/Documentation/hwmon/
H A 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/Documentation/devicetree/bindings/interrupt-controller/
H A Dal,alpine-msix.yaml4 $id: http://devicetree.org/schemas/interrupt-controller/al,alpine-msix.yaml#
14 const: al,alpine-msix
23 al,msi-base-spi:
27 al,msi-num-spis:
35 - al,msi-base-spi
36 - al,msi-num-spis
43 compatible = "al,alpine-msix";
47 al,msi-base-spi = <160>;
48 al,msi-num-spis = <160>;
/linux/arch/arm/lib/
H A 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 )
H A 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 )
H A 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/net/
H A Dcompat.c333 #define AL(x) ((x) * sizeof(u32)) macro
335 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
336 AL(3), AL(3), AL(
[all...]
/linux/include/dt-bindings/input/
H A Dlinux-event-codes.h72 * AL - Application Launch Button
196 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */
217 #define KEY_HELP 138 /* AL Integrated Help Center */
219 #define KEY_CALC 140 /* AL Calculator */
223 #define KEY_FILE 144 /* AL Local Machine Browser */
229 #define KEY_WWW 150 /* AL Internet Browser */
231 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */
252 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */
298 #define KEY_FINANCE 219 /* AL Checkbook/Finance */
430 #define KEY_INFO 0x166 /* AL OE
[all...]
/linux/Documentation/translations/sp_SP/process/
H A Dsubmitting-patches.rst11 Para una persona o empresa que desee enviar un cambio al kernel Linux,
49 pregunte al maintainer si el árbol no está listado allí.
58 subyacente que le motivó a hacer ese trabajo. Convenza al revisor de que
62 Describa el impacto relativo al usuario. Cosas que estropeen el kernel y
84 al respecto en detalles técnicos. Es importante describir el cambio en
109 Cambié xyzzy para que haga frotz", como si estuviera dando órdenes al
113 referencia al ID SHA-1 del commit. Incluya también el resumen de una línea
122 También debe asegurarse de utilizar al menos los primeros doce caracteres
129 Si las discusiones relacionadas o cualquier otra información relativa al
132 ejemplo, agregue una etiqueta con una URL que haga referencia al informe en
[all …]
/linux/Documentation/devicetree/bindings/arm/
H A 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/include/uapi/linux/
H A Dinput-event-codes.h72 * AL - Application Launch Button
196 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */
217 #define KEY_HELP 138 /* AL Integrated Help Center */
219 #define KEY_CALC 140 /* AL Calculator */
223 #define KEY_FILE 144 /* AL Local Machine Browser */
229 #define KEY_WWW 150 /* AL Internet Browser */
231 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */
252 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */
298 #define KEY_FINANCE 219 /* AL Checkbook/Finance */
430 #define KEY_INFO 0x166 /* AL OEM Features/Tips/Tutorial */
[all …]
/linux/lib/crypto/mpi/
H A 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 …]
/linux/arch/alpha/math-emu/
H A 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/drivers/nvme/target/
H A Dfabrics-cmd-auth.c407 static int nvmet_auth_challenge(struct nvmet_req *req, void *d, int al) in nvmet_auth_challenge() argument
417 if (al < data_size) { in nvmet_auth_challenge()
418 pr_debug("%s: buffer too small (al %d need %d)\n", __func__, in nvmet_auth_challenge()
419 al, data_size); in nvmet_auth_challenge()
447 static int nvmet_auth_success1(struct nvmet_req *req, void *d, int al) in nvmet_auth_success1() argument
453 WARN_ON(al < sizeof(*data)); in nvmet_auth_success1()
474 static void nvmet_auth_failure1(struct nvmet_req *req, void *d, int al) in nvmet_auth_failure1() argument
478 WARN_ON(al < sizeof(*data)); in nvmet_auth_failure1()
488 return le32_to_cpu(req->cmd->auth_receive.al); in nvmet_auth_receive_data_len()
495 u32 al; in nvmet_execute_auth_receive() local
[all …]
/linux/tools/perf/tests/
H A Dhists_link.c69 struct addr_location al; in add_hist_entries() local
74 addr_location__init(&al); in add_hist_entries()
89 if (machine__resolve(machine, &al, &sample) < 0) in add_hist_entries()
92 he = hists__add_entry(hists, &al, NULL, in add_hist_entries()
99 fake_common_samples[k].thread = thread__get(al.thread); in add_hist_entries()
101 fake_common_samples[k].map = map__get(al.map); in add_hist_entries()
102 fake_common_samples[k].sym = al.sym; in add_hist_entries()
109 if (machine__resolve(machine, &al, &sample) < 0) in add_hist_entries()
112 he = hists__add_entry(hists, &al, NULL, in add_hist_entries()
119 fake_samples[i][k].thread = thread__get(al.thread); in add_hist_entries()
[all …]

12345678910>>...20