/linux-4.4.14/arch/sh/kernel/ |
D | process_64.c | 40 unsigned long long ah, al, bh, bl, ch, cl; in show_regs() local 46 al = (regs->pc) & 0xffffffff; in show_regs() 52 ah, al, bh, bl, ch, cl); in show_regs() 55 al = (regs->sr) & 0xffffffff; in show_regs() 65 ah, al, bh, bl, ch, cl); in show_regs() 68 al = (regs->regs[0]) & 0xffffffff; in show_regs() 74 ah, al, bh, bl, ch, cl); in show_regs() 77 al = (regs->regs[3]) & 0xffffffff; in show_regs() 83 ah, al, bh, bl, ch, cl); in show_regs() 86 al = (regs->regs[6]) & 0xffffffff; in show_regs() [all …]
|
/linux-4.4.14/tools/perf/util/ |
D | unwind-libdw.c | 23 static int __report_module(struct addr_location *al, u64 ip, in __report_module() argument 31 MAP__FUNCTION, ip, al); in __report_module() 33 if (al->map) in __report_module() 34 dso = al->map->dso; in __report_module() 42 dso->long_name, -1, al->map->start, in __report_module() 50 struct addr_location al; in report_module() local 52 return __report_module(&al, ip, ui); in report_module() 59 struct addr_location al; in entry() local 61 if (__report_module(&al, ip, ui)) in entry() 65 e.map = al.map; in entry() [all …]
|
D | event.c | 900 struct addr_location *al) in thread__find_addr_map() argument 906 al->machine = machine; in thread__find_addr_map() 907 al->thread = thread; in thread__find_addr_map() 908 al->addr = addr; in thread__find_addr_map() 909 al->cpumode = cpumode; in thread__find_addr_map() 910 al->filtered = 0; in thread__find_addr_map() 913 al->map = NULL; in thread__find_addr_map() 918 al->level = 'k'; in thread__find_addr_map() 922 al->level = '.'; in thread__find_addr_map() 924 al->level = 'g'; in thread__find_addr_map() [all …]
|
D | db-export.c | 245 static int db_ids_from_al(struct db_export *dbe, struct addr_location *al, in db_ids_from_al() argument 250 if (al->map) { in db_ids_from_al() 251 struct dso *dso = al->map->dso; in db_ids_from_al() 253 err = db_export__dso(dbe, dso, al->machine); in db_ids_from_al() 258 if (!al->sym) { in db_ids_from_al() 259 al->sym = symbol__new(al->addr, 0, 0, "unknown"); in db_ids_from_al() 260 if (al->sym) in db_ids_from_al() 261 symbols__insert(&dso->symbols[al->map->type], in db_ids_from_al() 262 al->sym); in db_ids_from_al() 265 if (al->sym) { in db_ids_from_al() [all …]
|
D | hist.c | 386 struct addr_location *al, in hists__findnew_entry() argument 451 he_stat__add_cpumode_period(&he->stat, al->cpumode, period); in hists__findnew_entry() 453 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period); in hists__findnew_entry() 458 struct addr_location *al, in __hists__add_entry() argument 466 .thread = al->thread, in __hists__add_entry() 467 .comm = thread__comm(al->thread), in __hists__add_entry() 469 .map = al->map, in __hists__add_entry() 470 .sym = al->sym, in __hists__add_entry() 472 .socket = al->socket, in __hists__add_entry() 473 .cpu = al->cpu, in __hists__add_entry() [all …]
|
D | unwind-libunwind.c | 318 struct addr_location al; in find_map() local 321 MAP__FUNCTION, ip, &al); in find_map() 322 return al.map; in find_map() 419 struct addr_location al; in access_dso_mem() local 423 MAP__FUNCTION, addr, &al); in access_dso_mem() 424 if (!al.map) { in access_dso_mem() 429 if (!al.map->dso) in access_dso_mem() 432 size = dso__data_read_addr(al.map->dso, al.map, ui->machine, in access_dso_mem() 528 struct addr_location al; in entry() local 531 MAP__FUNCTION, ip, &al); in entry() [all …]
|
D | callchain.c | 710 struct perf_evsel *evsel, struct addr_location *al, in sample__resolve_callchain() argument 718 return thread__resolve_callchain(al->thread, evsel, sample, in sample__resolve_callchain() 719 parent, al, max_stack); in sample__resolve_callchain() 731 int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node, in fill_callchain_info() argument 734 al->map = node->map; in fill_callchain_info() 735 al->sym = node->sym; in fill_callchain_info() 737 al->addr = node->map->map_ip(node->map, node->ip); in fill_callchain_info() 739 al->addr = node->ip; in fill_callchain_info() 741 if (al->sym == NULL) { in fill_callchain_info() 744 if (al->map == NULL) in fill_callchain_info() [all …]
|
D | machine.c | 1502 struct addr_location al; in ip__resolve_ams() local 1504 memset(&al, 0, sizeof(al)); in ip__resolve_ams() 1512 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al); in ip__resolve_ams() 1515 ams->al_addr = al.addr; in ip__resolve_ams() 1516 ams->sym = al.sym; in ip__resolve_ams() 1517 ams->map = al.map; in ip__resolve_ams() 1523 struct addr_location al; in ip__resolve_data() local 1525 memset(&al, 0, sizeof(al)); in ip__resolve_data() 1527 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al); in ip__resolve_data() 1528 if (al.map == NULL) { in ip__resolve_data() [all …]
|
D | thread.h | 78 struct addr_location *al); 82 struct addr_location *al); 86 struct addr_location *al);
|
D | thread.c | 227 struct addr_location *al) in thread__find_cpumode_addr_location() argument 238 thread__find_addr_location(thread, cpumodes[i], type, addr, al); in thread__find_cpumode_addr_location() 239 if (al->map) in thread__find_cpumode_addr_location()
|
D | hist.h | 105 struct addr_location *al, bool single, void *arg); 114 struct addr_location *al, 120 int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al, 360 void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
|
D | db-export.h | 37 struct addr_location *al; member 99 struct addr_location *al);
|
D | intel-bts.c | 315 struct addr_location al; in intel_bts_get_next_insn() local 334 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, ip, &al); in intel_bts_get_next_insn() 335 if (!al.map || !al.map->dso) in intel_bts_get_next_insn() 338 len = dso__data_read_addr(al.map->dso, al.map, machine, ip, buf, bufsz); in intel_bts_get_next_insn() 343 map__load(al.map, machine->symbol_filter); in intel_bts_get_next_insn() 345 x86_64 = al.map->dso->is_64_bit; in intel_bts_get_next_insn()
|
D | callchain.h | 198 struct perf_evsel *evsel, struct addr_location *al, 201 int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
|
D | build-id.c | 30 struct addr_location al; in build_id__mark_dso_hit() local 41 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al); in build_id__mark_dso_hit() 43 if (al.map != NULL) in build_id__mark_dso_hit() 44 al.map->dso->hit = 1; in build_id__mark_dso_hit()
|
D | intel-pt.c | 417 struct addr_location al; in intel_pt_walk_next_insn() local 445 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, *ip, &al); in intel_pt_walk_next_insn() 446 if (!al.map || !al.map->dso) in intel_pt_walk_next_insn() 449 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR && in intel_pt_walk_next_insn() 450 dso__data_status_seen(al.map->dso, in intel_pt_walk_next_insn() 454 offset = al.map->map_ip(al.map, *ip); in intel_pt_walk_next_insn() 459 e = intel_pt_cache_lookup(al.map->dso, machine, offset); in intel_pt_walk_next_insn() 477 map__load(al.map, machine->symbol_filter); in intel_pt_walk_next_insn() 479 x86_64 = al.map->dso->is_64_bit; in intel_pt_walk_next_insn() 482 len = dso__data_read_offset(al.map->dso, machine, in intel_pt_walk_next_insn() [all …]
|
D | event.h | 459 struct addr_location *al, 462 void addr_location__put(struct addr_location *al); 471 struct addr_location *al);
|
D | trace-event-scripting.c | 46 struct addr_location *al __maybe_unused) in process_event_unsupported()
|
D | trace-event.h | 77 struct addr_location *al);
|
D | session.c | 1786 struct addr_location *al, in perf_evsel__print_ip() argument 1801 if (thread__resolve_callchain(al->thread, evsel, in perf_evsel__print_ip() 1811 node_al = *al; in perf_evsel__print_ip() 1858 if (al->sym && al->sym->ignore) in perf_evsel__print_ip() 1867 symbol__fprintf_symname_offs(al->sym, al, in perf_evsel__print_ip() 1870 symbol__fprintf_symname(al->sym, stdout); in perf_evsel__print_ip() 1875 map__fprintf_dsoname(al->map, stdout); in perf_evsel__print_ip() 1880 map__fprintf_srcline(al->map, al->addr, "\n ", stdout); in perf_evsel__print_ip()
|
D | machine.h | 141 struct addr_location *al); 143 struct addr_location *al);
|
D | session.h | 107 struct addr_location *al,
|
D | symbol.c | 267 const struct addr_location *al, FILE *fp) in symbol__fprintf_symname_offs() argument 274 if (al) { in symbol__fprintf_symname_offs() 275 if (al->addr < sym->end) in symbol__fprintf_symname_offs() 276 offset = al->addr - sym->start; in symbol__fprintf_symname_offs() 278 offset = al->addr - al->map->start - sym->start; in symbol__fprintf_symname_offs()
|
D | symbol.h | 263 const struct addr_location *al, FILE *fp);
|
/linux-4.4.14/arch/arm/lib/ |
D | ashrdi3.S | 33 #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 )
|
D | lshrdi3.S | 33 #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 )
|
D | ashldi3.S | 33 #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
|
D | memcpy.S | 32 .macro ldr1b ptr reg cond=al abort 44 .macro str1b ptr reg cond=al abort
|
D | copy_from_user.S | 60 .macro ldr1b ptr reg cond=al abort 72 .macro str1b ptr reg cond=al abort
|
D | copy_to_user.S | 56 .macro ldr1b ptr reg cond=al abort 75 .macro str1b ptr reg cond=al abort
|
/linux-4.4.14/lib/mpi/ |
D | longlong.h | 114 #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-4.4.14/Documentation/devicetree/bindings/arm/cpu-enable-method/ |
D | al,alpine-smp | 2 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"[1]. 24 enable-method = "al,alpine-smp"; 52 [1] arm/al,alpine.txt
|
/linux-4.4.14/arch/alpha/math-emu/ |
D | sfp-util.h | 7 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 8 ((sl) = (al) + (bl), (sh) = (ah) + (bh) + ((sl) < (al))) 10 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 11 ((sl) = (al) - (bl), (sh) = (ah) - (bh) - ((al) < (bl)))
|
/linux-4.4.14/tools/perf/ |
D | builtin-annotate.c | 51 struct addr_location *al, in perf_evsel__add_sample() argument 59 (al->sym == NULL || in perf_evsel__add_sample() 60 strcmp(ann->sym_hist_filter, al->sym->name) != 0)) { in perf_evsel__add_sample() 66 if (al->sym != NULL) { in perf_evsel__add_sample() 67 rb_erase(&al->sym->rb_node, in perf_evsel__add_sample() 68 &al->map->dso->symbols[al->map->type]); in perf_evsel__add_sample() 69 symbol__delete(al->sym); in perf_evsel__add_sample() 70 dso__reset_find_symbol_cache(al->map->dso); in perf_evsel__add_sample() 75 he = __hists__add_entry(hists, al, NULL, NULL, NULL, 1, 1, 0, true); in perf_evsel__add_sample() 79 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in perf_evsel__add_sample() [all …]
|
D | builtin-mem.c | 67 struct addr_location al; in dump_raw_samples() local 70 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { in dump_raw_samples() 76 if (al.filtered || (mem->hide_unresolved && al.sym == NULL)) in dump_raw_samples() 79 if (al.map != NULL) in dump_raw_samples() 80 al.map->dso->hit = 1; in dump_raw_samples() 104 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???", in dump_raw_samples() 105 al.sym ? al.sym->name : "???"); in dump_raw_samples() 107 addr_location__put(&al); in dump_raw_samples()
|
D | builtin-top.c | 683 struct addr_location *al, bool single, in hist_iter__top_callback() argument 691 u64 ip = al->addr; in hist_iter__top_callback() 693 if (al->map) in hist_iter__top_callback() 694 ip = al->map->unmap_ip(al->map, ip); in hist_iter__top_callback() 699 hist__account_cycles(iter->sample->branch_stack, al, iter->sample, in hist_iter__top_callback() 711 struct addr_location al; in perf_event__process_sample() local 737 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) in perf_event__process_sample() 742 al.cpumode == PERF_RECORD_MISC_KERNEL) { in perf_event__process_sample() 747 al.map && !RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION]) ? in perf_event__process_sample() 754 if (al.sym == NULL) { in perf_event__process_sample() [all …]
|
D | builtin-report.c | 94 struct addr_location *al, bool single, in hist_iter__report_callback() argument 107 hist__account_cycles(iter->sample->branch_stack, al, iter->sample, in hist_iter__report_callback() 124 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in hist_iter__report_callback() 129 al->addr); in hist_iter__report_callback() 131 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in hist_iter__report_callback() 145 struct addr_location al; in process_sample_event() local 154 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { in process_sample_event() 160 if (rep->hide_unresolved && al.sym == NULL) in process_sample_event() 182 if (al.map != NULL) in process_sample_event() 183 al.map->dso->hit = 1; in process_sample_event() [all …]
|
D | builtin-inject.c | 357 struct addr_location al; in perf_event__inject_buildid() local 370 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al); in perf_event__inject_buildid() 372 if (al.map != NULL) { in perf_event__inject_buildid() 373 if (!al.map->dso->hit) { in perf_event__inject_buildid() 374 al.map->dso->hit = 1; in perf_event__inject_buildid() 375 if (map__load(al.map, NULL) >= 0) { in perf_event__inject_buildid() 376 dso__inject_build_id(al.map->dso, tool, machine); in perf_event__inject_buildid() 385 al.map->dso->long_name); in perf_event__inject_buildid()
|
D | builtin-script.c | 508 struct addr_location al; in print_sample_addr() local 515 perf_event__preprocess_sample_addr(event, sample, thread, &al); in print_sample_addr() 520 symbol__fprintf_symname_offs(al.sym, &al, stdout); in print_sample_addr() 522 symbol__fprintf_symname(al.sym, stdout); in print_sample_addr() 527 map__fprintf_dsoname(al.map, stdout); in print_sample_addr() 536 struct addr_location *al) in print_sample_bts() argument 554 perf_evsel__print_ip(evsel, sample, al, print_opts, in print_sample_bts() 567 map__fprintf_srcline(al->map, al->addr, "\n ", stdout); in print_sample_bts() 592 struct perf_evsel *evsel, struct addr_location *al) in process_event() argument 594 struct thread *thread = al->thread; in process_event() [all …]
|
D | builtin-diff.c | 314 struct addr_location *al, u64 period, in hists__add_entry() argument 317 if (__hists__add_entry(hists, al, NULL, NULL, NULL, period, weight, in hists__add_entry() 329 struct addr_location al; in diff__process_sample_event() local 333 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { in diff__process_sample_event() 339 if (hists__add_entry(hists, &al, sample->period, in diff__process_sample_event() 352 if (!al.filtered) in diff__process_sample_event() 356 addr_location__put(&al); in diff__process_sample_event()
|
D | builtin-trace.c | 2203 struct addr_location *al, in print_location() argument 2207 if ((verbose || print_dso) && al->map) in print_location() 2208 fprintf(f, "%s@", al->map->dso->long_name); in print_location() 2210 if ((verbose || print_sym) && al->sym) in print_location() 2211 fprintf(f, "%s+0x%" PRIx64, al->sym->name, in print_location() 2212 al->addr - al->sym->start); in print_location() 2213 else if (al->map) in print_location() 2214 fprintf(f, "0x%" PRIx64, al->addr); in print_location() 2226 struct addr_location al; in trace__pgfault() local 2245 sample->ip, &al); in trace__pgfault() [all …]
|
D | builtin-timechart.c | 475 struct addr_location al; in cat_backtrace() local 492 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { in cat_backtrace() 532 thread__find_addr_location(al.thread, cpumode, in cat_backtrace() 542 addr_location__put(&al); in cat_backtrace()
|
D | builtin-kmem.c | 368 struct addr_location al; in find_callsite() local 377 al.thread = machine__findnew_thread(machine, sample->pid, sample->tid); in find_callsite() 378 sample__resolve_callchain(sample, NULL, evsel, &al, 16); in find_callsite()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | al,alpine.txt | 7 compatible: must contain "al,alpine" 13 compatible = "al,alpine"; 21 enable-method: must be "al,alpine-smp" to allow smp [1] 28 enable-method = "al,alpine-smp"; 62 - compatible : Should contain "al,alpine-cpu-resume". 68 compatible = "al,alpine-cpu-resume"; 78 - compatible : Should contain "al,alpine-sysfabric-service" and "syscon". 84 compatible = "al,alpine-sysfabric-service", "syscon"; 88 [1] arm/cpu-enable-method/al,alpine-smp
|
/linux-4.4.14/drivers/char/ |
D | toshiba.c | 137 unsigned char al; in tosh_emulate_fan() local 149 al = inb(0xe5); in tosh_emulate_fan() 152 regs->ecx = (unsigned int) (al & 0x01); in tosh_emulate_fan() 158 al = inb(0xe5); in tosh_emulate_fan() 160 outb (al | 0x01, 0xe5); in tosh_emulate_fan() 169 al = inb(0xe5); in tosh_emulate_fan() 171 outb(al & 0xfe, 0xe5); in tosh_emulate_fan() 185 al = inb(0xe5); in tosh_emulate_fan() 188 regs->ecx = al & 0x01; in tosh_emulate_fan() 194 al = inb(0xe5); in tosh_emulate_fan() [all …]
|
/linux-4.4.14/tools/perf/tests/ |
D | code-reading.c | 180 struct addr_location al; in read_object_code() local 189 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, addr, &al); in read_object_code() 190 if (!al.map || !al.map->dso) { in read_object_code() 195 pr_debug("File is: %s\n", al.map->dso->long_name); in read_object_code() 197 if (al.map->dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS && in read_object_code() 198 !dso__is_kcore(al.map->dso)) { in read_object_code() 203 pr_debug("On file address is: %#"PRIx64"\n", al.addr); in read_object_code() 209 if (addr + len > al.map->end) in read_object_code() 210 len = al.map->end - addr; in read_object_code() 213 ret_len = dso__data_read_offset(al.map->dso, thread->mg->machine, in read_object_code() [all …]
|
D | hists_link.c | 65 struct addr_location al; in add_hist_entries() local 88 if (perf_event__preprocess_sample(&event, machine, &al, in add_hist_entries() 92 he = __hists__add_entry(hists, &al, NULL, in add_hist_entries() 95 addr_location__put(&al); in add_hist_entries() 99 fake_common_samples[k].thread = al.thread; in add_hist_entries() 100 fake_common_samples[k].map = al.map; in add_hist_entries() 101 fake_common_samples[k].sym = al.sym; in add_hist_entries() 114 if (perf_event__preprocess_sample(&event, machine, &al, in add_hist_entries() 118 he = __hists__add_entry(hists, &al, NULL, in add_hist_entries() 121 addr_location__put(&al); in add_hist_entries() [all …]
|
D | hists_filter.c | 50 struct addr_location al; in add_hist_entries() local 83 if (perf_event__preprocess_sample(&event, machine, &al, in add_hist_entries() 87 al.socket = fake_samples[i].socket; in add_hist_entries() 88 if (hist_entry_iter__add(&iter, &al, in add_hist_entries() 90 addr_location__put(&al); in add_hist_entries() 94 fake_samples[i].thread = al.thread; in add_hist_entries() 95 fake_samples[i].map = al.map; in add_hist_entries() 96 fake_samples[i].sym = al.sym; in add_hist_entries()
|
D | mmap-thread-lookup.c | 183 struct addr_location al; in mmap_events() local 192 (unsigned long) (td->map + 1), &al); in mmap_events() 196 if (!al.map) { in mmap_events() 202 pr_debug("map %p, addr %" PRIx64 "\n", al.map, al.map->start); in mmap_events()
|
D | hists_cumulate.c | 78 struct addr_location al; in add_hist_entries() local 105 if (perf_event__preprocess_sample(&event, machine, &al, in add_hist_entries() 109 if (hist_entry_iter__add(&iter, &al, PERF_MAX_STACK_DEPTH, in add_hist_entries() 111 addr_location__put(&al); in add_hist_entries() 115 fake_samples[i].thread = al.thread; in add_hist_entries() 116 fake_samples[i].map = al.map; in add_hist_entries() 117 fake_samples[i].sym = al.sym; in add_hist_entries()
|
D | hists_output.c | 48 struct addr_location al; in add_hist_entries() local 71 if (perf_event__preprocess_sample(&event, machine, &al, in add_hist_entries() 75 if (hist_entry_iter__add(&iter, &al, PERF_MAX_STACK_DEPTH, in add_hist_entries() 77 addr_location__put(&al); in add_hist_entries() 81 fake_samples[i].thread = al.thread; in add_hist_entries() 82 fake_samples[i].map = al.map; in add_hist_entries() 83 fake_samples[i].sym = al.sym; in add_hist_entries()
|
/linux-4.4.14/arch/x86/lib/ |
D | cmpxchg16b_emu.S | 25 # Emulate 'cmpxchg16b %gs:(%rsi)' except we return the result in %al not 26 # via the ZF. Caller will access %al to get result. 45 mov $1, %al 50 xor %al,%al
|
D | memset_64.S | 60 movb %sil,%al 120 movb %al,(%rdi)
|
D | copy_user_64.S | 117 21: movb (%rsi),%al 118 22: movb %al,(%rdi) 327 40: movb (%rsi),%al 328 41: movb %al,(%rdi)
|
D | putuser.S | 42 1: movb %al,(%_ASM_CX)
|
/linux-4.4.14/arch/sh/math-emu/ |
D | sfp-util.h | 5 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 8 __x = (al) + (bl); \ 9 (sh) = (ah) + (bh) + (__x < (al)); \ 13 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 16 __x = (al) - (bl); \ 17 (sh) = (ah) - (bh) - (__x > (al)); \
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | io-workarounds.c | 114 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ argument 120 return bus->ops->name al; \ 121 return __do_##name al; \ 124 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ argument 130 bus->ops->name al; \ 133 __do_##name al; \ 143 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) .name = iowa_##name, argument 144 #define DEF_PCI_AC_NORET(name, at, al, space, aa) .name = iowa_##name, argument
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | sfp-machine.h | 216 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 223 "%r" ((USItype)(al)), \ 230 "%r" ((USItype)(al)), \ 238 "%r" ((USItype)(al)), \ 251 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 258 "rI" ((USItype)(al)), \ 265 "rI" ((USItype)(al)), \ 272 "rI" ((USItype)(al)), \ 279 "rI" ((USItype)(al)), \ 287 "rI" ((USItype)(al)), \
|
D | io.h | 565 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) ret (*name) at; argument 566 #define DEF_PCI_AC_NORET(name, at, al, space, aa) void (*name) at; argument 576 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ argument 580 return ppc_pci_io.name al; \ 581 return __do_##name al; \ 584 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ argument 588 ppc_pci_io.name al; \ 590 __do_##name al; \
|
/linux-4.4.14/arch/sparc/math-emu/ |
D | sfp-util_32.h | 6 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 13 "%rJ" ((USItype)(al)), \ 16 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 23 "rJ" ((USItype)(al)), \
|
D | sfp-util_64.h | 14 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 24 "r" ((UDItype)(al)), \ 28 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 38 "r" ((UDItype)(al)), \
|
/linux-4.4.14/arch/s390/include/asm/ |
D | sfp-util.h | 6 #define add_ssaaaa(sh, sl, ah, al, bh, bl) ({ \ argument 8 unsigned int __sl = (al); \ 20 #define sub_ddmmss(sh, sl, ah, al, bh, bl) ({ \ argument 22 unsigned int __sl = (al); \
|
/linux-4.4.14/arch/x86/boot/ |
D | apm.c | 40 ireg.al = 0x04; in query_apm_bios() 44 ireg.al = 0x03; in query_apm_bios() 61 ireg.al = 0x00; in query_apm_bios() 66 ireg.al = 0x04; in query_apm_bios()
|
D | bioscall.S | 22 cmpb %al, 3f 24 movb %al, 3f
|
D | tty.c | 48 ireg.al = ch; in bios_putchar() 96 return oreg.al; in getchar()
|
D | video-bios.c | 37 ireg.al = mode; /* AH=0x00 Set Video Mode */ in set_bios_mode() 46 new_mode = oreg.al & 0x7f; in set_bios_mode()
|
D | video-vga.c | 51 mode = oreg.al; in vga_set_basic_mode() 267 if (oreg.al == 0x1a) { in vga_probe()
|
D | main.c | 72 boot_params.kbd_status = oreg.al; in keyboard_init()
|
D | header.S | 67 andb %al, %al
|
D | video.c | 53 boot_params.screen_info.orig_video_mode = oreg.al & 0x7f; in store_video_mode()
|
D | boot.h | 266 u8 al, ah, eax2, eax3; member
|
/linux-4.4.14/arch/s390/kernel/vdso32/ |
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)
|
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.4.14/tools/perf/arch/powerpc/util/ |
D | skip-callchain-idx.c | 240 struct addr_location al; in arch_skip_callchain_idx() local 252 MAP__FUNCTION, ip, &al); in arch_skip_callchain_idx() 254 if (al.map) in arch_skip_callchain_idx() 255 dso = al.map->dso; in arch_skip_callchain_idx() 262 rc = check_return_addr(dso, al.map->start, ip); in arch_skip_callchain_idx() 265 dso->long_name, al.sym->name, ip, rc); in arch_skip_callchain_idx()
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | atomic_lse.h | 101 ATOMIC_OP_ADD_RETURN( , al, "memory") 164 ATOMIC_OP_SUB_RETURN( , al, "memory") 242 ATOMIC64_OP_ADD_RETURN( , al, "memory") 305 ATOMIC64_OP_SUB_RETURN( , al, "memory") 379 __CMPXCHG_CASE(w, b, mb_1, al, "memory") 380 __CMPXCHG_CASE(w, h, mb_2, al, "memory") 381 __CMPXCHG_CASE(w, , mb_4, al, "memory") 382 __CMPXCHG_CASE(x, , mb_8, al, "memory") 425 __CMPXCHG_DBL(_mb, al, "memory")
|
/linux-4.4.14/fs/hpfs/ |
D | dentry.c | 40 unsigned al = len; in hpfs_compare_dentry() local 43 hpfs_adjust_length(str, &al); in hpfs_compare_dentry() 53 if (hpfs_compare_names(parent->d_sb, str, al, name->name, bl, 0)) in hpfs_compare_dentry()
|
/linux-4.4.14/arch/x86/platform/olpc/ |
D | xo1-wakeup.S | 8 movb $0x34, %al 9 outb %al, $0x70 10 movb $\value, %al 11 outb %al, $0x71
|
/linux-4.4.14/arch/x86/math-emu/ |
D | polynom_Xsig.S | 60 movb %al,OVERFLOWED 115 sbbb %al,%al 116 movb %al,OVERFLOWED /* Used in the next iteration */
|
D | wm_shrx.S | 141 setne %al 158 setne %al 183 setne %al 197 setne %al
|
D | reg_round.S | 540 orb %cl,%al
|
/linux-4.4.14/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 309 struct addr_location *al) in python_process_callchain() argument 320 if (thread__resolve_callchain(al->thread, evsel, in python_process_callchain() 385 struct addr_location *al) in python_process_tracepoint() argument 398 const char *comm = thread__comm_str(al->thread); in python_process_tracepoint() 432 callchain = python_process_callchain(sample, evsel, al); in python_process_tracepoint() 682 tuple_set_u64(t, 2, es->al->machine->db_id); in python_export_sample() 683 tuple_set_u64(t, 3, es->al->thread->db_id); in python_export_sample() 769 struct addr_location *al) in python_process_general_event() argument 818 PyString_FromString(thread__comm_str(al->thread))); in python_process_general_event() 819 if (al->map) { in python_process_general_event() [all …]
|
D | trace-event-perl.c | 364 struct addr_location *al) in perl_process_event() argument 366 perl_process_tracepoint(sample, evsel, al->thread); in perl_process_event()
|
/linux-4.4.14/fs/qnx4/ |
D | README | 3 Please send diffs and remarks to <al@alarsen.net> . 9 Anders Larsen <al@alarsen.net> (Maintainer)
|
/linux-4.4.14/net/core/ |
D | drop_monitor.c | 78 size_t al; in reset_per_cpu_data() local 84 al = sizeof(struct net_dm_alert_msg); in reset_per_cpu_data() 85 al += dm_hit_limit * sizeof(struct net_dm_drop_point); in reset_per_cpu_data() 86 al += sizeof(struct nlattr); in reset_per_cpu_data() 88 skb = genlmsg_new(al, GFP_KERNEL); in reset_per_cpu_data() 96 memset(msg, 0, al); in reset_per_cpu_data()
|
/linux-4.4.14/arch/unicore32/lib/ |
D | copy_from_user.S | 56 .macro ldr1b ptr reg cond=al abort 68 .macro str1b ptr reg cond=al abort 69 .ifnc \cond, al
|
D | copy_to_user.S | 48 .macro ldr1b ptr reg cond=al abort 65 .macro str1b ptr reg cond=al abort
|
/linux-4.4.14/arch/unicore32/include/asm/ |
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.4.14/arch/arm/boot/dts/ |
D | alpine.dtsi | 32 compatible = "al,alpine"; 38 enable-method = "al,alpine-smp"; 104 compatible = "al,alpine-cpu-resume"; 110 compatible = "al,alpine-sysfabric-service", "syscon";
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_actlog.c | 340 struct lru_cache *al = device->act_log; in drbd_al_begin_io_nonblock() local 352 available_update_slots = min(al->nr_elements - al->used, in drbd_al_begin_io_nonblock() 353 al->max_pending_changes - al->pending_changes); in drbd_al_begin_io_nonblock() 367 if (!al->pending_changes) in drbd_al_begin_io_nonblock() 611 struct al_transaction_on_disk *al = buffer; in drbd_initialize_al() local 617 memset(al, 0, 4096); in drbd_initialize_al() 618 al->magic = cpu_to_be32(DRBD_AL_MAGIC); in drbd_initialize_al() 619 al->transaction_type = cpu_to_be16(AL_TR_INITIALIZED); in drbd_initialize_al() 620 al->crc32c = cpu_to_be32(crc32c(0, al, 4096)); in drbd_initialize_al()
|
/linux-4.4.14/arch/x86/include/asm/ |
D | asm.h | 75 100: movb (%rsi),%al 76 101: movb %al,(%rdi)
|
/linux-4.4.14/crypto/ |
D | vmac.c | 190 #define poly_step(ah, al, kh, kl, mh, ml) \ argument 194 PMUL64(t3h, t3l, al, kh); \ 197 PMUL64(ah, al, al, kl); \ 199 ADD128(ah, al, t1h, t1l); \ 209 ADD128(ah, al, mh, ml); \ 210 ADD128(ah, al, z, t2h); \ 296 #define poly_step(ah, al, kh, kl, mh, ml) \ argument 297 poly_step_func(&(ah), &(al), &(kh), &(kl), &(mh), &(ml))
|
D | Kconfig | 407 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
|
/linux-4.4.14/arch/x86/realmode/rm/ |
D | wakeup_asm.S | 52 orb $X86_CR0_PE, %al 62 andb $~X86_CR0_PE, %al
|
/linux-4.4.14/include/linux/ |
D | math64.h | 157 u32 ah, al; in mul_u64_u32_shr() local 160 al = a; in mul_u64_u32_shr() 163 ret = ((u64)al * mul) >> shift; in mul_u64_u32_shr()
|
/linux-4.4.14/drivers/ata/ |
D | pata_ep93xx.c | 803 static int ep93xx_pata_softreset(struct ata_link *al, unsigned int *classes, in ep93xx_pata_softreset() argument 806 struct ata_port *ap = al->ap; in ep93xx_pata_softreset() 819 ap->ops->sff_dev_select(al->ap, 0); in ep93xx_pata_softreset() 824 if (rc && (rc != -ENODEV || sata_scr_valid(al))) { in ep93xx_pata_softreset() 825 ata_link_err(al, "SRST failed (errno=%d)\n", rc); in ep93xx_pata_softreset() 830 classes[0] = ata_sff_dev_classify(&al->device[0], devmask & (1 << 0), in ep93xx_pata_softreset() 833 classes[1] = ata_sff_dev_classify(&al->device[1], in ep93xx_pata_softreset()
|
/linux-4.4.14/drivers/net/ethernet/intel/i40e/ |
D | i40e_virtchnl_pf.c | 1583 struct i40e_virtchnl_ether_addr_list *al = in i40e_vc_add_mac_addr_msg() local 1587 u16 vsi_id = al->vsi_id; in i40e_vc_add_mac_addr_msg() 1598 for (i = 0; i < al->num_elements; i++) { in i40e_vc_add_mac_addr_msg() 1599 ret = i40e_check_vf_permission(vf, al->list[i].addr); in i40e_vc_add_mac_addr_msg() 1611 for (i = 0; i < al->num_elements; i++) { in i40e_vc_add_mac_addr_msg() 1614 f = i40e_find_mac(vsi, al->list[i].addr, true, false); in i40e_vc_add_mac_addr_msg() 1617 f = i40e_put_mac_in_vlan(vsi, al->list[i].addr, in i40e_vc_add_mac_addr_msg() 1620 f = i40e_add_filter(vsi, al->list[i].addr, -1, in i40e_vc_add_mac_addr_msg() 1654 struct i40e_virtchnl_ether_addr_list *al = in i40e_vc_del_mac_addr_msg() local 1658 u16 vsi_id = al->vsi_id; in i40e_vc_del_mac_addr_msg() [all …]
|
/linux-4.4.14/arch/arm/include/asm/ |
D | assembler.h | 123 .macro asm_trace_hardirqs_on, cond=al, save=1 387 .ifnc \cond,al 428 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f 432 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
|
/linux-4.4.14/arch/x86/kernel/ |
D | head_32.S | 364 testb $X86_CR4_PAE, %al # check if PAE is enabled 436 movb %al,%cl # save reg for future use 439 andb $0xf0,%al # mask model 440 shrb $4,%al 441 movb %al,X86_MODEL
|
/linux-4.4.14/drivers/staging/media/lirc/ |
D | lirc_bt829.c | 42 static void seems_wr_byte(unsigned char al); 45 static unsigned int read_index(unsigned char al);
|
/linux-4.4.14/drivers/thermal/ |
D | tegra_soctherm.c | 207 s64 r, al; in div64_s64_precise() local 210 al = a << 16; in div64_s64_precise() 212 r = div64_s64(al * 2 + 1, 2 * b); in div64_s64_precise()
|
/linux-4.4.14/drivers/mtd/nand/ |
D | cafe_nand.c | 560 u8 ah, al, bh, bl, ch, cl; in gf4096_mul() local 563 al = a & 0x3f; in gf4096_mul() 567 ch = gf64_mul(ah ^ al, bh ^ bl) ^ gf64_mul(al, bl); in gf4096_mul() 568 cl = gf64_mul(gf64_mul(ah, bh), 0x21) ^ gf64_mul(al, bl); in gf4096_mul()
|
D | fsl_elbc_nand.c | 626 unsigned int al; in fsl_elbc_chip_init_tail() local 629 al = 0; in fsl_elbc_chip_init_tail() 631 al++; in fsl_elbc_chip_init_tail() 633 al++; in fsl_elbc_chip_init_tail() 635 priv->fmr |= al << FMR_AL_SHIFT; in fsl_elbc_chip_init_tail()
|
/linux-4.4.14/fs/ntfs/ |
D | attrib.c | 714 u8 *al = al_start; in load_attribute_list() local 715 u8 *al_end = al + initialized_size; in load_attribute_list() 725 if (!vol || !runlist || !al || size <= 0 || initialized_size < 0 || in load_attribute_list() 729 memset(al, 0, size); in load_attribute_list() 767 if (al + block_size >= al_end) in load_attribute_list() 769 memcpy(al, bh->b_data, block_size); in load_attribute_list() 771 al += block_size; in load_attribute_list() 783 if (al < al_end) { in load_attribute_list() 792 memcpy(al, bh->b_data, al_end - al); in load_attribute_list()
|
/linux-4.4.14/drivers/usb/misc/sisusbvga/ |
D | sisusb_init.c | 739 unsigned short al, unsigned short dh) in SiS_WriteDAC() argument 747 d3 = al; in SiS_WriteDAC() 751 d2 = al; in SiS_WriteDAC() 755 d1 = al; in SiS_WriteDAC()
|
/linux-4.4.14/Documentation/ |
D | basic_profiling.txt | 4 Thanks to John Levon, Dave Hansen, et al. for help writing this.
|
D | kmemcheck.txt | 507 ffffffff8104edea: test $0x2,%al 510 ffffffff8104edf0: test $0x1,%al
|
D | edac.txt | 805 Doug Thompson, Dave Jiang, Dave Peterson et al,
|
/linux-4.4.14/arch/x86/kvm/ |
D | emulate.c | 335 FOP1E(op##b, al) \ 364 FOP2E(op##b, al, dl) \ 382 FOP2E(op##b, al, cl) \ 391 FOP2E(op##b, dl, al) \ 3273 u8 al, old_al; in em_das() local 3277 al = ctxt->dst.val; in em_das() 3279 old_al = al; in em_das() 3283 if ((al & 0x0f) > 9 || af) { in em_das() 3284 al -= 6; in em_das() 3285 cf = old_cf | (al >= 250); in em_das() [all …]
|
/linux-4.4.14/arch/x86/entry/ |
D | entry_32.S | 257 movb PT_CS(%esp), %al 369 movb PT_CS(%esp), %al 443 mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */
|
/linux-4.4.14/mm/ |
D | slub.c | 5459 struct saved_alias *al; in sysfs_slab_alias() local 5469 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL); in sysfs_slab_alias() 5470 if (!al) in sysfs_slab_alias() 5473 al->s = s; in sysfs_slab_alias() 5474 al->name = name; in sysfs_slab_alias() 5475 al->next = alias_list; in sysfs_slab_alias() 5476 alias_list = al; in sysfs_slab_alias() 5504 struct saved_alias *al = alias_list; in slab_sysfs_init() local 5507 err = sysfs_slab_alias(al->s, al->name); in slab_sysfs_init() 5510 al->name); in slab_sysfs_init() [all …]
|
/linux-4.4.14/arch/x86/crypto/ |
D | blowfish-x86_64-asm_64.S | 49 #define RX0bl %al
|
D | aes-x86_64-asm_64.S | 25 #define R1L %al
|
D | twofish-x86_64-asm_64-3way.S | 54 #define RAB0bl %al
|
D | aes-i586-asm_32.S | 63 #define eaxl al
|
D | twofish-x86_64-asm_64.S | 44 #define R0B %al
|
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)
|
D | twofish-i586-asm_32.S | 49 #define R0B %al
|
D | cast6-avx-x86_64-asm_64.S | 85 #define RGI3bl %al
|
D | twofish-avx-x86_64-asm_64.S | 89 #define RGI3bl %al
|
D | camellia-x86_64-asm_64.S | 67 #define RAB0bl %al
|
D | cast5-avx-x86_64-asm_64.S | 85 #define RGI3bl %al
|
D | des3_ede-asm_64.S | 58 #define RW0bl %al
|
D | aesni-intel_asm.S | 1407 mov %al, (%arg2, %r11, 1) 1671 mov %al, (%arg2, %r11, 1)
|
/linux-4.4.14/drivers/pinctrl/bcm/ |
D | pinctrl-cygnus-mux.c | 480 #define CYGNUS_PIN_GROUP(group_name, off, sh, al) \ argument 488 .alt = al, \
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_dpm.c | 183 u32 k, a, ah, al; in amdgpu_calculate_at() local 194 al = a - ah; in amdgpu_calculate_at() 197 *tl = t + al; in amdgpu_calculate_at()
|
/linux-4.4.14/drivers/staging/xgifb/ |
D | vb_setmode.c | 749 unsigned short temp, ah, al, temp2, i, DisplayUnit; in XGI_SetCRT1Offset() local 814 al = DisplayUnit & 0x00ff; in XGI_SetCRT1Offset() 815 if (al == 0) in XGI_SetCRT1Offset() 1080 unsigned short al, in XGI_WriteDAC() argument 1087 bl = al; in XGI_WriteDAC() 1103 unsigned short data, data2, i, k, m, n, o, si, di, bx, dl, al, ah, dh; in XGI_LoadDAC() local 1144 al = table[bx]; in XGI_LoadDAC() 1146 XGI_WriteDAC(dl, ah, al, dh, pVBInfo); in XGI_LoadDAC() 1154 al = table[si]; in XGI_LoadDAC() 1156 XGI_WriteDAC(dl, ah, al, dh, pVBInfo); in XGI_LoadDAC()
|
/linux-4.4.14/Documentation/hwmon/ |
D | ds1621 | 63 readings. Be sure to have a high vs. low temperature limit gap of al least
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
D | r600_dpm.c | 220 u32 k, a, ah, al; in r600_calculate_at() local 231 al = a - ah; in r600_calculate_at() 234 *tl = t + al; in r600_calculate_at()
|
/linux-4.4.14/drivers/net/wireless/ath/ath9k/ |
D | xmit.c | 945 u16 aggr_limit = 0, al = 0, bpad = 0, in ath_tx_form_aggr() local 962 if (aggr_limit < al + bpad + al_delta || in ath_tx_form_aggr() 973 al += bpad + al_delta; in ath_tx_form_aggr() 1009 al = get_frame_info(bf->bf_mpdu)->framelen; in ath_tx_form_aggr() 1015 *aggr_len = al; in ath_tx_form_aggr()
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | vendor-prefixes.txt | 14 al Annapurna Labs
|
/linux-4.4.14/drivers/video/fbdev/sis/ |
D | init.c | 2859 unsigned short dl, unsigned short ah, unsigned short al, unsigned short dh) in SiS_WriteDAC() argument 2864 case 0: d1 = dh; d2 = ah; d3 = al; break; in SiS_WriteDAC() 2865 case 1: d1 = ah; d2 = al; d3 = dh; break; in SiS_WriteDAC() 2866 default: d1 = al; d2 = dh; d3 = ah; in SiS_WriteDAC()
|
/linux-4.4.14/Documentation/filesystems/ |
D | coda.txt | 194 22.. SSeerrvviicciinngg CCooddaa ffiilleessyysstteemm ccaallllss 377 44.. TThhee iinntteerrffaaccee aatt tthhee ccaallll lleevveell 1398 44..2288.. ssiiggnnaall 1426 55.. TThhee mmiinniiccaacchhee aanndd ddoowwnnccaallllss 1595 66.. IInniittiiaalliizzaattiioonn aanndd cclleeaannuupp
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-script-python.txt | 385 # ls -al kernel-source/tools/perf/scripts/python 387 root@tropicana:/home/trz/src/tip# ls -al tools/perf/scripts/python
|
/linux-4.4.14/kernel/rcu/ |
D | tree.c | 3956 bool al = true; in rcu_cpu_has_callbacks() local 3967 al = false; in rcu_cpu_has_callbacks() 3972 *all_lazy = al; in rcu_cpu_has_callbacks()
|
/linux-4.4.14/lib/ |
D | Kconfig | 171 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-lmcx-defs.h | 2168 uint64_t al:2; member 2178 uint64_t al:2;
|
/linux-4.4.14/drivers/bus/ |
D | arm-ccn.c | 519 static CCN_CMP_MASK_ATTR_RO(al);
|
/linux-4.4.14/arch/arm64/ |
D | Kconfig | 688 copy_to_user et al) memory access to fail with a permission fault.
|
/linux-4.4.14/Documentation/RCU/ |
D | RTFP.txt | 34 In 1987, Rashid et al. described lazy TLB-flush [RichardRashid87a]. 83 Also in 1995, Pu et al. [Pu95a] applied a technique similar to that of Pugh's 2297 , school = "Ecole Polytechnique de Montr\'{e}al"
|
/linux-4.4.14/Documentation/arm64/ |
D | arm-acpi.txt | 501 Al Stone <al.stone@linaro.org>
|
/linux-4.4.14/tools/power/cpupower/po/ |
D | it.po | 618 " postponendo l'unità di misura al valore senza nessuno spazio fra loro\n"
|
/linux-4.4.14/Documentation/block/ |
D | biodoc.txt | 1177 et al - Feb-March 2001 (many of the initial thoughts that led to bio were
|
/linux-4.4.14/Documentation/scsi/ |
D | ChangeLog.1992-1997 | 89 * scsi.c/h, hosts.c/h et al reindented to increase readability
|
/linux-4.4.14/ |
D | CREDITS | 2731 D: part that remains is the GFP_KERNEL et al #defines. :)
|
D | MAINTAINERS | 8738 M: Anders Larsen <al@alarsen.net>
|