/linux-4.1.27/arch/alpha/math-emu/ |
H A D | sfp-util.h | 7 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 8 ((sl) = (al) + (bl), (sh) = (ah) + (bh) + ((sl) < (al))) 10 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 11 ((sl) = (al) - (bl), (sh) = (ah) - (bh) - ((al) < (bl)))
|
/linux-4.1.27/tools/perf/util/ |
H A D | unwind-libdw.c | 23 static int __report_module(struct addr_location *al, u64 ip, __report_module() argument 31 MAP__FUNCTION, ip, al); __report_module() 33 if (al->map) __report_module() 34 dso = al->map->dso; __report_module() 42 dso->long_name, -1, al->map->start, __report_module() 50 struct addr_location al; report_module() local 52 return __report_module(&al, ip, ui); report_module() 59 struct addr_location al; entry() local 61 if (__report_module(&al, ip, ui)) entry() 65 e.map = al.map; entry() 66 e.sym = al.sym; entry() 69 al.sym ? al.sym->name : "''", entry() 71 al.map ? al.map->map_ip(al.map, ip) : (u64) 0); entry() 89 struct addr_location al; access_dso_mem() local 93 MAP__FUNCTION, addr, &al); access_dso_mem() 94 if (!al.map) { access_dso_mem() 99 if (!al.map->dso) access_dso_mem() 102 size = dso__data_read_addr(al.map->dso, al.map, ui->machine, access_dso_mem()
|
H A D | db-export.c | 240 static int db_ids_from_al(struct db_export *dbe, struct addr_location *al, db_ids_from_al() argument 245 if (al->map) { db_ids_from_al() 246 struct dso *dso = al->map->dso; db_ids_from_al() 248 err = db_export__dso(dbe, dso, al->machine); db_ids_from_al() 253 if (!al->sym) { db_ids_from_al() 254 al->sym = symbol__new(al->addr, 0, 0, "unknown"); db_ids_from_al() 255 if (al->sym) db_ids_from_al() 256 symbols__insert(&dso->symbols[al->map->type], db_ids_from_al() 257 al->sym); db_ids_from_al() 260 if (al->sym) { db_ids_from_al() 261 u64 *db_id = symbol__priv(al->sym); db_ids_from_al() 263 err = db_export__symbol(dbe, al->sym, dso); db_ids_from_al() 267 *offset = al->addr - al->sym->start; db_ids_from_al() 285 struct addr_location *al) db_export__sample() 287 struct thread* thread = al->thread; db_export__sample() 292 .al = al, db_export__sample() 302 err = db_export__machine(dbe, al->machine); db_export__sample() 306 main_thread = get_main_thread(al->machine, thread); db_export__sample() 308 comm = machine__thread_exec_comm(al->machine, main_thread); db_export__sample() 310 err = db_export__thread(dbe, thread, al->machine, comm); db_export__sample() 323 err = db_ids_from_al(dbe, al, &es.dso_db_id, &es.sym_db_id, &es.offset); db_export__sample() 337 err = thread_stack__process(thread, comm, sample, al, db_export__sample() 283 db_export__sample(struct db_export *dbe, union perf_event *event, struct perf_sample *sample, struct perf_evsel *evsel, struct addr_location *al) db_export__sample() argument
|
H A D | event.c | 794 struct addr_location *al) thread__find_addr_map() 800 al->machine = machine; thread__find_addr_map() 801 al->thread = thread; thread__find_addr_map() 802 al->addr = addr; thread__find_addr_map() 803 al->cpumode = cpumode; thread__find_addr_map() 804 al->filtered = 0; thread__find_addr_map() 807 al->map = NULL; thread__find_addr_map() 812 al->level = 'k'; thread__find_addr_map() 816 al->level = '.'; thread__find_addr_map() 818 al->level = 'g'; thread__find_addr_map() 822 al->level = 'u'; thread__find_addr_map() 824 al->level = 'H'; thread__find_addr_map() 825 al->map = NULL; thread__find_addr_map() 830 al->filtered |= (1 << HIST_FILTER__GUEST); thread__find_addr_map() 834 al->filtered |= (1 << HIST_FILTER__HOST); thread__find_addr_map() 839 al->map = map_groups__find(mg, type, al->addr); thread__find_addr_map() 840 if (al->map == NULL) { thread__find_addr_map() 852 machine__kernel_ip(machine, al->addr)) { thread__find_addr_map() 863 map__load(al->map, machine->symbol_filter); thread__find_addr_map() 864 al->addr = al->map->map_ip(al->map, al->addr); thread__find_addr_map() 870 struct addr_location *al) thread__find_addr_location() 872 thread__find_addr_map(thread, cpumode, type, addr, al); thread__find_addr_location() 873 if (al->map != NULL) thread__find_addr_location() 874 al->sym = map__find_symbol(al->map, al->addr, thread__find_addr_location() 877 al->sym = NULL; thread__find_addr_location() 882 struct addr_location *al, perf_event__preprocess_sample() 904 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, al); perf_event__preprocess_sample() 906 al->map ? al->map->dso->long_name : perf_event__preprocess_sample() 907 al->level == 'H' ? "[hypervisor]" : "<not found>"); perf_event__preprocess_sample() 910 al->filtered |= (1 << HIST_FILTER__THREAD); perf_event__preprocess_sample() 912 al->sym = NULL; perf_event__preprocess_sample() 913 al->cpu = sample->cpu; perf_event__preprocess_sample() 915 if (al->map) { perf_event__preprocess_sample() 916 struct dso *dso = al->map->dso; perf_event__preprocess_sample() 924 al->filtered |= (1 << HIST_FILTER__DSO); perf_event__preprocess_sample() 927 al->sym = map__find_symbol(al->map, al->addr, perf_event__preprocess_sample() 932 (!al->sym || !strlist__has_entry(symbol_conf.sym_list, perf_event__preprocess_sample() 933 al->sym->name))) { perf_event__preprocess_sample() 934 al->filtered |= (1 << HIST_FILTER__SYMBOL); perf_event__preprocess_sample() 964 struct addr_location *al) perf_event__preprocess_sample_addr() 968 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->addr, al); perf_event__preprocess_sample_addr() 969 if (!al->map) perf_event__preprocess_sample_addr() 971 sample->addr, al); perf_event__preprocess_sample_addr() 973 al->cpu = sample->cpu; perf_event__preprocess_sample_addr() 974 al->sym = NULL; perf_event__preprocess_sample_addr() 976 if (al->map) perf_event__preprocess_sample_addr() 977 al->sym = map__find_symbol(al->map, al->addr, NULL); perf_event__preprocess_sample_addr() 792 thread__find_addr_map(struct thread *thread, u8 cpumode, enum map_type type, u64 addr, struct addr_location *al) thread__find_addr_map() argument 868 thread__find_addr_location(struct thread *thread, u8 cpumode, enum map_type type, u64 addr, struct addr_location *al) thread__find_addr_location() argument 880 perf_event__preprocess_sample(const union perf_event *event, struct machine *machine, struct addr_location *al, struct perf_sample *sample) perf_event__preprocess_sample() argument 961 perf_event__preprocess_sample_addr(union perf_event *event, struct perf_sample *sample, struct thread *thread, struct addr_location *al) perf_event__preprocess_sample_addr() argument
|
H A D | hist.c | 370 struct addr_location *al, add_hist_entry() 436 he_stat__add_cpumode_period(&he->stat, al->cpumode, period); add_hist_entry() 438 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period); add_hist_entry() 443 struct addr_location *al, __hists__add_entry() 451 .thread = al->thread, __hists__add_entry() 452 .comm = thread__comm(al->thread), __hists__add_entry() 454 .map = al->map, __hists__add_entry() 455 .sym = al->sym, __hists__add_entry() 457 .cpu = al->cpu, __hists__add_entry() 458 .cpumode = al->cpumode, __hists__add_entry() 459 .ip = al->addr, __hists__add_entry() 460 .level = al->level, __hists__add_entry() 467 .filtered = symbol__parent_filter(sym_parent) | al->filtered, __hists__add_entry() 474 return add_hist_entry(hists, &entry, al, sample_self); __hists__add_entry() 479 struct addr_location *al __maybe_unused) iter_next_nop_entry() 486 struct addr_location *al __maybe_unused) iter_add_next_nop_entry() 492 iter_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_prepare_mem_entry() argument 497 mi = sample__resolve_mem(sample, al); iter_prepare_mem_entry() 506 iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_add_single_mem_entry() argument 527 he = __hists__add_entry(hists, al, iter->parent, NULL, mi, iter_add_single_mem_entry() 538 struct addr_location *al __maybe_unused) iter_finish_mem_entry() 565 iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_prepare_branch_entry() argument 570 bi = sample__resolve_bstack(sample, al); iter_prepare_branch_entry() 583 struct addr_location *al __maybe_unused) iter_add_single_branch_entry() 592 iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_next_branch_entry() argument 603 al->map = bi[i].to.map; iter_next_branch_entry() 604 al->sym = bi[i].to.sym; iter_next_branch_entry() 605 al->addr = bi[i].to.addr; iter_next_branch_entry() 610 iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_add_next_branch_entry() argument 628 he = __hists__add_entry(hists, al, iter->parent, &bi[i], NULL, iter_add_next_branch_entry() 643 struct addr_location *al __maybe_unused) iter_finish_branch_entry() 653 struct addr_location *al __maybe_unused) iter_prepare_normal_entry() 659 iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_add_single_normal_entry() argument 665 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL, iter_add_single_normal_entry() 677 struct addr_location *al __maybe_unused) iter_finish_normal_entry() 695 struct addr_location *al __maybe_unused) iter_prepare_cumulative_entry() 718 struct addr_location *al) iter_add_single_cumulative_entry() 727 he = __hists__add_entry(hists, al, iter->parent, NULL, NULL, iter_add_single_cumulative_entry() 751 struct addr_location *al) iter_next_cumulative_entry() 759 return fill_callchain_info(al, node, iter->hide_unresolved); iter_next_cumulative_entry() 764 struct addr_location *al) iter_add_next_cumulative_entry() 771 .cpu = al->cpu, iter_add_next_cumulative_entry() 772 .thread = al->thread, iter_add_next_cumulative_entry() 773 .comm = thread__comm(al->thread), iter_add_next_cumulative_entry() 774 .ip = al->addr, iter_add_next_cumulative_entry() 776 .map = al->map, iter_add_next_cumulative_entry() 777 .sym = al->sym, iter_add_next_cumulative_entry() 800 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL, iter_add_next_cumulative_entry() 816 struct addr_location *al __maybe_unused) iter_finish_cumulative_entry() 856 int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al, hist_entry_iter__add() argument 862 err = sample__resolve_callchain(sample, &iter->parent, evsel, al, hist_entry_iter__add() 870 err = iter->ops->prepare_entry(iter, al); hist_entry_iter__add() 874 err = iter->ops->add_single_entry(iter, al); hist_entry_iter__add() 879 err = iter->add_entry_cb(iter, al, true, arg); hist_entry_iter__add() 884 while (iter->ops->next_entry(iter, al)) { hist_entry_iter__add() 885 err = iter->ops->add_next_entry(iter, al); hist_entry_iter__add() 890 err = iter->add_entry_cb(iter, al, false, arg); hist_entry_iter__add() 897 err2 = iter->ops->finish_entry(iter, al); hist_entry_iter__add() 368 add_hist_entry(struct hists *hists, struct hist_entry *entry, struct addr_location *al, bool sample_self) add_hist_entry() argument 442 __hists__add_entry(struct hists *hists, struct addr_location *al, struct symbol *sym_parent, struct branch_info *bi, struct mem_info *mi, u64 period, u64 weight, u64 transaction, bool sample_self) __hists__add_entry() argument 717 iter_add_single_cumulative_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_add_single_cumulative_entry() argument 750 iter_next_cumulative_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_next_cumulative_entry() argument 763 iter_add_next_cumulative_entry(struct hist_entry_iter *iter, struct addr_location *al) iter_add_next_cumulative_entry() argument
|
H A D | unwind-libunwind.c | 316 struct addr_location al; find_map() local 319 MAP__FUNCTION, ip, &al); find_map() 320 return al.map; find_map() 409 struct addr_location al; access_dso_mem() local 413 MAP__FUNCTION, addr, &al); access_dso_mem() 414 if (!al.map) { access_dso_mem() 419 if (!al.map->dso) access_dso_mem() 422 size = dso__data_read_addr(al.map->dso, al.map, ui->machine, access_dso_mem() 518 struct addr_location al; entry() local 521 MAP__FUNCTION, ip, &al); entry() 524 e.map = al.map; entry() 525 e.sym = al.sym; entry() 528 al.sym ? al.sym->name : "''", entry() 530 al.map ? al.map->map_ip(al.map, ip) : (u64) 0); entry()
|
H A D | callchain.c | 761 struct perf_evsel *evsel, struct addr_location *al, sample__resolve_callchain() 769 return thread__resolve_callchain(al->thread, evsel, sample, sample__resolve_callchain() 770 parent, al, max_stack); sample__resolve_callchain() 782 int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node, fill_callchain_info() argument 785 al->map = node->map; fill_callchain_info() 786 al->sym = node->sym; fill_callchain_info() 788 al->addr = node->map->map_ip(node->map, node->ip); fill_callchain_info() 790 al->addr = node->ip; fill_callchain_info() 792 if (al->sym == NULL) { fill_callchain_info() 795 if (al->map == NULL) fill_callchain_info() 799 if (al->map->groups == &al->machine->kmaps) { fill_callchain_info() 800 if (machine__is_host(al->machine)) { fill_callchain_info() 801 al->cpumode = PERF_RECORD_MISC_KERNEL; fill_callchain_info() 802 al->level = 'k'; fill_callchain_info() 804 al->cpumode = PERF_RECORD_MISC_GUEST_KERNEL; fill_callchain_info() 805 al->level = 'g'; fill_callchain_info() 808 if (machine__is_host(al->machine)) { fill_callchain_info() 809 al->cpumode = PERF_RECORD_MISC_USER; fill_callchain_info() 810 al->level = '.'; fill_callchain_info() 812 al->cpumode = PERF_RECORD_MISC_GUEST_USER; fill_callchain_info() 813 al->level = 'u'; fill_callchain_info() 815 al->cpumode = PERF_RECORD_MISC_HYPERVISOR; fill_callchain_info() 816 al->level = 'H'; fill_callchain_info() 760 sample__resolve_callchain(struct perf_sample *sample, struct symbol **parent, struct perf_evsel *evsel, struct addr_location *al, int max_stack) sample__resolve_callchain() argument
|
H A D | thread.h | 77 struct addr_location *al); 81 struct addr_location *al); 85 struct addr_location *al);
|
H A D | machine.c | 1353 struct addr_location al; ip__resolve_ams() local 1355 memset(&al, 0, sizeof(al)); ip__resolve_ams() 1363 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al); ip__resolve_ams() 1366 ams->al_addr = al.addr; ip__resolve_ams() 1367 ams->sym = al.sym; ip__resolve_ams() 1368 ams->map = al.map; ip__resolve_ams() 1374 struct addr_location al; ip__resolve_data() local 1376 memset(&al, 0, sizeof(al)); ip__resolve_data() 1378 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al); ip__resolve_data() 1379 if (al.map == NULL) { ip__resolve_data() 1385 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al); ip__resolve_data() 1389 ams->al_addr = al.addr; ip__resolve_data() 1390 ams->sym = al.sym; ip__resolve_data() 1391 ams->map = al.map; ip__resolve_data() 1395 struct addr_location *al) sample__resolve_mem() 1402 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip); sample__resolve_mem() 1403 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr); sample__resolve_mem() 1415 struct addr_location al; add_callchain_ip() local 1417 al.filtered = 0; add_callchain_ip() 1418 al.sym = NULL; add_callchain_ip() 1421 ip, &al); add_callchain_ip() 1447 ip, &al); add_callchain_ip() 1450 if (al.sym != NULL) { add_callchain_ip() 1452 symbol__match_regex(al.sym, &parent_regex)) add_callchain_ip() 1453 *parent = al.sym; add_callchain_ip() 1455 symbol__match_regex(al.sym, &ignore_callees_regex)) { add_callchain_ip() 1458 *root_al = al; add_callchain_ip() 1463 return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym); add_callchain_ip() 1467 struct addr_location *al) sample__resolve_bstack() 1477 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to); sample__resolve_bstack() 1478 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from); sample__resolve_bstack() 1394 sample__resolve_mem(struct perf_sample *sample, struct addr_location *al) sample__resolve_mem() argument 1466 sample__resolve_bstack(struct perf_sample *sample, struct addr_location *al) sample__resolve_bstack() argument
|
H A D | thread.c | 217 struct addr_location *al) thread__find_cpumode_addr_location() 228 thread__find_addr_location(thread, cpumodes[i], type, addr, al); thread__find_cpumode_addr_location() 229 if (al->map) thread__find_cpumode_addr_location() 215 thread__find_cpumode_addr_location(struct thread *thread, enum map_type type, u64 addr, struct addr_location *al) thread__find_cpumode_addr_location() argument
|
H A D | db-export.h | 37 struct addr_location *al; member in struct:export_sample 99 struct addr_location *al);
|
H A D | callchain.h | 169 struct perf_evsel *evsel, struct addr_location *al, 172 int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
|
H A D | build-id.c | 30 struct addr_location al; build_id__mark_dso_hit() local 41 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al); build_id__mark_dso_hit() 43 if (al.map != NULL) build_id__mark_dso_hit() 44 al.map->dso->hit = 1; build_id__mark_dso_hit()
|
H A D | trace-event.h | 75 struct addr_location *al);
|
H A D | hist.h | 98 struct addr_location *al, bool single, void *arg); 107 struct addr_location *al, 113 int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
|
H A D | session.h | 99 struct addr_location *al,
|
H A D | trace-event-scripting.c | 46 struct addr_location *al __maybe_unused) process_event_unsupported()
|
H A D | session.c | 1519 struct addr_location *al, perf_evsel__print_ip() 1534 if (thread__resolve_callchain(al->thread, evsel, perf_evsel__print_ip() 1544 node_al = *al; perf_evsel__print_ip() 1591 if (al->sym && al->sym->ignore) perf_evsel__print_ip() 1600 symbol__fprintf_symname_offs(al->sym, al, perf_evsel__print_ip() 1603 symbol__fprintf_symname(al->sym, stdout); perf_evsel__print_ip() 1608 map__fprintf_dsoname(al->map, stdout); perf_evsel__print_ip() 1613 map__fprintf_srcline(al->map, al->addr, "\n ", stdout); perf_evsel__print_ip() 1518 perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample, struct addr_location *al, unsigned int print_opts, unsigned int stack_depth) perf_evsel__print_ip() argument
|
H A D | event.h | 358 struct addr_location *al, 368 struct addr_location *al);
|
H A D | machine.h | 126 struct addr_location *al); 128 struct addr_location *al);
|
H A D | symbol.c | 261 const struct addr_location *al, FILE *fp) symbol__fprintf_symname_offs() 268 if (al) { symbol__fprintf_symname_offs() 269 if (al->addr < sym->end) symbol__fprintf_symname_offs() 270 offset = al->addr - sym->start; symbol__fprintf_symname_offs() 272 offset = al->addr - al->map->start - sym->start; symbol__fprintf_symname_offs() 260 symbol__fprintf_symname_offs(const struct symbol *sym, const struct addr_location *al, FILE *fp) symbol__fprintf_symname_offs() argument
|
H A D | symbol.h | 262 const struct addr_location *al, FILE *fp);
|
/linux-4.1.27/arch/sh/kernel/ |
H A D | process_64.c | 40 unsigned long long ah, al, bh, bl, ch, cl; show_regs() local 46 al = (regs->pc) & 0xffffffff; show_regs() 52 ah, al, bh, bl, ch, cl); show_regs() 55 al = (regs->sr) & 0xffffffff; show_regs() 65 ah, al, bh, bl, ch, cl); show_regs() 68 al = (regs->regs[0]) & 0xffffffff; show_regs() 74 ah, al, bh, bl, ch, cl); show_regs() 77 al = (regs->regs[3]) & 0xffffffff; show_regs() 83 ah, al, bh, bl, ch, cl); show_regs() 86 al = (regs->regs[6]) & 0xffffffff; show_regs() 92 ah, al, bh, bl, ch, cl); show_regs() 95 al = (regs->regs[9]) & 0xffffffff; show_regs() 101 ah, al, bh, bl, ch, cl); show_regs() 104 al = (regs->regs[12]) & 0xffffffff; show_regs() 110 ah, al, bh, bl, ch, cl); show_regs() 113 al = (regs->regs[16]) & 0xffffffff; show_regs() 119 ah, al, bh, bl, ch, cl); show_regs() 122 al = (regs->regs[20]) & 0xffffffff; show_regs() 128 ah, al, bh, bl, ch, cl); show_regs() 131 al = (regs->regs[23]) & 0xffffffff; show_regs() 137 ah, al, bh, bl, ch, cl); show_regs() 140 al = (regs->regs[26]) & 0xffffffff; show_regs() 146 ah, al, bh, bl, ch, cl); show_regs() 149 al = (regs->regs[29]) & 0xffffffff; show_regs() 155 ah, al, bh, bl, ch, cl); show_regs() 158 al = (regs->regs[32]) & 0xffffffff; show_regs() 164 ah, al, bh, bl, ch, cl); show_regs() 167 al = (regs->regs[35]) & 0xffffffff; show_regs() 173 ah, al, bh, bl, ch, cl); show_regs() 176 al = (regs->regs[38]) & 0xffffffff; show_regs() 182 ah, al, bh, bl, ch, cl); show_regs() 185 al = (regs->regs[41]) & 0xffffffff; show_regs() 191 ah, al, bh, bl, ch, cl); show_regs() 194 al = (regs->regs[44]) & 0xffffffff; show_regs() 200 ah, al, bh, bl, ch, cl); show_regs() 203 al = (regs->regs[47]) & 0xffffffff; show_regs() 209 ah, al, bh, bl, ch, cl); show_regs() 212 al = (regs->regs[50]) & 0xffffffff; show_regs() 218 ah, al, bh, bl, ch, cl); show_regs() 221 al = (regs->regs[53]) & 0xffffffff; show_regs() 227 ah, al, bh, bl, ch, cl); show_regs() 230 al = (regs->regs[56]) & 0xffffffff; show_regs() 236 ah, al, bh, bl, ch, cl); show_regs() 239 al = (regs->regs[59]) & 0xffffffff; show_regs() 245 ah, al, bh, bl, ch, cl); show_regs() 248 al = (regs->regs[62]) & 0xffffffff; show_regs() 254 ah, al, bh, bl, ch, cl); show_regs() 257 al = (regs->tregs[2]) & 0xffffffff; show_regs() 263 ah, al, bh, bl, ch, cl); show_regs() 266 al = (regs->tregs[5]) & 0xffffffff; show_regs() 272 ah, al, bh, bl, ch, cl); show_regs()
|
/linux-4.1.27/arch/x86/lib/ |
H A D | string_32.c | 22 "testb %%al,%%al\n\t" strcpy() 39 "testb %%al,%%al\n\t" strncpy() 60 "testb %%al,%%al\n\t" strcat() 81 "testb %%al,%%al\n\t" strncat() 101 "testb %%al,%%al\n\t" strcmp() 106 "orb $1,%%al\n" strcmp() 126 "testb %%al,%%al\n\t" strncmp() 131 "orb $1,%%al\n" strncmp() 146 asm volatile("movb %%al,%%ah\n" strchr() 148 "cmpb %%ah,%%al\n\t" strchr() 150 "testb %%al,%%al\n\t" strchr()
|
H A D | cmpxchg16b_emu.S | 21 * %al : Operation successful 27 # Emulate 'cmpxchg16b %gs:(%rsi)' except we return the result in %al not 28 # via the ZF. Caller will access %al to get result. 48 mov $1, %al 54 xor %al,%al
|
H A D | copy_user_nocache_64.S | 29 100: movb (%rsi),%al 30 101: movb %al,(%rdi) 93 21: movb (%rsi),%al 94 22: movb %al,(%rdi)
|
H A D | copy_user_64.S | 27 100: movb (%rsi),%al 28 101: movb %al,(%rdi) 149 21: movb (%rsi),%al 150 22: movb %al,(%rdi)
|
H A D | putuser.S | 45 1: movb %al,(%_ASM_CX)
|
/linux-4.1.27/arch/arm/lib/ |
H A D | ashrdi3.S | 33 #define al r1 define 36 #define al r0 define 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 D | lshrdi3.S | 33 #define al r1 define 36 #define al r0 define 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 D | ashldi3.S | 33 #define al r1 define 36 #define al r0 define 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
|
H A D | memcpy.S | 32 .macro ldr1b ptr reg cond=al abort 44 .macro str1b ptr reg cond=al abort
|
H A D | copy_from_user.S | 60 .macro ldr1b ptr reg cond=al abort 72 .macro str1b ptr reg cond=al abort
|
H A D | copy_to_user.S | 56 .macro ldr1b ptr reg cond=al abort 75 .macro str1b ptr reg cond=al abort
|
/linux-4.1.27/arch/s390/include/asm/ |
H A D | sfp-util.h | 6 #define add_ssaaaa(sh, sl, ah, al, bh, bl) ({ \ 8 unsigned int __sl = (al); \ 20 #define sub_ddmmss(sh, sl, ah, al, bh, bl) ({ \ 22 unsigned int __sl = (al); \
|
/linux-4.1.27/arch/sh/math-emu/ |
H A D | sfp-util.h | 5 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 8 __x = (al) + (bl); \ 9 (sh) = (ah) + (bh) + (__x < (al)); \ 13 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 16 __x = (al) - (bl); \ 17 (sh) = (ah) - (bh) - (__x > (al)); \
|
/linux-4.1.27/fs/hpfs/ |
H A D | dentry.c | 40 unsigned al = len; hpfs_compare_dentry() local 43 hpfs_adjust_length(str, &al); hpfs_compare_dentry() 53 if (hpfs_compare_names(parent->d_sb, str, al, name->name, bl, 0)) hpfs_compare_dentry()
|
/linux-4.1.27/lib/mpi/ |
H A D | longlong.h | 114 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 121 "%r" ((USItype)(al)), \ 123 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 130 "r" ((USItype)(al)), \ 176 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 183 "%r" ((USItype)(al)), \ 185 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 192 "r" ((USItype)(al)), \ 263 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 270 "%1" ((USItype)(al)), \ 272 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 279 "1" ((USItype)(al)), \ 300 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 307 "%rM" ((USItype)(al)), \ 309 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 316 "rM" ((USItype)(al)), \ 397 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 404 "%1" ((USItype)(al)), \ 406 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 413 "1" ((USItype)(al)), \ 450 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 458 "%dI" ((USItype)(al)), \ 460 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 468 "dI" ((USItype)(al)), \ 515 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 522 "%1" ((USItype)(al)), \ 524 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 531 "1" ((USItype)(al)), \ 594 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 601 "%rJ" ((USItype)(al)), \ 603 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 610 "rJ" ((USItype)(al)), \ 739 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 746 "%r" ((USItype)(al)), \ 753 "%r" ((USItype)(al)), \ 761 "%r" ((USItype)(al)), \ 764 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 771 "rI" ((USItype)(al)), \ 778 "rI" ((USItype)(al)), \ 785 "rI" ((USItype)(al)), \ 792 "rI" ((USItype)(al)), \ 800 "rI" ((USItype)(al)), \ 857 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 864 "%1" ((USItype)(al)), \ 866 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 873 "1" ((USItype)(al)), \ 892 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 899 "%1" ((USItype)(al)), \ 901 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 908 "1" ((USItype)(al)), \ 968 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 975 "%rJ" ((USItype)(al)), \ 978 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 985 "rJ" ((USItype)(al)), \ 1163 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 1170 "%1" ((USItype)(al)), \ 1172 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 1179 "1" ((USItype)(al)), \ 1211 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 1217 "%1" ((unsigned int)(al)), \ 1219 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 1225 "1" ((unsigned int)(al)), \ 1268 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 1271 __x = (al) + (bl); \ 1272 (sh) = (ah) + (bh) + (__x < (al)); \ 1278 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 1281 __x = (al) - (bl); \ 1282 (sh) = (ah) - (bh) - (__x > (al)); \
|
/linux-4.1.27/arch/x86/platform/olpc/ |
H A D | xo1-wakeup.S | 8 movb $0x34, %al 9 outb %al, $0x70 10 movb $\value, %al 11 outb %al, $0x71
|
H A D | olpc-xo1-pm.c | 88 __asm__("movb $0x34, %al\n\t" xo1_do_sleep() 89 "outb %al, $0x70\n\t" xo1_do_sleep() 90 "movb $0x30, %al\n\t" xo1_do_sleep() 91 "outb %al, $0x71\n\t"); xo1_do_sleep()
|
/linux-4.1.27/arch/sparc/math-emu/ |
H A D | sfp-util_64.h | 14 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 24 "r" ((UDItype)(al)), \ 28 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 38 "r" ((UDItype)(al)), \
|
H A D | sfp-util_32.h | 6 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 13 "%rJ" ((USItype)(al)), \ 16 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 23 "rJ" ((USItype)(al)), \
|
/linux-4.1.27/arch/x86/boot/ |
H A D | apm.c | 40 ireg.al = 0x04; query_apm_bios() 44 ireg.al = 0x03; query_apm_bios() 61 ireg.al = 0x00; query_apm_bios() 66 ireg.al = 0x04; query_apm_bios()
|
H A D | bioscall.S | 22 cmpb %al, 3f 24 movb %al, 3f
|
H A D | tty.c | 48 ireg.al = ch; bios_putchar() 96 return oreg.al; getchar()
|
H A D | video-bios.c | 37 ireg.al = mode; /* AH=0x00 Set Video Mode */ set_bios_mode() 46 new_mode = oreg.al & 0x7f; set_bios_mode()
|
H A D | video-vga.c | 51 mode = oreg.al; vga_set_basic_mode() 267 if (oreg.al == 0x1a) { vga_probe()
|
H A D | boot.h | 79 asm volatile("outb %%al,%0" : : "dN" (DELAY_PORT)); io_delay() 267 u8 al, ah, eax2, eax3; member in struct:biosregs::__anon2961::__anon2964
|
H A D | main.c | 72 boot_params.kbd_status = oreg.al; keyboard_init()
|
H A D | header.S | 67 andb %al, %al
|
H A D | video.c | 51 boot_params.screen_info.orig_video_mode = oreg.al & 0x7f; store_video_mode()
|
/linux-4.1.27/arch/s390/kernel/vdso32/ |
H A D | gettimeofday.S | 24 0: al %r5,13f-0b(%r5) /* get &_vdso_data */ 46 4: al %r0,0(%r15) 47 al %r0,__VDSO_XTIME_NSEC(%r5) /* + xtime */ 48 al %r1,__VDSO_XTIME_NSEC+4(%r5) 71 al %r0,12f-6b(%r5)
|
H A D | clock_gettime.S | 24 0: al %r5,21f-0b(%r5) /* get &_vdso_data */ 52 al %r0,__VDSO_WTOM_NSEC(%r5) 53 al %r1,__VDSO_WTOM_NSEC+4(%r5) 115 al %r0,__VDSO_XTIME_NSEC(%r5) /* + tk->xtime_nsec */ 116 al %r1,__VDSO_XTIME_NSEC+4(%r5)
|
/linux-4.1.27/tools/perf/tests/ |
H A D | code-reading.c | 138 struct addr_location al; read_object_code() local 147 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, addr, &al); read_object_code() 148 if (!al.map || !al.map->dso) { read_object_code() 153 pr_debug("File is: %s\n", al.map->dso->long_name); read_object_code() 155 if (al.map->dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS && read_object_code() 156 !dso__is_kcore(al.map->dso)) { read_object_code() 161 pr_debug("On file address is: %#"PRIx64"\n", al.addr); read_object_code() 167 if (addr + len > al.map->end) read_object_code() 168 len = al.map->end - addr; read_object_code() 171 ret_len = dso__data_read_offset(al.map->dso, thread->mg->machine, read_object_code() 172 al.addr, buf1, len); read_object_code() 182 if (map__load(al.map, NULL)) read_object_code() 186 if (dso__is_kcore(al.map->dso)) { read_object_code() 190 if (state->done[d] == al.map->start) { read_object_code() 200 state->done[state->done_cnt++] = al.map->start; read_object_code() 204 objdump_addr = map__rip_2objdump(al.map, al.addr); read_object_code() 205 ret = read_via_objdump(al.map->dso->long_name, objdump_addr, buf2, len); read_object_code() 216 } else if (dso__is_kcore(al.map->dso)) { read_object_code()
|
H A D | hists_link.c | 65 struct addr_location al; add_hist_entries() local 88 if (perf_event__preprocess_sample(&event, machine, &al, evlist__for_each() 92 he = __hists__add_entry(hists, &al, NULL, evlist__for_each() 97 fake_common_samples[k].thread = al.thread; evlist__for_each() 98 fake_common_samples[k].map = al.map; evlist__for_each() 99 fake_common_samples[k].sym = al.sym; evlist__for_each() 112 if (perf_event__preprocess_sample(&event, machine, &al, evlist__for_each() 116 he = __hists__add_entry(hists, &al, NULL, evlist__for_each() 121 fake_samples[i][k].thread = al.thread; evlist__for_each() 122 fake_samples[i][k].map = al.map; evlist__for_each() 123 fake_samples[i][k].sym = al.sym; evlist__for_each()
|
H A D | mmap-thread-lookup.c | 183 struct addr_location al; mmap_events() local 192 (unsigned long) (td->map + 1), &al); mmap_events() 194 if (!al.map) { mmap_events() 200 pr_debug("map %p, addr %" PRIx64 "\n", al.map, al.map->start); mmap_events()
|
H A D | hists_filter.c | 49 struct addr_location al; add_hist_entries() local 80 if (perf_event__preprocess_sample(&event, machine, &al, evlist__for_each() 84 if (hist_entry_iter__add(&iter, &al, evsel, &sample, evlist__for_each() 88 fake_samples[i].thread = al.thread; evlist__for_each() 89 fake_samples[i].map = al.map; evlist__for_each() 90 fake_samples[i].sym = al.sym; evlist__for_each()
|
H A D | hists_cumulate.c | 78 struct addr_location al; add_hist_entries() local 103 if (perf_event__preprocess_sample(&event, machine, &al, add_hist_entries() 107 if (hist_entry_iter__add(&iter, &al, evsel, &sample, add_hist_entries() 111 fake_samples[i].thread = al.thread; add_hist_entries() 112 fake_samples[i].map = al.map; add_hist_entries() 113 fake_samples[i].sym = al.sym; add_hist_entries()
|
H A D | hists_output.c | 48 struct addr_location al; add_hist_entries() local 69 if (perf_event__preprocess_sample(&event, machine, &al, add_hist_entries() 73 if (hist_entry_iter__add(&iter, &al, evsel, &sample, add_hist_entries() 77 fake_samples[i].thread = al.thread; add_hist_entries() 78 fake_samples[i].map = al.map; add_hist_entries() 79 fake_samples[i].sym = al.sym; add_hist_entries()
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | io-workarounds.c | 114 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ 120 return bus->ops->name al; \ 121 return __do_##name al; \ 124 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ 130 bus->ops->name al; \ 133 __do_##name al; \ 143 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) .name = iowa_##name, 144 #define DEF_PCI_AC_NORET(name, at, al, space, aa) .name = iowa_##name,
|
H A D | udbg.c | 83 /* udbg library, used by xmon et al */ udbg_puts()
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | sfp-machine.h | 209 * #define add_ssaaaa(sh,sl,ah,al,bh,bl) (sh = ah+bh+ (( sl = al+bl) < al)) 216 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ 223 "%r" ((USItype)(al)), \ 230 "%r" ((USItype)(al)), \ 238 "%r" ((USItype)(al)), \ 243 * #define sub_ddmmss(sh, sl, ah, al, bh, bl) (sh = ah-bh - ((sl = al-bl) > al)) 251 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ 258 "rI" ((USItype)(al)), \ 265 "rI" ((USItype)(al)), \ 272 "rI" ((USItype)(al)), \ 279 "rI" ((USItype)(al)), \ 287 "rI" ((USItype)(al)), \
|
H A D | io.h | 565 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) ret (*name) at; 566 #define DEF_PCI_AC_NORET(name, at, al, space, aa) void (*name) at; 576 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ 580 return ppc_pci_io.name al; \ 581 return __do_##name al; \ 584 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ 588 ppc_pci_io.name al; \ 590 __do_##name al; \
|
/linux-4.1.27/tools/perf/ |
H A D | builtin-mem.c | 67 struct addr_location al; dump_raw_samples() local 70 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { dump_raw_samples() 76 if (al.filtered || (mem->hide_unresolved && al.sym == NULL)) dump_raw_samples() 79 if (al.map != NULL) dump_raw_samples() 80 al.map->dso->hit = 1; dump_raw_samples() 104 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???", dump_raw_samples() 105 al.sym ? al.sym->name : "???"); dump_raw_samples()
|
H A D | builtin-annotate.c | 51 struct addr_location *al, perf_evsel__add_sample() 59 (al->sym == NULL || perf_evsel__add_sample() 60 strcmp(ann->sym_hist_filter, al->sym->name) != 0)) { perf_evsel__add_sample() 62 if (al->sym != NULL) { perf_evsel__add_sample() 63 rb_erase(&al->sym->rb_node, perf_evsel__add_sample() 64 &al->map->dso->symbols[al->map->type]); perf_evsel__add_sample() 65 symbol__delete(al->sym); perf_evsel__add_sample() 70 he = __hists__add_entry(hists, al, NULL, NULL, NULL, 1, 1, 0, true); perf_evsel__add_sample() 74 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); perf_evsel__add_sample() 86 struct addr_location al; process_sample_event() local 88 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { process_sample_event() 97 if (!al.filtered && perf_evsel__add_sample(evsel, sample, &al, ann)) { process_sample_event() 49 perf_evsel__add_sample(struct perf_evsel *evsel, struct perf_sample *sample __maybe_unused, struct addr_location *al, struct perf_annotate *ann) perf_evsel__add_sample() argument
|
H A D | builtin-inject.c | 214 struct addr_location al; perf_event__inject_buildid() local 227 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al); perf_event__inject_buildid() 229 if (al.map != NULL) { perf_event__inject_buildid() 230 if (!al.map->dso->hit) { perf_event__inject_buildid() 231 al.map->dso->hit = 1; perf_event__inject_buildid() 232 if (map__load(al.map, NULL) >= 0) { perf_event__inject_buildid() 233 dso__inject_build_id(al.map->dso, tool, machine); perf_event__inject_buildid() 242 al.map->dso->long_name); perf_event__inject_buildid()
|
H A D | builtin-top.c | 674 struct addr_location *al, bool single, hist_iter__top_callback() 682 u64 ip = al->addr; hist_iter__top_callback() 684 if (al->map) hist_iter__top_callback() 685 ip = al->map->unmap_ip(al->map, ip); hist_iter__top_callback() 700 struct addr_location al; perf_event__process_sample() local 726 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) perf_event__process_sample() 731 al.cpumode == PERF_RECORD_MISC_KERNEL) { perf_event__process_sample() 736 al.map && !RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION]) ? perf_event__process_sample() 743 if (al.sym == NULL) { perf_event__process_sample() 757 al.map == machine->vmlinux_maps[MAP__FUNCTION] && perf_event__process_sample() 758 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) { perf_event__process_sample() 761 dso__strerror_load(al.map->dso, serr, sizeof(serr)); perf_event__process_sample() 775 if (al.sym == NULL || !al.sym->ignore) { perf_event__process_sample() 788 err = hist_entry_iter__add(&iter, &al, evsel, sample, perf_event__process_sample() 673 hist_iter__top_callback(struct hist_entry_iter *iter, struct addr_location *al, bool single, void *arg) hist_iter__top_callback() argument
|
H A D | builtin-report.c | 90 struct addr_location *al, bool single, hist_iter__report_callback() 117 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); hist_iter__report_callback() 122 al->addr); hist_iter__report_callback() 124 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); hist_iter__report_callback() 138 struct addr_location al; process_sample_event() local 145 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { process_sample_event() 151 if (rep->hide_unresolved && al.sym == NULL) process_sample_event() 166 if (al.map != NULL) process_sample_event() 167 al.map->dso->hit = 1; process_sample_event() 169 ret = hist_entry_iter__add(&iter, &al, evsel, sample, rep->max_stack, process_sample_event() 89 hist_iter__report_callback(struct hist_entry_iter *iter, struct addr_location *al, bool single, void *arg) hist_iter__report_callback() argument
|
H A D | builtin-script.c | 384 struct addr_location al; print_sample_addr() local 391 perf_event__preprocess_sample_addr(event, sample, thread, &al); print_sample_addr() 396 symbol__fprintf_symname_offs(al.sym, &al, stdout); print_sample_addr() 398 symbol__fprintf_symname(al.sym, stdout); print_sample_addr() 403 map__fprintf_dsoname(al.map, stdout); print_sample_addr() 412 struct addr_location *al) print_sample_bts() 430 perf_evsel__print_ip(evsel, sample, al, print_opts, print_sample_bts() 443 map__fprintf_srcline(al->map, al->addr, "\n ", stdout); print_sample_bts() 449 struct perf_evsel *evsel, struct addr_location *al) process_event() 451 struct thread *thread = al->thread; process_event() 468 print_sample_bts(event, sample, evsel, thread, al); process_event() 484 perf_evsel__print_ip(evsel, sample, al, process_event() 551 struct addr_location al; process_sample_event() local 564 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { process_sample_event() 570 if (al.filtered) process_sample_event() 576 scripting_ops->process_event(event, sample, evsel, &al); process_sample_event() 408 print_sample_bts(union perf_event *event, struct perf_sample *sample, struct perf_evsel *evsel, struct thread *thread, struct addr_location *al) print_sample_bts() argument 448 process_event(union perf_event *event, struct perf_sample *sample, struct perf_evsel *evsel, struct addr_location *al) process_event() argument
|
H A D | builtin-trace.c | 1901 struct addr_location *al, print_location() 1905 if ((verbose || print_dso) && al->map) print_location() 1906 fprintf(f, "%s@", al->map->dso->long_name); print_location() 1908 if ((verbose || print_sym) && al->sym) print_location() 1909 fprintf(f, "%s+0x%" PRIx64, al->sym->name, print_location() 1910 al->addr - al->sym->start); print_location() 1911 else if (al->map) print_location() 1912 fprintf(f, "0x%" PRIx64, al->addr); print_location() 1924 struct addr_location al; trace__pgfault() local 1942 sample->ip, &al); trace__pgfault() 1950 print_location(trace->output, sample, &al, false, true); trace__pgfault() 1955 sample->addr, &al); trace__pgfault() 1957 if (!al.map) { trace__pgfault() 1959 MAP__FUNCTION, sample->addr, &al); trace__pgfault() 1961 if (al.map) trace__pgfault() 1967 print_location(trace->output, sample, &al, true, false); trace__pgfault() 1969 fprintf(trace->output, " (%c%c)\n", map_type, al.level); trace__pgfault() 1900 print_location(FILE *f, struct perf_sample *sample, struct addr_location *al, bool print_dso, bool print_sym) print_location() argument
|
H A D | builtin-diff.c | 314 struct addr_location *al, u64 period, hists__add_entry() 317 if (__hists__add_entry(hists, al, NULL, NULL, NULL, period, weight, hists__add_entry() 329 struct addr_location al; diff__process_sample_event() local 332 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { diff__process_sample_event() 338 if (hists__add_entry(hists, &al, sample->period, diff__process_sample_event() 351 if (!al.filtered) diff__process_sample_event() 313 hists__add_entry(struct hists *hists, struct addr_location *al, u64 period, u64 weight, u64 transaction) hists__add_entry() argument
|
/linux-4.1.27/arch/x86/math-emu/ |
H A D | polynom_Xsig.S | 60 movb %al,OVERFLOWED 115 sbbb %al,%al 116 movb %al,OVERFLOWED /* Used in the next iteration */
|
H A D | wm_shrx.S | 141 setne %al 158 setne %al 183 setne %al 197 setne %al
|
/linux-4.1.27/arch/openrisc/include/asm/ |
H A D | cache.h | 11 * et al.
|
H A D | cpuinfo.h | 11 * et al.
|
H A D | irq.h | 11 * et al.
|
H A D | irqflags.h | 11 * et al.
|
H A D | linkage.h | 11 * et al.
|
H A D | mmu.h | 11 * et al.
|
H A D | spinlock.h | 11 * et al.
|
H A D | serial.h | 11 * et al.
|
H A D | syscalls.h | 11 * et al.
|
H A D | tlb.h | 11 * et al.
|
H A D | bitops.h | 11 * et al.
|
H A D | io.h | 10 * et al.
|
H A D | mmu_context.h | 11 * et al.
|
H A D | syscall.h | 11 * et al.
|
H A D | tlbflush.h | 11 * et al.
|
H A D | unaligned.h | 11 * et al.
|
H A D | elf.h | 11 * et al.
|
H A D | page.h | 11 * et al.
|
H A D | pgalloc.h | 11 * et al.
|
H A D | fixmap.h | 11 * et al.
|
H A D | processor.h | 11 * et al.
|
H A D | ptrace.h | 11 * et al.
|
H A D | thread_info.h | 11 * et al.
|
/linux-4.1.27/arch/openrisc/include/uapi/asm/ |
H A D | param.h | 11 * et al.
|
H A D | unistd.h | 11 * et al.
|
H A D | ptrace.h | 11 * et al.
|
H A D | sigcontext.h | 11 * et al.
|
H A D | elf.h | 11 * et al.
|
/linux-4.1.27/arch/arm/mach-alpine/ |
H A D | alpine_machine.c | 22 "al,alpine",
|
H A D | alpine_cpu_pm.c | 58 al_sysfabric = syscon_regmap_lookup_by_compatible("al,alpine-sysfabric-service"); alpine_cpu_pm_init() 60 np = of_find_compatible_node(NULL, NULL, "al,alpine-cpu-resume"); alpine_cpu_pm_init()
|
H A D | platsmp.c | 49 CPU_METHOD_OF_DECLARE(alpine_smp, "al,alpine-smp", &alpine_smp_ops);
|
/linux-4.1.27/drivers/char/ |
H A D | toshiba.c | 137 unsigned char al; tosh_emulate_fan() local 149 al = inb(0xe5); tosh_emulate_fan() 152 regs->ecx = (unsigned int) (al & 0x01); tosh_emulate_fan() 158 al = inb(0xe5); tosh_emulate_fan() 160 outb (al | 0x01, 0xe5); tosh_emulate_fan() 169 al = inb(0xe5); tosh_emulate_fan() 171 outb(al & 0xfe, 0xe5); tosh_emulate_fan() 185 al = inb(0xe5); tosh_emulate_fan() 188 regs->ecx = al & 0x01; tosh_emulate_fan() 194 al = inb(0xe5); tosh_emulate_fan() 195 outw(0xe0 | ((al & 0xfe) << 8), 0xe4); tosh_emulate_fan() 204 al = inb(0xe5); tosh_emulate_fan() 205 outw(0xe0 | ((al | 0x01) << 8), 0xe4); tosh_emulate_fan() 234 "inb $0xb2,%%al\n\t" tosh_smm()
|
H A D | i8k.c | 169 "out %%al,$0xb2\n\t" i8k_smm() 170 "out %%al,$0x84\n\t" i8k_smm() 195 "out %%al,$0xb2\n\t" i8k_smm() 196 "out %%al,$0x84\n\t" i8k_smm()
|
/linux-4.1.27/arch/unicore32/include/asm/ |
H A D | assembler.h | 93 .else; .ifnc \cond, al 119 .macro strusr, reg, ptr, inc, cond = al, rept = 1, abort = 9001f 123 .macro ldrusr, reg, ptr, inc, cond = al, rept = 1, abort = 9001f
|
/linux-4.1.27/include/linux/ |
H A D | math64.h | 150 u32 ah, al; mul_u64_u32_shr() local 153 al = a; mul_u64_u32_shr() 156 ret = ((u64)al * mul) >> shift; mul_u64_u32_shr()
|
H A D | virtio_ring.h | 15 * accesses through relaxed memory I/O windows, so smp_mb() et al are
|
H A D | videodev2.h | 54 * et al.
|
H A D | tracehook.h | 14 * al) from which it is called, and the meaning of its return value.
|
/linux-4.1.27/drivers/net/wireless/rtl818x/rtl8187/ |
H A D | rtl8225.h | 8 * Copyright 2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl8187.h | 8 * Copyright 2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
/linux-4.1.27/drivers/staging/rtl8192e/rtl8192e/ |
H A D | rtl_eeprom.h | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl_cam.h | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl_ethtool.c | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl_pci.h | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl_ps.h | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl_pci.c | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | r8192E_dev.h | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl_eeprom.c | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl_cam.c | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
H A D | rtl_ps.c | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
/linux-4.1.27/include/scsi/ |
H A D | scsi_ioctl.h | 23 * Structures used for scsi_ioctl et al.
|
/linux-4.1.27/tools/net/ |
H A D | bpf_asm.c | 15 * blob that is loadable with xt_bpf, cls_bpf et al. Note: -c will
|
/linux-4.1.27/arch/x86/kernel/ |
H A D | io_delay.c | 27 asm volatile ("outb %al, $0x80"); native_io_delay() 30 asm volatile ("outb %al, $0xed"); native_io_delay()
|
H A D | head_32.S | 365 testb $X86_CR4_PAE, %al # check if PAE is enabled 437 movb %al,%cl # save reg for future use 440 andb $0xf0,%al # mask model 441 shrb $4,%al 442 movb %al,X86_MODEL
|
H A D | entry_32.S | 333 movb PT_CS(%esp), %al 471 setbe %al /* 1 if so, 0 if not */ 472 movzbl %al,%eax /* zero-extend that */ 527 movb PT_CS(%esp), %al 700 mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */
|
/linux-4.1.27/net/core/ |
H A D | drop_monitor.c | 78 size_t al; reset_per_cpu_data() local 84 al = sizeof(struct net_dm_alert_msg); reset_per_cpu_data() 85 al += dm_hit_limit * sizeof(struct net_dm_drop_point); reset_per_cpu_data() 86 al += sizeof(struct nlattr); reset_per_cpu_data() 88 skb = genlmsg_new(al, GFP_KERNEL); reset_per_cpu_data() 96 memset(msg, 0, al); reset_per_cpu_data()
|
/linux-4.1.27/tools/perf/arch/powerpc/util/ |
H A D | skip-callchain-idx.c | 240 struct addr_location al; arch_skip_callchain_idx() local 252 MAP__FUNCTION, ip, &al); arch_skip_callchain_idx() 254 if (al.map) arch_skip_callchain_idx() 255 dso = al.map->dso; arch_skip_callchain_idx() 262 rc = check_return_addr(dso, al.map->start, ip); arch_skip_callchain_idx() 265 dso->long_name, al.sym->name, ip, rc); arch_skip_callchain_idx()
|
/linux-4.1.27/arch/x86/crypto/ |
H A D | crct10dif-pcl-asm_64.S | 478 mov (arg2), %al 479 mov %al, (%r11) 507 mov (arg2), %al 508 mov %al, (%r11) 510 mov 1(arg2), %al 511 mov %al, 1(%r11) 513 mov 2(arg2), %al 514 mov %al, 2(%r11) 528 mov (arg2), %al 529 mov %al, (%r11) 531 mov 1(arg2), %al 532 mov %al, 1(%r11) 544 mov (arg2), %al 545 mov %al, (%r11)
|
H A D | aes-x86_64-asm_64.S | 25 #define R1L %al
|
H A D | blowfish-x86_64-asm_64.S | 49 #define RX0bl %al
|
H A D | twofish-x86_64-asm_64-3way.S | 54 #define RAB0bl %al
|
H A D | aesni-intel_avx-x86_64.S | 48 ## Vinodh Gopal et. al. Optimized Galois-Counter-Mode Implementation 51 ## Erdinc Ozturk et. al. Enabling High-Performance Galois-Counter-Mode 1325 movb (arg3, %r11), %al 1326 movb %al, TMP1 (%rsp , %r11) 1377 movb %al, (arg2 , %r11) 2602 movb (arg3, %r11), %al 2603 movb %al, TMP1 (%rsp , %r11) 2652 movb %al, (arg2 , %r11)
|
/linux-4.1.27/tools/perf/util/scripting-engines/ |
H A D | trace-event-python.c | 308 struct addr_location *al) python_process_callchain() 319 if (thread__resolve_callchain(al->thread, evsel, python_process_callchain() 384 struct addr_location *al) python_process_tracepoint() 397 const char *comm = thread__comm_str(al->thread); python_process_tracepoint() 431 callchain = python_process_callchain(sample, evsel, al); python_process_tracepoint() 681 tuple_set_u64(t, 2, es->al->machine->db_id); python_export_sample() 682 tuple_set_u64(t, 3, es->al->thread->db_id); python_export_sample() 768 struct addr_location *al) python_process_general_event() 817 PyString_FromString(thread__comm_str(al->thread))); python_process_general_event() 818 if (al->map) { python_process_general_event() 820 PyString_FromString(al->map->dso->name)); python_process_general_event() 822 if (al->sym) { python_process_general_event() 824 PyString_FromString(al->sym->name)); python_process_general_event() 828 callchain = python_process_callchain(sample, evsel, al); python_process_general_event() 844 struct addr_location *al) python_process_event() 850 python_process_tracepoint(sample, evsel, al); python_process_event() 855 db_export__sample(&tables->dbe, event, sample, evsel, al); python_process_event() 857 python_process_general_event(sample, evsel, al); python_process_event() 306 python_process_callchain(struct perf_sample *sample, struct perf_evsel *evsel, struct addr_location *al) python_process_callchain() argument 382 python_process_tracepoint(struct perf_sample *sample, struct perf_evsel *evsel, struct addr_location *al) python_process_tracepoint() argument 766 python_process_general_event(struct perf_sample *sample, struct perf_evsel *evsel, struct addr_location *al) python_process_general_event() argument 841 python_process_event(union perf_event *event, struct perf_sample *sample, struct perf_evsel *evsel, struct addr_location *al) python_process_event() argument
|
H A D | trace-event-perl.c | 363 struct addr_location *al) perl_process_event() 365 perl_process_tracepoint(sample, evsel, al->thread); perl_process_event() 360 perl_process_event(union perf_event *event, struct perf_sample *sample, struct perf_evsel *evsel, struct addr_location *al) perl_process_event() argument
|
/linux-4.1.27/drivers/net/wireless/rtl818x/rtl8180/ |
H A D | rtl8225se.h | 8 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
H A D | rtllib_debug.h | 5 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
/linux-4.1.27/arch/x86/include/asm/ |
H A D | apm.h | 38 "setc %%al\n\t" apm_bios_call_asm()
|
H A D | pci_x86.h | 165 asm volatile("movb (%1),%%al" : "=a" (val) : "r" (pos)); mmio_config_readb() 185 asm volatile("movb %%al,(%1)" : : "a" (val), "r" (pos) : "memory"); mmio_config_writeb()
|
/linux-4.1.27/drivers/block/drbd/ |
H A D | drbd_actlog.c | 61 /* maximum slot number, "al-extents" in drbd.conf speak. 340 struct lru_cache *al = device->act_log; drbd_al_begin_io_nonblock() local 352 available_update_slots = min(al->nr_elements - al->used, drbd_al_begin_io_nonblock() 353 al->max_pending_changes - al->pending_changes); drbd_al_begin_io_nonblock() 367 if (!al->pending_changes) drbd_al_begin_io_nonblock() 437 /* al extent number to bit */ al_extent_to_bm_page() 470 drbd_err(device, "disk is %s, cannot start al transaction\n", al_write_transaction() 478 "disk is %s, cannot write al transaction\n", al_write_transaction() 611 struct al_transaction_on_disk *al = buffer; drbd_initialize_al() local 617 memset(al, 0, 4096); drbd_initialize_al() 618 al->magic = cpu_to_be32(DRBD_AL_MAGIC); drbd_initialize_al() 619 al->transaction_type = cpu_to_be16(AL_TR_INITIALIZED); drbd_initialize_al() 620 al->crc32c = cpu_to_be32(crc32c(0, al, 4096)); drbd_initialize_al()
|
H A D | drbd_proc.c | 266 al .. activity log write count drbd_seq_show() 297 " ns:%u nr:%u dw:%u dr:%u al:%u bm:%u " drbd_seq_show()
|
/linux-4.1.27/arch/powerpc/mm/ |
H A D | icswx.h | 41 * ever becomes architecture the should be moved to reg.h et. al.
|
/linux-4.1.27/crypto/ |
H A D | vmac.c | 190 #define poly_step(ah, al, kh, kl, mh, ml) \ 194 PMUL64(t3h, t3l, al, kh); \ 197 PMUL64(ah, al, al, kl); \ 199 ADD128(ah, al, t1h, t1l); \ 202 /* now (ah,al), (t2l,2*t2h) need summing */ \ 209 ADD128(ah, al, mh, ml); \ 210 ADD128(ah, al, z, t2h); \ 296 #define poly_step(ah, al, kh, kl, mh, ml) \ 297 poly_step_func(&(ah), &(al), &(kh), &(kl), &(mh), &(ml))
|
/linux-4.1.27/arch/x86/realmode/rm/ |
H A D | wakeup_asm.S | 52 orb $X86_CR0_PE, %al 62 andb $~X86_CR0_PE, %al
|
/linux-4.1.27/lib/ |
H A D | decompress_inflate.c | 14 /* initramfs et al: linked */ 36 /* Included from initramfs et al code */ __gunzip()
|
/linux-4.1.27/drivers/net/wireless/p54/ |
H A D | p54pci.h | 11 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
|
H A D | led.c | 10 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
|
H A D | p54usb.h | 10 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
|
H A D | eeprom.h | 9 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
|
H A D | p54.h | 7 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
|
H A D | lmac.h | 9 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
|
/linux-4.1.27/drivers/edac/ |
H A D | edac_module.c | 156 MODULE_AUTHOR("Doug Thompson www.softwarebitmaker.com, et al");
|
H A D | e7xxx_edac.c | 602 MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh et al\n" 603 "Based on.work by Dan Hollis et al");
|
/linux-4.1.27/arch/sh/kernel/vsyscall/ |
H A D | vsyscall.lds.S | 33 * space for the dynamic symbol table et al. If this amount
|
/linux-4.1.27/arch/tile/kernel/vdso/ |
H A D | vdso.lds.S | 47 * space for the dynamic symbol table et al. If this amount
|
/linux-4.1.27/arch/arm64/include/asm/ |
H A D | acpi.h | 3 * Author: Al Stone <al.stone@linaro.org>
|
/linux-4.1.27/arch/ia64/kernel/ |
H A D | gate.lds.S | 30 * the dynamic symbol table et al. If this amount is insufficient,
|
/linux-4.1.27/arch/arm/include/asm/ |
H A D | assembler.h | 132 asm_trace_hardirqs_on_cond al 368 .ifnc \cond,al 409 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f 413 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
|
H A D | io.h | 215 * Only set this larger if you really need inb() et.al. to operate over pci_ioremap_set_mem_type() 217 * IO space area, and so inb() et.al. must be defined to operate as per pci_ioremap_set_mem_type() 218 * readb() et.al. on such platforms. pci_ioremap_set_mem_type()
|
/linux-4.1.27/arch/arm/kernel/ |
H A D | hibernate.c | 8 * Copyright (C) 2010 Texas Instruments, Inc. (Teerth Reddy et al.)
|
/linux-4.1.27/drivers/cpufreq/ |
H A D | speedstep-smi.c | 76 "out %%al, (%%dx)\n" speedstep_smi_ownership() 118 "out %%al, (%%dx)\n" speedstep_smi_get_freqs() 187 "out %%al, (%%dx)\n" speedstep_set_state()
|
/linux-4.1.27/drivers/thermal/ |
H A D | tegra_soctherm.c | 207 s64 r, al; div64_s64_precise() local 210 al = a << 16; div64_s64_precise() 212 r = div64_s64(al * 2 + 1, 2 * b); div64_s64_precise()
|
/linux-4.1.27/include/uapi/linux/ |
H A D | if.h | 22 #include <linux/types.h> /* for "__kernel_caddr_t" et al */ 23 #include <linux/socket.h> /* for "struct sockaddr" et al */ 24 #include <linux/compiler.h> /* for "__user" et al */
|
/linux-4.1.27/drivers/isdn/hisax/ |
H A D | l3ni1.h | 13 * driver written by Karsten Keil et al. Thanks also for the
|
/linux-4.1.27/drivers/net/ethernet/intel/i40e/ |
H A D | i40e_virtchnl_pf.c | 1534 struct i40e_virtchnl_ether_addr_list *al = i40e_vc_add_mac_addr_msg() local 1538 u16 vsi_id = al->vsi_id; i40e_vc_add_mac_addr_msg() 1549 for (i = 0; i < al->num_elements; i++) { i40e_vc_add_mac_addr_msg() 1550 ret = i40e_check_vf_permission(vf, al->list[i].addr); i40e_vc_add_mac_addr_msg() 1557 for (i = 0; i < al->num_elements; i++) { i40e_vc_add_mac_addr_msg() 1560 f = i40e_find_mac(vsi, al->list[i].addr, true, false); i40e_vc_add_mac_addr_msg() 1563 f = i40e_put_mac_in_vlan(vsi, al->list[i].addr, i40e_vc_add_mac_addr_msg() 1566 f = i40e_add_filter(vsi, al->list[i].addr, -1, i40e_vc_add_mac_addr_msg() 1598 struct i40e_virtchnl_ether_addr_list *al = i40e_vc_del_mac_addr_msg() local 1602 u16 vsi_id = al->vsi_id; i40e_vc_del_mac_addr_msg() 1613 for (i = 0; i < al->num_elements; i++) { i40e_vc_del_mac_addr_msg() 1614 if (is_broadcast_ether_addr(al->list[i].addr) || i40e_vc_del_mac_addr_msg() 1615 is_zero_ether_addr(al->list[i].addr)) { i40e_vc_del_mac_addr_msg() 1617 al->list[i].addr); i40e_vc_del_mac_addr_msg() 1625 for (i = 0; i < al->num_elements; i++) i40e_vc_del_mac_addr_msg() 1626 i40e_del_filter(vsi, al->list[i].addr, i40e_vc_del_mac_addr_msg()
|
/linux-4.1.27/drivers/scsi/ |
H A D | dmx3191d.c | 6 Based on the generic NCR5380 driver by Drew Eckhardt et al.
|
/linux-4.1.27/fs/ |
H A D | compat_binfmt_elf.c | 49 * which requires asm/elf.h to define compat_elf_gregset_t et al.
|
/linux-4.1.27/drivers/staging/media/lirc/ |
H A D | lirc_bt829.c | 42 static void seems_wr_byte(unsigned char al); 45 static unsigned int read_index(unsigned char al);
|
/linux-4.1.27/arch/arm/nwfpe/ |
H A D | entry.S | 30 adrsvc al, r9, ret_from_exception @ r9 = normal FP return 31 adrsvc al, lr, fpundefinstr @ lr = undefined instr return
|
/linux-4.1.27/drivers/mtd/nand/ |
H A D | cafe_nand.c | 559 u8 ah, al, bh, bl, ch, cl; gf4096_mul() local 562 al = a & 0x3f; gf4096_mul() 566 ch = gf64_mul(ah ^ al, bh ^ bl) ^ gf64_mul(al, bl); gf4096_mul() 567 cl = gf64_mul(gf64_mul(ah, bh), 0x21) ^ gf64_mul(al, bl); gf4096_mul()
|
H A D | fsl_elbc_nand.c | 626 unsigned int al; fsl_elbc_chip_init_tail() local 629 al = 0; fsl_elbc_chip_init_tail() 631 al++; fsl_elbc_chip_init_tail() 633 al++; fsl_elbc_chip_init_tail() 635 priv->fmr |= al << FMR_AL_SHIFT; fsl_elbc_chip_init_tail()
|
/linux-4.1.27/drivers/ata/ |
H A D | pata_ep93xx.c | 803 static int ep93xx_pata_softreset(struct ata_link *al, unsigned int *classes, ep93xx_pata_softreset() argument 806 struct ata_port *ap = al->ap; ep93xx_pata_softreset() 819 ap->ops->sff_dev_select(al->ap, 0); ep93xx_pata_softreset() 824 if (rc && (rc != -ENODEV || sata_scr_valid(al))) { ep93xx_pata_softreset() 825 ata_link_err(al, "SRST failed (errno=%d)\n", rc); ep93xx_pata_softreset() 830 classes[0] = ata_sff_dev_classify(&al->device[0], devmask & (1 << 0), ep93xx_pata_softreset() 833 classes[1] = ata_sff_dev_classify(&al->device[1], ep93xx_pata_softreset()
|
/linux-4.1.27/drivers/net/arcnet/ |
H A D | com20020-isa.c | 44 #define VERSION "arcnet: COM20020 ISA support (by David Woodhouse et al.)\n"
|
H A D | com20020.c | 42 #define VERSION "arcnet: COM20020 chipset support (by David Woodhouse et al.)\n"
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
H A D | vmk80xx.c | 626 * and al, 03h ; al are the lower 8 bits of eax vmk80xx_pwm_insn_write() 627 * mov lo, al ; lo is the low part (tx_buf[reg[0]]) vmk80xx_pwm_insn_write() 630 * mov hi, al ; hi is the high part (tx_buf[reg[1]]) vmk80xx_pwm_insn_write()
|
/linux-4.1.27/drivers/parisc/ |
H A D | ccio-rm-dma.c | 72 printk(KERN_ERR MODULE_NAME ": EISA/ISA/et al not supported\n"); ccio_dma_supported()
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/ |
H A D | dma.h | 47 u32 control; /* enable, et al */
|
/linux-4.1.27/arch/x86/vdso/vdso32/ |
H A D | sigreturn.S | 4 * This file is #include'd by int80.S et al to define them first thing.
|
/linux-4.1.27/drivers/tty/serial/8250/ |
H A D | 8250_fintek.c | 4 * Based on drivers/tty/serial/8250_pnp.c, by Russell King, et al
|
/linux-4.1.27/drivers/usb/host/ |
H A D | ohci-sa1111.c | 11 * Based on fragments of previous driver by Russell King et al.
|
/linux-4.1.27/drivers/usb/misc/sisusbvga/ |
H A D | sisusb_init.c | 739 unsigned short al, unsigned short dh) SiS_WriteDAC() 747 d3 = al; SiS_WriteDAC() 751 d2 = al; SiS_WriteDAC() 755 d1 = al; SiS_WriteDAC() 737 SiS_WriteDAC(struct SiS_Private *SiS_Pr, unsigned long DACData, unsigned short shiftflag, unsigned short dl, unsigned short ah, unsigned short al, unsigned short dh) SiS_WriteDAC() argument
|
/linux-4.1.27/drivers/video/fbdev/ |
H A D | sunxvr2500.c | 1 /* s3d.c: Sun 3DLABS XVR-2500 et al. driver for sparc64 systems
|
/linux-4.1.27/arch/m68k/include/asm/ |
H A D | atariints.h | 92 /* shared MFP timer D interrupts - hires timer for EtherNEC et al. */
|
/linux-4.1.27/arch/x86/kvm/ |
H A D | emulate.c | 334 FOP1E(op##b, al) \ 363 FOP2E(op##b, al, dl) \ 381 FOP2E(op##b, al, cl) \ 390 FOP2E(op##b, dl, al) \ 409 #define FOP_SETCC(op) ".align 4; " #op " %al; ret \n\t" 433 FOP_START(salc) "pushf; sbb %al, %al; popf \n\t" FOP_RET 2972 u8 al, old_al; em_das() local 2976 al = ctxt->dst.val; em_das() 2978 old_al = al; em_das() 2982 if ((al & 0x0f) > 9 || af) { em_das() 2983 al -= 6; em_das() 2984 cf = old_cf | (al >= 250); em_das() 2990 al -= 0x60; em_das() 2994 ctxt->dst.val = al; em_das() 3010 u8 al, ah; em_aam() local 3015 al = ctxt->dst.val & 0xff; em_aam() 3016 ah = al / ctxt->src.val; em_aam() 3017 al %= ctxt->src.val; em_aam() 3019 ctxt->dst.val = (ctxt->dst.val & 0xffff0000) | al | (ah << 8); em_aam() 3032 u8 al = ctxt->dst.val & 0xff; em_aad() local 3035 al = (al + (ah * ctxt->src.val)) & 0xff; em_aad() 3037 ctxt->dst.val = (ctxt->dst.val & 0xffff0000) | al; em_aad()
|
/linux-4.1.27/drivers/firmware/google/ |
H A D | gsmi.c | 200 "outb %%al, %%dx\n" gsmi_exec() 214 "outb %%al, %%dx\n" gsmi_exec() 230 "outb %%al, %%dx\n\t" gsmi_exec()
|
/linux-4.1.27/drivers/misc/sgi-xp/ |
H A D | xp_main.c | 21 /* define the XP debug device structures to be used with dev_dbg() et al */
|
/linux-4.1.27/drivers/net/wireless/rtl818x/ |
H A D | rtl818x.h | 8 * Copyright 2005 Andrea Merello <andrea.merello@gmail.com>, et al.
|
/linux-4.1.27/drivers/s390/net/ |
H A D | ctcm_fsms.h | 58 * I/O operations (ccw_device_start, ccw_device_halt et al.)
|
/linux-4.1.27/drivers/net/wireless/cw1200/ |
H A D | cw1200.h | 11 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
|
/linux-4.1.27/drivers/infiniband/hw/qib/ |
H A D | qib_eeprom.c | 138 * qib_get_eeprom_info- get the GUID et al. from the TSWI EEPROM device
|
/linux-4.1.27/arch/mips/include/asm/ |
H A D | mipsmtregs.h | 4 * Elizabeth Clarke et. al.
|
/linux-4.1.27/net/ipv4/ |
H A D | tcp_westwood.c | 9 * - Mascolo S, Casetti, M. Gerla et al.
|
/linux-4.1.27/fs/ntfs/ |
H A D | attrib.c | 703 * the linear buffer @al. The maximum number of bytes copied to @al is @size 705 * @initialized_size is less than @size, the region in @al between 714 u8 *al = al_start; load_attribute_list() local 715 u8 *al_end = al + initialized_size; load_attribute_list() 725 if (!vol || !runlist || !al || size <= 0 || initialized_size < 0 || load_attribute_list() 729 memset(al, 0, size); load_attribute_list() 767 if (al + block_size >= al_end) load_attribute_list() 769 memcpy(al, bh->b_data, block_size); load_attribute_list() 771 al += block_size; load_attribute_list() 783 if (al < al_end) { load_attribute_list() 792 memcpy(al, bh->b_data, al_end - al); load_attribute_list()
|
/linux-4.1.27/arch/x86/ia32/ |
H A D | ia32entry.S | 269 1: setbe %al /* 1 if error, 0 if not */ 270 movzbl %al,%edi /* zero-extend that into %edi */
|
/linux-4.1.27/drivers/char/mwave/ |
H A D | smapi.c | 85 "out %%al,%%dx\n\t" smapi_request() 86 "out %%al,$0x4F\n\t" smapi_request()
|
/linux-4.1.27/drivers/mtd/ |
H A D | mtdblock.c | 395 MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
|
/linux-4.1.27/drivers/net/ethernet/i825xx/ |
H A D | sun3_82586.h | 238 unsigned char promisc; /* promisc-mode(0) , et al (1-7) */
|
/linux-4.1.27/arch/x86/pci/ |
H A D | pcbios.c | 90 unsigned char return_code; /* %al */ bios32_service()
|