| /arch/powerpc/platforms/powernv/ |
| A D | opal-tracepoints.c | 50 unsigned int *depth; in __trace_opal_entry() local 54 depth = this_cpu_ptr(&opal_trace_depth); in __trace_opal_entry() 56 if (*depth) in __trace_opal_entry() 59 (*depth)++; in __trace_opal_entry() 62 (*depth)--; in __trace_opal_entry() 71 unsigned int *depth; in __trace_opal_exit() local 75 depth = this_cpu_ptr(&opal_trace_depth); in __trace_opal_exit() 77 if (*depth) in __trace_opal_exit() 80 (*depth)++; in __trace_opal_exit() 83 (*depth)--; in __trace_opal_exit()
|
| A D | opal-call.c | 20 unsigned int *depth; in __trace_opal_entry() local 23 depth = this_cpu_ptr(&opal_trace_depth); in __trace_opal_entry() 25 if (*depth) in __trace_opal_entry() 37 (*depth)++; in __trace_opal_entry() 39 (*depth)--; in __trace_opal_entry() 44 unsigned int *depth; in __trace_opal_exit() local 46 depth = this_cpu_ptr(&opal_trace_depth); in __trace_opal_exit() 48 if (*depth) in __trace_opal_exit() 51 (*depth)++; in __trace_opal_exit() 53 (*depth)--; in __trace_opal_exit()
|
| /arch/s390/kernel/ |
| A 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/sh/kernel/ |
| A D | return_address.c | 16 void *return_address(unsigned int depth) in return_address() argument 22 for (i = 0, frame = NULL, ra = 0; i <= depth; i++) { in return_address() 41 WARN_ON(i != depth + 1); in return_address() 51 void *return_address(unsigned int depth) in return_address() argument
|
| /arch/xtensa/kernel/ |
| A D | stacktrace.c | 28 void xtensa_backtrace_user(struct pt_regs *regs, unsigned int depth, in xtensa_backtrace_user() argument 40 if (!depth--) in xtensa_backtrace_user() 71 for (index = WSBITS - 1; (index > 0) && depth; depth--, index--) in xtensa_backtrace_user() 92 if (!depth) in xtensa_backtrace_user() 97 while (a0 != 0 && depth--) { in xtensa_backtrace_user() 117 void xtensa_backtrace_kernel(struct pt_regs *regs, unsigned int depth, in xtensa_backtrace_kernel() argument 137 while (a1 > sp_start && a1 < sp_end && depth--) { in xtensa_backtrace_kernel() 151 xtensa_backtrace_user(regs, depth, ufn, data); in xtensa_backtrace_kernel()
|
| /arch/riscv/kernel/ |
| A D | kernel_mode_vector.c | 157 int depth; in riscv_v_context_nesting_start() local 162 depth = riscv_v_ctx_get_depth(); in riscv_v_context_nesting_start() 163 if (depth == 0 && __riscv_v_vstate_check(regs->status, DIRTY)) in riscv_v_context_nesting_start() 172 u32 depth; in riscv_v_context_nesting_end() local 180 depth = riscv_v_ctx_get_depth(); in riscv_v_context_nesting_end() 181 if (depth == 0) { in riscv_v_context_nesting_end()
|
| /arch/powerpc/kernel/ |
| A D | btext.c | 107 void __init btext_setup_display(int width, int height, int depth, int pitch, in btext_setup_display() argument 117 dispDeviceDepth = depth == 15 ? 16 : depth; in btext_setup_display() 162 unsigned int width, height, depth, pitch; in btext_initialize() local 183 depth = *prop; in btext_initialize() 184 pitch = width * ((depth + 7) / 8); in btext_initialize() 210 dispDeviceDepth = depth == 15 ? 16 : depth; in btext_initialize() 263 int depth, int pitch) in btext_update_display() argument 277 dispDeviceDepth = depth; in btext_update_display()
|
| A D | epapr_paravirt.c | 26 int depth, void *data) in early_init_dt_scan_epapr() argument
|
| /arch/powerpc/include/asm/ |
| A D | btext.h | 13 int depth, int pitch); 14 extern void btext_setup_display(int width, int height, int depth, int pitch,
|
| A D | fadump.h | 36 int depth, void *data);
|
| /arch/xtensa/include/asm/ |
| A 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/ |
| A D | btext.c | 42 unsigned int width, height, depth, pitch; in btext_initialize() local 50 if (prom_getproperty(node, "depth", (char *)&depth, 4) < 0) in btext_initialize() 52 pitch = width * ((depth + 7) / 8); in btext_initialize() 76 dispDeviceDepth = depth == 15 ? 16 : depth; in btext_initialize()
|
| /arch/mips/sgi-ip27/ |
| A D | ip27-memory.c | 58 static void router_recurse(klrou_t *router_a, klrou_t *router_b, int depth) in router_recurse() argument 67 if (depth >= router_distance) in router_recurse() 83 if (depth < router_distance) in router_recurse() 84 router_distance = depth; in router_recurse() 87 router_recurse(router, router_b, depth + 1); in router_recurse()
|
| /arch/sh/mm/ |
| A 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/mips/net/ |
| A D | bpf_jit_comp.c | 127 int push_regs(struct jit_context *ctx, u32 mask, u32 excl, int depth) in push_regs() argument 135 emit(ctx, sw, reg, depth, MIPS_R_SP); in push_regs() 137 emit(ctx, sd, reg, depth, MIPS_R_SP); in push_regs() 139 depth += sizeof(long); in push_regs() 142 ctx->stack_used = max((int)ctx->stack_used, depth); in push_regs() 143 return depth; in push_regs() 150 int pop_regs(struct jit_context *ctx, u32 mask, u32 excl, int depth) in pop_regs() argument 158 emit(ctx, lw, reg, depth, MIPS_R_SP); in pop_regs() 160 emit(ctx, ld, reg, depth, MIPS_R_SP); in pop_regs() 162 depth += sizeof(long); in pop_regs() [all …]
|
| /arch/powerpc/platforms/pseries/ |
| A D | firmware.c | 155 depth, void *data) in probe_fw_features() argument 162 if (depth != 1) in probe_fw_features()
|
| /arch/arm64/boot/dts/amlogic/ |
| A D | meson-sm1.dtsi | 191 amlogic,fifo-depth = <8192>; 206 amlogic,fifo-depth = <256>; 221 amlogic,fifo-depth = <256>; 236 amlogic,fifo-depth = <512>; 251 amlogic,fifo-depth = <256>; 266 amlogic,fifo-depth = <256>; 441 amlogic,fifo-depth = <256>; 456 amlogic,fifo-depth = <256>;
|
| A D | meson-g12.dtsi | 110 amlogic,fifo-depth = <512>; 125 amlogic,fifo-depth = <256>; 140 amlogic,fifo-depth = <256>; 155 amlogic,fifo-depth = <512>; 170 amlogic,fifo-depth = <256>; 185 amlogic,fifo-depth = <256>;
|
| /arch/microblaze/boot/dts/ |
| A D | system.dts | 139 xlnx,mch0-accessbuf-depth = <0x10>; 141 xlnx,mch0-rddatabuf-depth = <0x10>; 142 xlnx,mch1-accessbuf-depth = <0x10>; 144 xlnx,mch1-rddatabuf-depth = <0x10>; 145 xlnx,mch2-accessbuf-depth = <0x10>; 147 xlnx,mch2-rddatabuf-depth = <0x10>; 148 xlnx,mch3-accessbuf-depth = <0x10>; 150 xlnx,mch3-rddatabuf-depth = <0x10>;
|
| /arch/arm64/boot/dts/freescale/ |
| A D | tqmls104xa-mbls10xxa-fman.dtsi | 74 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_8_B_NIB>; 82 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_8_B_NIB>;
|
| A D | tqmls1088a-mbls10xxa-mc.dtsi | 84 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_8_B_NIB>; 92 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_8_B_NIB>;
|
| /arch/arm64/boot/dts/ti/ |
| A D | k3-j721e-evm-gesi-exp-board.dtso | 80 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>; 86 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>; 92 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>; 98 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>;
|
| /arch/xtensa/ |
| A D | Kconfig.debug | 36 int "Stack depth to print" if DEBUG_KERNEL 39 This option allows you to set the stack depth that the kernel
|
| /arch/arm64/boot/dts/exynos/ |
| A D | exynosautov920.dtsi | 475 fifo-depth = <256>; 524 fifo-depth = <256>; 573 fifo-depth = <64>; 622 fifo-depth = <64>; 671 fifo-depth = <64>; 720 fifo-depth = <64>; 769 fifo-depth = <64>; 818 fifo-depth = <64>; 867 fifo-depth = <64>; 1002 fifo-depth = <64>; [all …]
|
| /arch/arm64/boot/dts/altera/ |
| A D | socfpga_stratix10.dtsi | 184 tx-fifo-depth = <16384>; 185 rx-fifo-depth = <16384>; 202 tx-fifo-depth = <16384>; 203 rx-fifo-depth = <16384>; 220 tx-fifo-depth = <16384>; 221 rx-fifo-depth = <16384>; 329 fifo-depth = <0x400>; 642 cdns,fifo-depth = <128>;
|