| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | event.c | 451 struct addr_location al; in perf_event__fprintf_text_poke() local 453 al.map = maps__find(&machine->kmaps, tp->addr); in perf_event__fprintf_text_poke() 454 if (al.map && map__load(al.map) >= 0) { in perf_event__fprintf_text_poke() 455 al.addr = al.map->map_ip(al.map, tp->addr); in perf_event__fprintf_text_poke() 456 al.sym = map__find_symbol(al.map, al.addr); in perf_event__fprintf_text_poke() 457 if (al.sym) in perf_event__fprintf_text_poke() 458 ret += symbol__fprintf_symname_offs(al.sym, &al, fp); in perf_event__fprintf_text_poke() 534 struct addr_location *al) in thread__find_map() argument 540 al->maps = maps; in thread__find_map() 541 al->thread = thread; in thread__find_map() [all …]
|
| H A D | unwind-libdw.c | 43 static int __report_module(struct addr_location *al, u64 ip, in __report_module() argument 49 * Some callers will use al->sym, so we can't just use the in __report_module() 52 thread__find_symbol(ui->thread, PERF_RECORD_MISC_USER, ip, al); in __report_module() 54 if (al->map) in __report_module() 55 dso = al->map->dso; in __report_module() 65 if (s != al->map->start - al->map->pgoff) in __report_module() 71 al->map->start - al->map->pgoff, false); in __report_module() 77 al->map->start - al->map->pgoff, false); in __report_module() 92 struct addr_location al; in report_module() local 94 return __report_module(&al, ip, ui); in report_module() [all …]
|
| H A D | db-export.c | 176 static int db_ids_from_al(struct db_export *dbe, struct addr_location *al, in db_ids_from_al() argument 181 if (al->map) { in db_ids_from_al() 182 struct dso *dso = al->map->dso; in db_ids_from_al() 184 err = db_export__dso(dbe, dso, al->maps->machine); in db_ids_from_al() 189 if (!al->sym) { in db_ids_from_al() 190 al->sym = symbol__new(al->addr, 0, 0, 0, "unknown"); in db_ids_from_al() 191 if (al->sym) in db_ids_from_al() 192 dso__insert_symbol(dso, al->sym); in db_ids_from_al() 195 if (al->sym) { in db_ids_from_al() 196 u64 *db_id = symbol__priv(al->sym); in db_ids_from_al() [all …]
|
| H A D | annotate.c | 1051 struct annotation_line *al = notes->offsets[offset]; in annotation__count_and_fill() local 1053 if (al && al->ipc == 0.0) { in annotation__count_and_fill() 1054 al->ipc = ipc; in annotation__count_and_fill() 1085 struct annotation_line *al; in annotation__compute_ipc() local 1089 al = notes->offsets[offset]; in annotation__compute_ipc() 1090 if (al && ch->num_aggr) { in annotation__compute_ipc() 1091 al->cycles = ch->cycles_aggr / ch->num_aggr; in annotation__compute_ipc() 1092 al->cycles_max = ch->cycles_max; in annotation__compute_ipc() 1093 al->cycles_min = ch->cycles_min; in annotation__compute_ipc() 1162 static void annotation_line__init(struct annotation_line *al, in annotation_line__init() argument [all …]
|
| H A D | symbol_fprintf.c | 20 const struct addr_location *al, in __symbol__fprintf_symname_offs() argument 29 if (al && print_offsets) { in __symbol__fprintf_symname_offs() 30 if (al->addr < sym->end) in __symbol__fprintf_symname_offs() 31 offset = al->addr - sym->start; in __symbol__fprintf_symname_offs() 33 offset = al->addr - al->map->start - sym->start; in __symbol__fprintf_symname_offs() 37 } else if (al && unknown_as_addr) in __symbol__fprintf_symname_offs() 38 return fprintf(fp, "[%#" PRIx64 "]", al->addr); in __symbol__fprintf_symname_offs() 44 const struct addr_location *al, in symbol__fprintf_symname_offs() argument 47 return __symbol__fprintf_symname_offs(sym, al, false, true, fp); in symbol__fprintf_symname_offs() 51 const struct addr_location *al, in __symbol__fprintf_symname() argument [all …]
|
| H A D | hist.c | 581 struct addr_location *al, in hists__findnew_entry() argument 655 he_stat__add_cpumode_period(&he->stat, al->cpumode, period); in hists__findnew_entry() 657 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period); in hists__findnew_entry() 689 struct addr_location *al, in __hists__add_entry() argument 698 struct namespaces *ns = thread__namespaces(al->thread); in __hists__add_entry() 700 .thread = al->thread, in __hists__add_entry() 701 .comm = thread__comm(al->thread), in __hists__add_entry() 708 .maps = al->maps, in __hists__add_entry() 709 .map = al->map, in __hists__add_entry() 710 .sym = al->sym, in __hists__add_entry() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/x86emu/x86emu/ |
| H A D | prim_asm.h | 104 parm [edi] [al] \ 113 "adc al,bl" \ 116 parm [edi] [al] [bl] \ 117 value [al] \ 118 modify exact [al bl]; 149 "add al,bl" \ 152 parm [edi] [al] [bl] \ 153 value [al] \ 154 modify exact [al bl]; 185 "and al,bl" \ [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/ui/browsers/ |
| H A D | annotate.c | 49 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in disasm_line__filter() local 50 return annotation_line__filter(al, notes); in disasm_line__filter() 100 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in annotate_browser__write() local 122 annotation_line__write(al, notes, &ops, ab->opts); in annotate_browser__write() 125 ab->selection = al; in annotate_browser__write() 130 struct disasm_line *pos = list_prev_entry(cursor, al.node); in is_fused() 194 from = cursor->al.idx_asm; in annotate_browser__draw_current_jump() 197 from = (u64)cursor->al.idx; in annotate_browser__draw_current_jump() 245 struct annotation_line *al) in disasm_rb_tree__insert() argument 256 if (disasm__cmp(al, l, browser->opts->percent_type) < 0) in disasm_rb_tree__insert() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/arm/cpu-enable-method/ |
| H A 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". 26 - compatible : Should contain "al,alpine-cpu-resume". 36 - compatible : Should contain "al,alpine-sysfabric-service" and "syscon". 45 enable-method = "al,alpine-smp"; 73 compatible = "al,alpine-cpu-resume"; [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/lib/ |
| H A D | string_32.c | 23 "testb %%al,%%al\n\t" in strcpy() 40 "testb %%al,%%al\n\t" in strncpy() 61 "testb %%al,%%al\n\t" in strcat() 82 "testb %%al,%%al\n\t" in strncat() 102 "testb %%al,%%al\n\t" in strcmp() 107 "orb $1,%%al\n" in strcmp() 127 "testb %%al,%%al\n\t" in strncmp() 132 "orb $1,%%al\n" in strncmp() 147 asm volatile("movb %%al,%%ah\n" in strchr() 149 "cmpb %%ah,%%al\n\t" in strchr() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/hwmon/ |
| H A D | smsc47b397.rst | 60 OUT DX,AL 62 IN AL,DX 64 AL contains the data in hex, the temperature in Celsius is the decimal 67 Ex: If AL contains 0x2A, the temperature is 42 degrees C. 151 OUT DX,AL 154 MOV AL,20H 155 OUT DX,AL 158 IN AL,DX 162 OUT DX,AL 179 OUT DX,AL [all …]
|
| /OK3568_Linux_fs/u-boot/arch/arm/lib/ |
| H A D | ashrdi3.S | 11 #define al r1 macro 14 #define al r0 macro 24 movmi al, al, lsr r2 25 movpl al, ah, asr r3 26 ARM( orrmi al, al, ah, lsl ip ) 28 THUMB( orrmi al, al, r3 )
|
| H A D | lshrdi3.S | 11 #define al r1 macro 14 #define al r0 macro 24 movmi al, al, lsr r2 25 movpl al, ah, lsr r3 26 ARM( orrmi al, al, ah, lsl ip ) 28 THUMB( orrmi al, al, r3 )
|
| H A D | ashldi3.S | 11 #define al r1 macro 14 #define al r0 macro 25 movpl ah, al, lsl r3 26 ARM( orrmi ah, ah, al, lsr ip ) 27 THUMB( lsrmi r3, al, ip ) 29 mov al, al, lsl r2
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/gd/gd/ |
| H A D | 0001-Fix-deprecared-function-prototypes.patch | 49 -static unsigned int inxsearch(nnq, al,b,g,r) 51 -register int al, b, g, r; 52 +static unsigned int inxsearch(nn_quant *nnq, int al, int b, int g, int r) 56 @@ -306,9 +297,7 @@ register int al, b, g, r; 60 -static int contest(nnq, al,b,g,r) 62 -register int al,b,g,r; 63 +static int contest(nn_quant *nnq, int al, int b, int g, int r) 67 @@ -362,9 +351,7 @@ register int al,b,g,r; 71 -static void altersingle(nnq, alpha,i,al,b,g,r) 73 -register int alpha,i,al,b,g,r; [all …]
|
| /OK3568_Linux_fs/u-boot/include/dt-bindings/input/ |
| H A D | linux-event-codes.h | 70 * AL - Application Launch Button 194 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */ 215 #define KEY_HELP 138 /* AL Integrated Help Center */ 217 #define KEY_CALC 140 /* AL Calculator */ 221 #define KEY_FILE 144 /* AL Local Machine Browser */ 227 #define KEY_WWW 150 /* AL Internet Browser */ 229 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */ 250 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */ 280 #define KEY_DASHBOARD 204 /* AL Dashboard */ 295 #define KEY_FINANCE 219 /* AL Checkbook/Finance */ [all …]
|
| /OK3568_Linux_fs/kernel/include/dt-bindings/input/ |
| H A D | rk-input.h | 49 * AL - Application Launch Button 173 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */ 194 #define KEY_HELP 138 /* AL Integrated Help Center */ 196 #define KEY_CALC 140 /* AL Calculator */ 200 #define KEY_FILE 144 /* AL Local Machine Browser */ 206 #define KEY_WWW 150 /* AL Internet Browser */ 208 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */ 228 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */ 258 #define KEY_DASHBOARD 204 /* AL Dashboard */ 273 #define KEY_FINANCE 219 /* AL Checkbook/Finance */ [all …]
|
| H A D | linux-event-codes.h | 71 * AL - Application Launch Button 195 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */ 216 #define KEY_HELP 138 /* AL Integrated Help Center */ 218 #define KEY_CALC 140 /* AL Calculator */ 222 #define KEY_FILE 144 /* AL Local Machine Browser */ 228 #define KEY_WWW 150 /* AL Internet Browser */ 230 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */ 251 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */ 297 #define KEY_FINANCE 219 /* AL Checkbook/Finance */ 429 #define KEY_INFO 0x166 /* AL OEM Features/Tips/Tutorial */ [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/lib/ |
| H A 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 )
|
| H A 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 )
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/node/ |
| H A D | variant_dynamic.hpp | 34 template <typename Al> 35 inline variant_internal_node(Al const& al) in variant_internal_node() 36 : elements(al) in variant_internal_node() 54 template <typename Al> 55 inline variant_leaf(Al const& al) in variant_leaf() 56 : elements(al) in variant_leaf() 178 typedef boost::container::allocator_traits<AllocNode> Al; in apply() typedef 179 typedef typename Al::pointer P; in apply() 181 P p = Al::allocate(alloc_node, 1); in apply() 188 …Al::construct(alloc_node, boost::pointer_traits<P>::to_address(p), Node(alloc_node)); // implicit … in apply() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/ |
| H A D | input-event-codes.h | 71 * AL - Application Launch Button 195 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */ 216 #define KEY_HELP 138 /* AL Integrated Help Center */ 218 #define KEY_CALC 140 /* AL Calculator */ 222 #define KEY_FILE 144 /* AL Local Machine Browser */ 228 #define KEY_WWW 150 /* AL Internet Browser */ 230 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */ 251 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */ 281 #define KEY_DASHBOARD 204 /* AL Dashboard */ 296 #define KEY_FINANCE 219 /* AL Checkbook/Finance */ [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/ |
| H A D | input-event-codes.h | 71 * AL - Application Launch Button 195 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */ 216 #define KEY_HELP 138 /* AL Integrated Help Center */ 218 #define KEY_CALC 140 /* AL Calculator */ 222 #define KEY_FILE 144 /* AL Local Machine Browser */ 228 #define KEY_WWW 150 /* AL Internet Browser */ 230 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */ 251 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */ 281 #define KEY_DASHBOARD 204 /* AL Dashboard */ 296 #define KEY_FINANCE 219 /* AL Checkbook/Finance */ [all …]
|
| /OK3568_Linux_fs/kernel/net/ |
| H A D | compat.c | 334 #define AL(x) ((x) * sizeof(u32)) macro 336 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3), 337 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6), 338 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3), 339 AL(4), AL(5), AL(4) 341 #undef AL
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | input-event-codes.h | 71 * AL - Application Launch Button 195 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */ 216 #define KEY_HELP 138 /* AL Integrated Help Center */ 218 #define KEY_CALC 140 /* AL Calculator */ 222 #define KEY_FILE 144 /* AL Local Machine Browser */ 228 #define KEY_WWW 150 /* AL Internet Browser */ 230 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */ 251 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */ 297 #define KEY_FINANCE 219 /* AL Checkbook/Finance */ 429 #define KEY_INFO 0x166 /* AL OEM Features/Tips/Tutorial */ [all …]
|