Home
last modified time | relevance | path

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

12345678910>>...24

/Linux-v6.6/tools/perf/util/
Devent.c511 struct addr_location al; in perf_event__fprintf_text_poke() local
513 addr_location__init(&al); in perf_event__fprintf_text_poke()
514 al.map = map__get(maps__find(machine__kernel_maps(machine), tp->addr)); in perf_event__fprintf_text_poke()
515 if (al.map && map__load(al.map) >= 0) { in perf_event__fprintf_text_poke()
516 al.addr = map__map_ip(al.map, tp->addr); in perf_event__fprintf_text_poke()
517 al.sym = map__find_symbol(al.map, al.addr); in perf_event__fprintf_text_poke()
518 if (al.sym) in perf_event__fprintf_text_poke()
519 ret += symbol__fprintf_symname_offs(al.sym, &al, fp); in perf_event__fprintf_text_poke()
521 addr_location__exit(&al); in perf_event__fprintf_text_poke()
599 struct addr_location *al) in thread__find_map() argument
[all …]
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->maps = NULL; in addr_location__init()
11 al->map = NULL; in addr_location__init()
12 al->sym = NULL; in addr_location__init()
13 al->srcline = NULL; in addr_location__init()
14 al->addr = 0; in addr_location__init()
15 al->level = 0; in addr_location__init()
16 al->filtered = 0; in addr_location__init()
17 al->cpumode = 0; in addr_location__init()
[all …]
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()
56 d_al->symoff = al->addr - map__start(al->map) - sym->start; in al_to_d_al()
65 d_al->addr = al->addr; in al_to_d_al()
73 struct addr_location *al = d->al; in get_al() local
75 if (!al->thread && machine__resolve(d->machine, al, d->sample) < 0) in get_al()
[all …]
Dunwind-libdw.c44 static int __report_module(struct addr_location *al, u64 ip, in __report_module() argument
50 * Some callers will use al->sym, so we can't just use the in __report_module()
53 thread__find_symbol(ui->thread, PERF_RECORD_MISC_USER, ip, al); in __report_module()
55 if (al->map) in __report_module()
56 dso = map__dso(al->map); in __report_module()
66 if (s != map__start(al->map) - map__pgoff(al->map)) in __report_module()
75 map__start(al->map) - map__pgoff(al->map), false); in __report_module()
82 map__start(al->map) - map__pgoff(al->map), false); in __report_module()
97 struct addr_location al; in report_module() local
100 addr_location__init(&al); 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 - 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, 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 = map__dso(al->map); in db_ids_from_al()
184 err = db_export__dso(dbe, dso, maps__machine(al->maps)); 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.c1101 struct annotation_line *al = notes->offsets[offset]; in annotation__count_and_fill() local
1103 if (al && al->ipc == 0.0) { in annotation__count_and_fill()
1104 al->ipc = ipc; in annotation__count_and_fill()
1135 struct annotation_line *al; in annotation__compute_ipc() local
1139 al = notes->offsets[offset]; in annotation__compute_ipc()
1140 if (al && ch->num_aggr) { in annotation__compute_ipc()
1141 al->cycles = ch->cycles_aggr / ch->num_aggr; in annotation__compute_ipc()
1142 al->cycles_max = ch->cycles_max; in annotation__compute_ipc()
1143 al->cycles_min = ch->cycles_min; in annotation__compute_ipc()
1213 static void annotation_line__init(struct annotation_line *al, in annotation_line__init() argument
[all …]
Ddata-convert-json.c122 u64 ip, struct addr_location *al) in output_sample_callchain_entry() argument
130 if (al && al->sym && al->sym->namelen) { in output_sample_callchain_entry()
131 struct dso *dso = al->map ? map__dso(al->map) : NULL; in output_sample_callchain_entry()
134 output_json_key_string(out, false, 5, "symbol", al->sym->name); in output_sample_callchain_entry()
157 struct addr_location al; in process_sample_event() local
161 addr_location__init(&al); in process_sample_event()
162 if (machine__resolve(machine, &al, sample) < 0) { in process_sample_event()
164 addr_location__exit(&al); in process_sample_event()
177 output_json_key_format(out, true, 3, "pid", "%i", thread__pid(al.thread)); in process_sample_event()
178 output_json_key_format(out, true, 3, "tid", "%i", thread__tid(al.thread)); in process_sample_event()
[all …]
Dhist.c593 const struct addr_location *al, in hists__findnew_entry() argument
667 he_stat__add_cpumode_period(&he->stat, al->cpumode, period); in hists__findnew_entry()
669 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period); in hists__findnew_entry()
701 struct addr_location *al, in __hists__add_entry() argument
711 struct namespaces *ns = thread__namespaces(al->thread); in __hists__add_entry()
713 .thread = al->thread, in __hists__add_entry()
714 .comm = thread__comm(al->thread), in __hists__add_entry()
721 .maps = al->maps, in __hists__add_entry()
722 .map = al->map, in __hists__add_entry()
723 .sym = al->sym, in __hists__add_entry()
[all …]
/Linux-v6.6/fs/ntfs3/
Dattrlist.c297 typeof(ni->attr_list) *al = &ni->attr_list; in al_add_le()
303 old_size = al->size; in al_add_le()
310 off = PtrOffset(al->le, le); in al_add_le()
318 memcpy(ptr, al->le, off); in al_add_le()
321 kfree(al->le); in al_add_le()
322 al->le = ptr; in al_add_le()
328 al->size = new_size; in al_add_le()
339 err = attr_set_size(ni, ATTR_LIST, NULL, 0, &al->run, new_size, in al_add_le()
344 al->size = old_size; in al_add_le()
348 al->dirty = true; in al_add_le()
[all …]
/Linux-v6.6/tools/perf/ui/browsers/
Dannotate.c44 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in disasm_line__filter() local
45 return annotation_line__filter(al, notes); in disasm_line__filter()
95 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in annotate_browser__write() local
117 annotation_line__write(al, notes, &ops, ab->opts); in annotate_browser__write()
120 ab->selection = al; in annotate_browser__write()
125 struct disasm_line *pos = list_prev_entry(cursor, al.node); in is_fused()
129 while (pos && pos->al.offset == -1) { in is_fused()
130 pos = list_prev_entry(pos, al.node); in is_fused()
199 from = cursor->al.idx_asm; in annotate_browser__draw_current_jump()
202 from = (u64)cursor->al.idx; in annotate_browser__draw_current_jump()
[all …]
/Linux-v6.6/Documentation/translations/sp_SP/process/
Dadding-syscalls.rst12 al kernel Linux, más allá de la presentación y consejos normales en
19 La primera cosa a considerar cuando se agrega una llamada al sistema es si
20 alguna alternativa es adecuada en su lugar. Aunque las llamadas al sistema
29 construido junto al kernel principal.
32 notifica al userspace que algo ha pasado, entonces retornar un nuevo
33 descriptor de archivo para el objeto relevante permite al userspace
52 llamada al sistema multiplexada que esconde mucha complejidad, así que
60 como con :manpage:`fcntl(2)`, esta llamada al sistema es un multiplexor
79 Para llamadas al sistema más simples que sólo toman un par de argumentos,
81 flag a la llamada al sistema. Para asegurarse que el userspace pueda usar
[all …]
/Linux-v6.6/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-v6.6/arch/x86/lib/
Dstring_32.c24 "testb %%al,%%al\n\t" in strcpy()
41 "testb %%al,%%al\n\t" in strncpy()
62 "testb %%al,%%al\n\t" in strcat()
83 "testb %%al,%%al\n\t" in strncat()
103 "testb %%al,%%al\n\t" in strcmp()
108 "orb $1,%%al\n" in strcmp()
128 "testb %%al,%%al\n\t" in strncmp()
133 "orb $1,%%al\n" in strncmp()
148 asm volatile("movb %%al,%%ah\n" in strchr()
150 "cmpb %%ah,%%al\n\t" in strchr()
[all …]
/Linux-v6.6/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-v6.6/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-v6.6/tools/perf/dlfilters/
Ddlfilter-test-api-v2.c110 * Return information about address (al->size must be set before
112 * when 'al' data is no longer needed.
114 __s32 (*resolve_address)(void *ctx, __u64 address, struct perf_dlfilter_al *al);
127 void (*al_cleanup)(void *ctx, struct perf_dlfilter_al *al);
246 const struct perf_dlfilter_al *al; in check_al() local
248 al = perf_dlfilter_fns.resolve_ip(ctx); in check_al()
249 if (!al) in check_al()
252 CHECK(al->sym && !strcmp("foo", al->sym)); in check_al()
253 CHECK(!al->symoff); in check_al()
275 const struct perf_dlfilter_al *al; in check_address_al() local
[all …]
Ddlfilter-test-api-v0.c101 * Return information about address (al->size must be set before
104 __s32 (*resolve_address)(void *ctx, __u64 address, struct perf_dlfilter_al *al);
231 const struct perf_dlfilter_al *al; in check_al() local
233 al = perf_dlfilter_fns.resolve_ip(ctx); in check_al()
234 if (!al) in check_al()
237 CHECK(al->sym && !strcmp("foo", al->sym)); in check_al()
238 CHECK(!al->symoff); in check_al()
260 const struct perf_dlfilter_al *al; in check_address_al() local
262 al = perf_dlfilter_fns.resolve_ip(ctx); in check_address_al()
263 if (!al) in check_address_al()
[all …]
/Linux-v6.6/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-v6.6/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-v6.6/net/
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(4), AL(4), AL(4), AL(6),
337 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
338 AL(4), AL(5), AL(4)
340 #undef AL
/Linux-v6.6/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 */
297 #define KEY_FINANCE 219 /* AL Checkbook/Finance */
429 #define KEY_INFO 0x166 /* AL OEM Features/Tips/Tutorial */
[all …]
/Linux-v6.6/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 */
297 #define KEY_FINANCE 219 /* AL Checkbook/Finance */
429 #define KEY_INFO 0x166 /* AL OEM Features/Tips/Tutorial */
[all …]

12345678910>>...24