/arch/powerpc/platforms/powernv/ |
D | opal-tracepoints.c | 51 unsigned int *depth; in __trace_opal_entry() local 55 depth = this_cpu_ptr(&opal_trace_depth); in __trace_opal_entry() 57 if (*depth) in __trace_opal_entry() 60 (*depth)++; in __trace_opal_entry() 63 (*depth)--; in __trace_opal_entry() 72 unsigned int *depth; in __trace_opal_exit() local 76 depth = this_cpu_ptr(&opal_trace_depth); in __trace_opal_exit() 78 if (*depth) in __trace_opal_exit() 81 (*depth)++; in __trace_opal_exit() 84 (*depth)--; in __trace_opal_exit()
|
D | opal-call.c | 19 unsigned int *depth; in __trace_opal_entry() local 22 depth = this_cpu_ptr(&opal_trace_depth); in __trace_opal_entry() 24 if (*depth) in __trace_opal_entry() 36 (*depth)++; in __trace_opal_entry() 38 (*depth)--; in __trace_opal_entry() 43 unsigned int *depth; in __trace_opal_exit() local 45 depth = this_cpu_ptr(&opal_trace_depth); in __trace_opal_exit() 47 if (*depth) in __trace_opal_exit() 50 (*depth)++; in __trace_opal_exit() 52 (*depth)--; in __trace_opal_exit()
|
/arch/sh/oprofile/ |
D | backtrace.c | 30 unsigned int *depth = data; in backtrace_address() local 32 if ((*depth)--) in backtrace_address() 67 void sh_backtrace(struct pt_regs * const regs, unsigned int depth) in sh_backtrace() argument 74 if (depth > backtrace_limit) in sh_backtrace() 75 depth = backtrace_limit; in sh_backtrace() 79 if (depth) in sh_backtrace() 81 &backtrace_ops, &depth); in sh_backtrace() 85 while (depth-- && (stackaddr != NULL)) in sh_backtrace()
|
/arch/x86/oprofile/ |
D | backtrace.c | 47 x86_backtrace_32(struct pt_regs * const regs, unsigned int depth) in x86_backtrace_32() argument 56 while (depth-- && head) in x86_backtrace_32() 64 x86_backtrace_32(struct pt_regs * const regs, unsigned int depth) in x86_backtrace_32() argument 91 x86_backtrace(struct pt_regs * const regs, unsigned int depth) in x86_backtrace() argument 99 if (!depth) in x86_backtrace() 104 if (!--depth) in x86_backtrace() 115 if (!--depth) in x86_backtrace() 122 if (x86_backtrace_32(regs, depth)) in x86_backtrace() 125 while (depth-- && head) in x86_backtrace()
|
D | init.c | 27 extern void x86_backtrace(struct pt_regs * const regs, unsigned int depth);
|
/arch/s390/kernel/ |
D | trace.c | 20 unsigned int *depth; in trace_s390_diagnose_norecursion() local 26 depth = this_cpu_ptr(&diagnose_trace_depth); in trace_s390_diagnose_norecursion() 27 if (*depth == 0) { in trace_s390_diagnose_norecursion() 28 (*depth)++; in trace_s390_diagnose_norecursion() 30 (*depth)--; in trace_s390_diagnose_norecursion()
|
/arch/arm/oprofile/ |
D | common.c | 64 unsigned int *depth = d; in report_trace() local 66 if (*depth) { in report_trace() 68 (*depth)--; in report_trace() 71 return *depth == 0; in report_trace() 106 static void arm_backtrace(struct pt_regs * const regs, unsigned int depth) in arm_backtrace() argument 113 walk_stackframe(&frame, report_trace, &depth); in arm_backtrace() 117 while (depth-- && tail && !((unsigned long) tail & 3)) in arm_backtrace()
|
/arch/sh/kernel/ |
D | return_address.c | 14 void *return_address(unsigned int depth) in return_address() argument 20 for (i = 0, frame = NULL, ra = 0; i <= depth; i++) { in return_address() 39 WARN_ON(i != depth + 1); in return_address() 49 void *return_address(unsigned int depth) in return_address() argument
|
/arch/mips/oprofile/ |
D | backtrace.c | 134 unsigned int depth) in do_user_backtrace() argument 139 while (depth-- && !unwind_user_frame(frame, max_instr_check)) { in do_user_backtrace() 149 unsigned int depth) { } in do_kernel_backtrace() argument 153 unsigned int depth) in do_kernel_backtrace() argument 155 while (depth-- && frame->pc) { in do_kernel_backtrace() 165 void notrace op_mips_backtrace(struct pt_regs *const regs, unsigned int depth) in op_mips_backtrace() argument 174 do_user_backtrace(low_addr, &frame, depth); in op_mips_backtrace() 176 do_kernel_backtrace(low_addr, &frame, depth); in op_mips_backtrace()
|
/arch/powerpc/oprofile/ |
D | backtrace.c | 90 void op_powerpc_backtrace(struct pt_regs * const regs, unsigned int depth) in op_powerpc_backtrace() argument 96 depth += 1; in op_powerpc_backtrace() 99 while (depth--) { in op_powerpc_backtrace() 109 while (depth--) { in op_powerpc_backtrace() 120 while (depth--) { in op_powerpc_backtrace()
|
/arch/ia64/oprofile/ |
D | backtrace.c | 28 unsigned int depth; member 93 while (bt->depth-- && next_frame(bt)) { in do_ia64_backtrace() 112 ia64_backtrace(struct pt_regs * const regs, unsigned int depth) in ia64_backtrace() argument 125 bt.depth = depth; in ia64_backtrace()
|
D | init.c | 17 extern void ia64_backtrace(struct pt_regs * const regs, unsigned int depth);
|
/arch/xtensa/oprofile/ |
D | backtrace.c | 20 void xtensa_backtrace(struct pt_regs * const regs, unsigned int depth) in xtensa_backtrace() argument 23 xtensa_backtrace_user(regs, depth, xtensa_backtrace_cb, NULL); in xtensa_backtrace() 25 xtensa_backtrace_kernel(regs, depth, xtensa_backtrace_cb, in xtensa_backtrace()
|
D | init.c | 15 extern void xtensa_backtrace(struct pt_regs *const regs, unsigned int depth);
|
/arch/xtensa/kernel/ |
D | stacktrace.c | 26 void xtensa_backtrace_user(struct pt_regs *regs, unsigned int depth, in xtensa_backtrace_user() argument 38 if (!depth--) in xtensa_backtrace_user() 69 for (index = WSBITS - 1; (index > 0) && depth; depth--, index--) in xtensa_backtrace_user() 90 if (!depth) in xtensa_backtrace_user() 95 while (a0 != 0 && depth--) { in xtensa_backtrace_user() 115 void xtensa_backtrace_kernel(struct pt_regs *regs, unsigned int depth, in xtensa_backtrace_kernel() argument 135 while (a1 > sp_start && a1 < sp_end && depth--) { in xtensa_backtrace_kernel() 149 xtensa_backtrace_user(regs, depth, ufn, data); in xtensa_backtrace_kernel()
|
/arch/s390/oprofile/ |
D | init.c | 18 static void s390_backtrace(struct pt_regs *regs, unsigned int depth) in s390_backtrace() argument 23 if (depth-- == 0) in s390_backtrace()
|
/arch/powerpc/include/asm/ |
D | btext.h | 13 int depth, int pitch); 14 extern void btext_setup_display(int width, int height, int depth, int pitch,
|
/arch/powerpc/kernel/ |
D | btext.c | 120 void __init btext_setup_display(int width, int height, int depth, int pitch, in btext_setup_display() argument 130 dispDeviceDepth = depth == 15 ? 16 : depth; in btext_setup_display() 175 unsigned int width, height, depth, pitch; in btext_initialize() local 196 depth = *prop; in btext_initialize() 197 pitch = width * ((depth + 7) / 8); in btext_initialize() 223 dispDeviceDepth = depth == 15 ? 16 : depth; in btext_initialize() 274 int depth, int pitch) in btext_update_display() argument 288 dispDeviceDepth = depth; in btext_update_display()
|
/arch/xtensa/include/asm/ |
D | stacktrace.h | 36 void xtensa_backtrace_kernel(struct pt_regs *regs, unsigned int depth, 40 void xtensa_backtrace_user(struct pt_regs *regs, unsigned int depth,
|
/arch/sparc/kernel/ |
D | btext.c | 45 unsigned int width, height, depth, pitch; in btext_initialize() local 53 if (prom_getproperty(node, "depth", (char *)&depth, 4) < 0) in btext_initialize() 55 pitch = width * ((depth + 7) / 8); in btext_initialize() 79 dispDeviceDepth = depth == 15 ? 16 : depth; in btext_initialize()
|
/arch/mips/ralink/ |
D | of.c | 57 const char *uname, int depth, void *data) in early_init_dt_find_memory() argument 59 if (depth == 1 && !strcmp(uname, "memory@0")) in early_init_dt_find_memory()
|
/arch/sh/mm/ |
D | pmb.c | 64 static void pmb_unmap_entry(struct pmb_entry *, int depth); 489 static void __pmb_unmap_entry(struct pmb_entry *pmbe, int depth) in __pmb_unmap_entry() argument 511 } while (pmbe && --depth); in __pmb_unmap_entry() 514 static void pmb_unmap_entry(struct pmb_entry *pmbe, int depth) in pmb_unmap_entry() argument 522 __pmb_unmap_entry(pmbe, depth); in pmb_unmap_entry() 659 int i = 1, depth = 0; in pmb_merge() local 669 depth = i; in pmb_merge() 683 if (!depth || !pmb_size_valid(newsize)) in pmb_merge() 691 __pmb_unmap_entry(head->link, depth); in pmb_merge()
|
/arch/arm64/boot/dts/intel/ |
D | socfpga_agilex.dtsi | 92 tx-fifo-depth = <16384>; 93 rx-fifo-depth = <16384>; 107 tx-fifo-depth = <16384>; 108 rx-fifo-depth = <16384>; 122 tx-fifo-depth = <16384>; 123 rx-fifo-depth = <16384>; 225 fifo-depth = <0x400>; 439 cdns,fifo-depth = <128>;
|
/arch/mips/sgi-ip27/ |
D | ip27-memory.c | 71 static void router_recurse(klrou_t *router_a, klrou_t *router_b, int depth) in router_recurse() argument 80 if (depth >= router_distance) in router_recurse() 96 if (depth < router_distance) in router_recurse() 97 router_distance = depth; in router_recurse() 100 router_recurse(router, router_b, depth + 1); in router_recurse()
|
/arch/powerpc/platforms/pseries/ |
D | firmware.c | 142 depth, void *data) in probe_fw_features() argument 149 if (depth != 1) in probe_fw_features()
|