/arch/x86/mm/ |
D | pat_rbtree.c | 104 struct memtype *match; in memtype_rb_exact_match() local 106 match = memtype_rb_lowest_match(root, start, end); in memtype_rb_exact_match() 107 while (match != NULL && match->start < end) { in memtype_rb_exact_match() 110 if (match->start == start && match->end == end) in memtype_rb_exact_match() 111 return match; in memtype_rb_exact_match() 113 node = rb_next(&match->rb); in memtype_rb_exact_match() 115 match = container_of(node, struct memtype, rb); in memtype_rb_exact_match() 117 match = NULL; in memtype_rb_exact_match() 128 struct memtype *match; in memtype_rb_check_conflict() local 131 match = memtype_rb_lowest_match(&memtype_rbroot, start, end); in memtype_rb_check_conflict() [all …]
|
/arch/sh/mm/ |
D | tlbflush_64.c | 33 unsigned long long match, pteh=0, lpage; in local_flush_tlb_one() local 40 match = (asid << PTEH_ASID_SHIFT) | PTEH_VALID; in local_flush_tlb_one() 41 match |= lpage; in local_flush_tlb_one() 48 if (pteh == match) { in local_flush_tlb_one() 59 if (pteh == match) { in local_flush_tlb_one() 83 unsigned long long match, pteh=0, pteh_epn, pteh_low; in local_flush_tlb_range() local 97 match = (cpu_asid(cpu, mm) << PTEH_ASID_SHIFT) | PTEH_VALID; in local_flush_tlb_range() 108 if (pteh_low == match && pteh_epn >= start && pteh_epn <= end) in local_flush_tlb_range() 121 if (pteh_low == match && pteh_epn >= start && pteh_epn <= end) in local_flush_tlb_range()
|
/arch/arm64/kernel/ |
D | early_printk.c | 117 const struct earlycon_match *match = earlycon_match; in setup_early_printk() local 125 while (match->name) { in setup_early_printk() 126 size_t len = strlen(match->name); in setup_early_printk() 127 if (!strncmp(buf, match->name, len)) { in setup_early_printk() 131 match++; in setup_early_printk() 133 if (!match->name) { in setup_early_printk() 151 printch = match->printch; in setup_early_printk()
|
/arch/x86/tools/ |
D | gen-insn-attr-x86.awk | 239 if (match(i, imm_expr) == 1) { 248 } else if (match(i, modrm_expr)) 287 if (match($i, opnd_expr)) { 292 if (match($i, ext_expr)) 294 if (match($i, sep_expr)) 300 if (match(opcode, group_expr)) { 308 if (match(ext, force64_expr)) 312 if (match(opcode, rex_expr)) 316 if (match(opcode, fpu_expr)) 320 if (match(ext, vexonly_expr)) [all …]
|
D | distill.awk | 29 if (match(prev_mnemonic, bad_expr)) 32 if (match(prev_hex, fwait_expr) && prev_mnemonic != "fwait") {
|
D | chkobjdump.awk | 14 if (match($(i), "^[0-9]")) {
|
/arch/arm/mach-mvebu/ |
D | system-controller.c | 95 const struct of_device_id *match = in mvebu_system_controller_init() local 97 BUG_ON(!match); in mvebu_system_controller_init() 99 mvebu_sc = (struct mvebu_system_controller *)match->data; in mvebu_system_controller_init()
|
/arch/s390/include/asm/ |
D | ccwdev.h | 44 const struct ccw_device_id *match) in ccw_device_id_match() argument 50 && (id->cu_type != match->cu_type)) in ccw_device_id_match() 54 && (id->cu_model != match->cu_model)) in ccw_device_id_match() 58 && (id->dev_type != match->dev_type)) in ccw_device_id_match() 62 && (id->dev_model != match->dev_model)) in ccw_device_id_match()
|
/arch/alpha/lib/ |
D | ev67-strrchr.S | 39 mov zero, t6 # E : t6 is last match aligned addr 42 mov zero, t8 # E : t8 is last match byte compare mask 67 cmovne t3, v0, t6 # E : save previous comparisons match 83 negq t1, t4 # E : isolate first null byte match 89 cmovne t3, t3, t8 # E : save it, if match found Latency=2, extra map slot 99 cmoveq t8, 0x3f, t2 # E : Compensate for case when no match is seen
|
D | strrchr.S | 22 mov zero, t6 # .. e1 : t6 is last match aligned addr 24 mov zero, t8 # .. e1 : t8 is last match byte compare mask 45 cmovne t3, v0, t6 # .. e1 : save previous comparisons match 55 negq t1, t4 # e0 : isolate first null byte match 61 cmovne t3, t3, t8 # .. e1 : save it, if match found
|
D | ev67-strchr.S | 55 or t2, t3, t0 # E : bits set iff char match or zero match 58 cttz t0, a2 # U0 : speculative (in case we get a match) 75 cttz t3, a2 # U0 : speculative (in case we get a match)
|
/arch/ia64/scripts/ |
D | unwcheck.py | 40 m = start_pattern.match(line) 51 m = rlen_pattern.match(line)
|
/arch/mips/sgi-ip22/ |
D | ip22-gio.c | 40 const struct gio_device_id *gio_match_device(const struct gio_device_id *match, in gio_match_device() argument 45 for (ids = match; ids->id != 0xff; ids++) in gio_match_device() 117 const struct gio_device_id *match; in gio_device_probe() local 127 match = gio_match_device(drv->id_table, gio_dev); in gio_device_probe() 128 if (match) in gio_device_probe() 129 error = drv->probe(gio_dev, match); in gio_device_probe() 381 .match = gio_bus_match,
|
/arch/x86/include/asm/ |
D | cpu_device_id.h | 11 extern const struct x86_cpu_id *x86_match_cpu(const struct x86_cpu_id *match);
|
/arch/x86/kernel/cpu/ |
D | match.c | 31 const struct x86_cpu_id *x86_match_cpu(const struct x86_cpu_id *match) in x86_match_cpu() argument 36 for (m = match; m->vendor | m->family | m->model | m->feature; m++) { in x86_match_cpu()
|
/arch/mips/kernel/ |
D | mips-mt-fpaff.c | 49 bool match; in check_same_owner() local 53 match = (uid_eq(cred->euid, pcred->euid) || in check_same_owner() 56 return match; in check_same_owner()
|
/arch/sparc/kernel/ |
D | of_device_32.c | 141 .match = of_bus_pci_match, 150 .match = of_bus_sbus_match, 159 .match = of_bus_ambapp_match, 168 .match = NULL, 180 if (!of_busses[i].match || of_busses[i].match(np)) in of_match_bus()
|
D | prom_common.c | 104 int of_find_in_proplist(const char *list, const char *match, int len) in of_find_in_proplist() argument 109 if (!strcmp(list, match)) in of_find_in_proplist()
|
D | vio.c | 33 int match = 1; in vio_match_device() local 35 match &= !strcmp(matches->type, type); in vio_match_device() 38 match &= len && in vio_match_device() 41 if (match) in vio_match_device() 117 .match = vio_bus_match,
|
D | of_device_64.c | 186 .match = of_bus_pci_match, 195 .match = of_bus_simba_match, 204 .match = of_bus_sbus_match, 213 .match = of_bus_fhc_match, 222 .match = NULL, 234 if (!of_busses[i].match || of_busses[i].match(np)) in of_match_bus()
|
D | of_device_common.h | 28 int (*match)(struct device_node *parent); member
|
/arch/powerpc/platforms/83xx/ |
D | suspend.c | 326 const struct of_device_id *match; in pmc_probe() local 332 match = of_match_device(pmc_match, &ofdev->dev); in pmc_probe() 333 if (!match) in pmc_probe() 336 type = match->data; in pmc_probe()
|
/arch/hexagon/kernel/ |
D | time.c | 66 u32 match; /* Match value */ member 95 iowrite32(delta, &rtos_timer->match); in set_next_event()
|
/arch/avr32/boards/favr-32/ |
D | Kconfig | 10 Specify the target rate the internal DAC should try to match. This
|
/arch/tile/kernel/ |
D | backtrace.c | 72 bool match; in find_matching_insn() local 81 match = true; in find_matching_insn() 84 match = false; in find_matching_insn() 89 if (match) in find_matching_insn()
|