Searched refs:depth (Results 26 - 50 of 653) sorted by relevance

1234567891011>>

/linux-master/fs/bcachefs/
H A Dsnapshot_format.h13 __le32 depth; member in struct:bch_snapshot
H A Dsubvolume_types.h14 u32 depth; member in struct:snapshot_t
H A Dsnapshot.h83 s->depth != snapshot_t(c, parent)->depth + 1)
84 panic("id %u depth=%u parent %u depth=%u\n",
85 id, snapshot_t(c, id)->depth,
86 parent, snapshot_t(c, parent)->depth);
159 u32 depth; local
162 depth = parent ? snapshot_t(c, parent)->depth + 1 : 0;
165 return depth;
[all...]
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dcommonring.h13 u16 depth; member in struct:brcmf_commonring
41 void brcmf_commonring_config(struct brcmf_commonring *commonring, u16 depth,
58 #define brcmf_commonring_n_items(commonring) (commonring->depth)
/linux-master/scripts/dtc/libfdt/
H A Dfdt_wip.c75 int depth = 0; local
77 while ((offset >= 0) && (depth >= 0))
78 offset = fdt_next_node(fdt, offset, &depth);
/linux-master/drivers/media/platform/ti/vpe/
H A Dvpdma.c32 .depth = 8,
37 .depth = 8,
42 .depth = 8,
47 .depth = 8,
52 .depth = 8,
57 .depth = 4,
62 .depth = 4,
67 .depth = 16,
72 .depth = 24,
77 .depth
827 int depth = fmt->depth; local
894 int depth = fmt->depth; local
[all...]
/linux-master/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_mutex.c17 u16 depth; member in struct:nfp_cpp_mutex
151 mutex->depth = 0;
198 "Warning: waiting for NFP mutex [depth:%hd target:%d addr:%llx key:%08x]\n",
199 mutex->depth,
228 if (mutex->depth > 1) {
229 mutex->depth--;
252 mutex->depth = 0;
271 if (mutex->depth > 0) {
272 if (mutex->depth == NFP_MUTEX_DEPTH_MAX)
274 mutex->depth
[all...]
/linux-master/drivers/char/hw_random/
H A Dhistb-rng.c31 * depth = 1 -> ~1ms
32 * depth = 255 -> ~16ms
42 static void histb_rng_init(void __iomem *base, unsigned int depth) argument
52 val |= min(depth, 0xffu) << 8;
101 unsigned int depth; local
103 if (kstrtouint(buf, 0, &depth))
106 histb_rng_init(base, depth);
110 static DEVICE_ATTR_RW(depth);
/linux-master/arch/riscv/kernel/
H A Dkernel_mode_vector.c157 int depth; local
162 depth = riscv_v_ctx_get_depth();
163 if (depth == 0 && (regs->status & SR_VS) == SR_VS_DIRTY)
172 u32 depth; local
180 depth = riscv_v_ctx_get_depth();
181 if (depth == 0) {
/linux-master/include/linux/
H A Dlinux_logo.h49 extern const struct linux_logo *fb_find_logo(int depth);
H A Dumh.h51 extern int __usermodehelper_disable(enum umh_disable_depth depth);
52 extern void __usermodehelper_set_disable_depth(enum umh_disable_depth depth);
/linux-master/drivers/staging/vc04_services/vchiq-mmal/
H A Dmmal-common.h32 int depth; member in struct:mmal_fmt
34 u32 ybbp; /* depth of first Y plane for planar formats */
/linux-master/kernel/trace/
H A Dtrace_functions_graph.c24 int depth; member in struct:fgraph_cpu_data
201 .depth = 0,
205 .depth = 0,
703 * Comments display at + 1 to depth. Since
705 * equal to this depth.
707 cpu_data->depth = call->depth - 1;
709 /* No need to keep this function around for this depth */
710 if (call->depth < FTRACE_RETFUNC_DEPTH &&
711 !WARN_ON_ONCE(call->depth <
836 check_irq_entry(struct trace_iterator *iter, u32 flags, unsigned long addr, int depth) argument
883 check_irq_return(struct trace_iterator *iter, u32 flags, int depth) argument
1048 int depth = 0; local
1293 int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); local
[all...]
/linux-master/block/
H A Dblk-rq-qos.c108 * Return true, if we can't increase the depth further by scaling
112 unsigned int depth; local
117 * to have one request ready when one completes, so force a depth of
118 * 2 for those devices. On the backend, it'll be a depth of 1 anyway,
134 * writes, and we allow a temporarily higher depth to
137 depth = min_t(unsigned int, rqd->default_depth,
140 depth = 1 + ((depth - 1) >> min(31, rqd->scale_step));
144 depth = 1 + ((depth
[all...]
/linux-master/arch/xtensa/kernel/
H A Dstacktrace.c28 void xtensa_backtrace_user(struct pt_regs *regs, unsigned int depth, argument
40 if (!depth--)
71 for (index = WSBITS - 1; (index > 0) && depth; depth--, index--)
92 if (!depth)
97 while (a0 != 0 && depth--) {
117 void xtensa_backtrace_kernel(struct pt_regs *regs, unsigned int depth, argument
137 while (a1 > sp_start && a1 < sp_end && depth--) {
151 xtensa_backtrace_user(regs, depth, ufn, data);
/linux-master/drivers/infiniband/hw/erdma/
H A Derdma_cmdq.c94 sq->depth = cmdq->max_outstandings * sq->wqebb_cnt;
96 sq->qbuf = dma_alloc_coherent(&dev->pdev->dev, sq->depth << SQEBB_SHIFT,
111 erdma_reg_write32(dev, ERDMA_REGS_CMDQ_DEPTH_REG, sq->depth);
117 dma_free_coherent(&dev->pdev->dev, sq->depth << SQEBB_SHIFT,
128 cq->depth = cmdq->sq.depth;
129 cq->qbuf = dma_alloc_coherent(&dev->pdev->dev, cq->depth << CQE_SHIFT,
151 dma_free_coherent(&dev->pdev->dev, cq->depth << CQE_SHIFT, cq->qbuf,
162 eq->depth = cmdq->max_outstandings;
163 eq->qbuf = dma_alloc_coherent(&dev->pdev->dev, eq->depth << EQE_SHIF
[all...]
/linux-master/include/xen/interface/io/
H A Dfbif.h46 int32_t depth; /* depth in bits */ member in struct:xenfb_resize
99 uint8_t depth; /* depth of a pixel (in bits) */ member in struct:xenfb_page
/linux-master/drivers/gpu/drm/logicvc/
H A Dlogicvc_layer.h28 u32 depth; member in struct:logicvc_layer_config
37 u32 depth; member in struct:logicvc_layer_formats
/linux-master/fs/reiserfs/
H A Dresize.c37 int depth; local
47 depth = reiserfs_write_unlock_nested(s);
49 reiserfs_write_lock_nested(s, depth);
143 int depth; local
148 depth = reiserfs_write_unlock_nested(s);
150 reiserfs_write_lock_nested(s, depth);
161 depth = reiserfs_write_unlock_nested(s);
163 reiserfs_write_lock_nested(s, depth);
/linux-master/fs/configfs/
H A Dsymlink.c25 int depth = 0; local
26 do { depth++; } while ((p = p->ci_parent) && !configfs_is_root(p));
27 return depth;
59 int depth, size; local
62 depth = item_depth(item);
63 size = item_path_length(target) + depth * 3 - 1;
67 pr_debug("%s: depth = %d, size = %d\n", __func__, depth, size);
69 for (s = path; depth--; s += 3)
/linux-master/tools/bpf/bpftool/
H A Djson_writer.c23 unsigned depth; /* nesting */ member in struct:json_writer
32 for (i = 0; i < self->depth; ++i)
95 self->depth = 0;
107 assert(self->depth == 0);
121 assert(self->depth == 0);
130 ++self->depth;
136 assert(self->depth > 0);
138 --self->depth;
/linux-master/tools/testing/selftests/bpf/
H A Djson_writer.c23 unsigned depth; /* nesting */ member in struct:json_writer
32 for (i = 0; i < self->depth; ++i)
95 self->depth = 0;
107 assert(self->depth == 0);
121 assert(self->depth == 0);
130 ++self->depth;
136 assert(self->depth > 0);
138 --self->depth;
/linux-master/tools/testing/selftests/x86/
H A Dunwind_vdso.c65 int depth; /* -1 until we hit the trap source */ member in struct:unwind_state
73 if (state->depth == -1) {
75 state->depth = 0;
102 state->depth++;
135 state.depth = -1;
/linux-master/drivers/infiniband/hw/efa/
H A Defa_com.h65 u16 depth; member in struct:efa_com_admin_queue
93 u16 depth; member in struct:efa_com_aenq
124 u16 depth; member in struct:efa_com_eq
132 u16 depth; member in struct:efa_com_create_eq_params
159 efa_eqe_handler cb, u16 depth, u8 msix_vec);
/linux-master/drivers/video/fbdev/
H A Dsunxvr1000.c24 unsigned int depth; member in struct:gfb_info
34 gp->depth = of_getintprop_default(gp->of_node, "depth", 32);
85 if (gp->depth == 32 || gp->depth == 24)
94 var->bits_per_pixel = gp->depth;

Completed in 396 milliseconds

1234567891011>>