Home
last modified time | relevance | path

Searched refs:dep (Results 1 – 25 of 233) sorted by relevance

12345678910

/openbmc/u-boot/drivers/usb/dwc3/
H A Dgadget.c184 struct dwc3_ep *dep = dwc->eps[(num << 1) | 1]; in dwc3_gadget_resize_tx_fifos() local
188 if (!(dep->flags & DWC3_EP_ENABLED)) in dwc3_gadget_resize_tx_fifos()
191 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) in dwc3_gadget_resize_tx_fifos()
192 || usb_endpoint_xfer_isoc(dep->endpoint.desc)) in dwc3_gadget_resize_tx_fifos()
206 tmp = mult * (dep->endpoint.maxpacket + mdwidth); in dwc3_gadget_resize_tx_fifos()
214 dep->name, last_fifo_depth, fifo_size & 0xffff); in dwc3_gadget_resize_tx_fifos()
224 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, in dwc3_gadget_giveback() argument
227 struct dwc3 *dwc = dep->dwc; in dwc3_gadget_giveback()
230 dep->busy_slot++; in dwc3_gadget_giveback()
236 if (((dep->busy_slot & DWC3_TRB_MASK) == in dwc3_gadget_giveback()
[all …]
H A Dep0.c29 static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep);
31 struct dwc3_ep *dep, struct dwc3_request *req);
54 struct dwc3_ep *dep; in dwc3_ep0_start_trans() local
58 dep = dwc->eps[epnum]; in dwc3_ep0_start_trans()
59 if (dep->flags & DWC3_EP_BUSY) { in dwc3_ep0_start_trans()
60 dev_vdbg(dwc->dev, "%s still busy", dep->name); in dwc3_ep0_start_trans()
64 trb = &dwc->ep0_trb[dep->free_slot]; in dwc3_ep0_start_trans()
67 dep->free_slot++; in dwc3_ep0_start_trans()
93 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, in dwc3_ep0_start_trans()
96 dev_dbg(dwc->dev, "%s STARTTRANSFER failed", dep->name); in dwc3_ep0_start_trans()
[all …]
/openbmc/linux/drivers/usb/dwc3/
H A Dgadget.c179 static void dwc3_ep_inc_enq(struct dwc3_ep *dep) in dwc3_ep_inc_enq() argument
181 dwc3_ep_inc_trb(&dep->trb_enqueue); in dwc3_ep_inc_enq()
188 static void dwc3_ep_inc_deq(struct dwc3_ep *dep) in dwc3_ep_inc_deq() argument
190 dwc3_ep_inc_trb(&dep->trb_dequeue); in dwc3_ep_inc_deq()
193 static void dwc3_gadget_del_and_unmap_request(struct dwc3_ep *dep, in dwc3_gadget_del_and_unmap_request() argument
196 struct dwc3 *dwc = dep->dwc; in dwc3_gadget_del_and_unmap_request()
213 if (dep->number > 1) in dwc3_gadget_del_and_unmap_request()
227 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, in dwc3_gadget_giveback() argument
230 struct dwc3 *dwc = dep->dwc; in dwc3_gadget_giveback()
232 dwc3_gadget_del_and_unmap_request(dep, req, status); in dwc3_gadget_giveback()
[all …]
H A Dep0.c30 static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep);
32 struct dwc3_ep *dep, struct dwc3_request *req);
36 static void dwc3_ep0_prepare_one_trb(struct dwc3_ep *dep, in dwc3_ep0_prepare_one_trb() argument
42 dwc = dep->dwc; in dwc3_ep0_prepare_one_trb()
43 trb = &dwc->ep0_trb[dep->trb_enqueue]; in dwc3_ep0_prepare_one_trb()
46 dep->trb_enqueue++; in dwc3_ep0_prepare_one_trb()
62 trace_dwc3_prepare_trb(dep, trb); in dwc3_ep0_prepare_one_trb()
65 static int dwc3_ep0_start_trans(struct dwc3_ep *dep) in dwc3_ep0_start_trans() argument
71 if (dep->flags & DWC3_EP_TRANSFER_STARTED) in dwc3_ep0_start_trans()
74 dwc = dep->dwc; in dwc3_ep0_start_trans()
[all …]
H A Dtrace.h105 __string(name, req->dep->name)
115 __assign_str(name, req->dep->name);
184 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
186 TP_ARGS(dep, cmd, params, cmd_status),
188 __string(name, dep->name)
196 __assign_str(name, dep->name);
212 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
214 TP_ARGS(dep, cmd, params, cmd_status)
218 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
219 TP_ARGS(dep, trb),
[all …]
H A Dgadget.h84 struct dwc3_ep *dep = req->dep; in dwc3_gadget_move_started_request() local
87 list_move_tail(&req->list, &dep->started_list); in dwc3_gadget_move_started_request()
101 struct dwc3_ep *dep = req->dep; in dwc3_gadget_move_cancelled_request() local
104 list_move_tail(&req->list, &dep->cancelled_list); in dwc3_gadget_move_cancelled_request()
107 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
113 void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep);
119 int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol);
121 void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, bool interrupt);
131 static inline void dwc3_gadget_ep_get_transfer_index(struct dwc3_ep *dep) in dwc3_gadget_ep_get_transfer_index() argument
135 res_id = dwc3_readl(dep->regs, DWC3_DEPCMD); in dwc3_gadget_ep_get_transfer_index()
[all …]
H A Ddebugfs.c688 struct dwc3_ep *dep = s->private; in dwc3_tx_fifo_size_show() local
689 struct dwc3 *dwc = dep->dwc; in dwc3_tx_fifo_size_show()
700 val = dwc3_core_fifo_space(dep, DWC3_TXFIFO); in dwc3_tx_fifo_size_show()
717 struct dwc3_ep *dep = s->private; in dwc3_rx_fifo_size_show() local
718 struct dwc3 *dwc = dep->dwc; in dwc3_rx_fifo_size_show()
729 val = dwc3_core_fifo_space(dep, DWC3_RXFIFO); in dwc3_rx_fifo_size_show()
746 struct dwc3_ep *dep = s->private; in dwc3_tx_request_queue_show() local
747 struct dwc3 *dwc = dep->dwc; in dwc3_tx_request_queue_show()
757 val = dwc3_core_fifo_space(dep, DWC3_TXREQQ); in dwc3_tx_request_queue_show()
768 struct dwc3_ep *dep = s->private; in dwc3_rx_request_queue_show() local
[all …]
/openbmc/linux/drivers/gpu/drm/i915/
H A Di915_scheduler.c160 struct i915_dependency *dep, *p; in __i915_schedule() local
193 list_for_each_entry(dep, &dfs, dfs_link) { in __i915_schedule()
194 struct i915_sched_node *node = dep->signaler; in __i915_schedule()
207 GEM_BUG_ON(p == dep); /* no cycles! */ in __i915_schedule()
239 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) { in __i915_schedule()
240 struct i915_request *from = container_of(dep->signaler, in __i915_schedule()
243 INIT_LIST_HEAD(&dep->dfs_link); in __i915_schedule()
245 node = dep->signaler; in __i915_schedule()
323 i915_dependency_free(struct i915_dependency *dep) in i915_dependency_free() argument
325 kmem_cache_free(slab_dependencies, dep); in i915_dependency_free()
[all …]
/openbmc/openbmc/poky/meta/classes-global/
H A Dpackage_pkgdata.bbclass55 for dep in taskdepdata:
56 data = taskdepdata[dep]
58 start = dep
80 for dep in set(start):
81 for dep2 in setscenedeps[dep][3]:
83 start.remove(dep)
86 for dep in taskdepdata:
87 data = setscenedeps[dep]
91 if dep in data2[3]:
92 data2[3].update(setscenedeps[dep][3])
[all …]
H A Dstaging.bbclass298 for dep in taskdepdata:
299 data = taskdepdata[dep]
301 start = dep
325 for dep in deptree:
326 deps = " " + "\n ".join(deptree[dep][3]) + "\n"
327 … %s\n %s\n%s %s\n %s\n" % (deptree[dep][0], deptree[dep][1], deptree[dep][2], deps, deptree[dep
330 #bb.note("Full dep tree is:\n%s" % print_dep_tree(taskdepdata))
336 for dep in set(start):
337 for dep2 in setscenedeps[dep][3]:
339 start.remove(dep)
[all …]
/openbmc/linux/arch/ia64/include/asm/
H A Dmca_asm.h36 dep addr = 0, addr, 61, 3
53 dep addr = temp, addr, 61, 3
86 dep old_psr = 0, old_psr, 32, 32; \
104 dep temp2 = 0, temp2, PSR_IC, 2; \
109 dep temp1 = 0, temp1, 32, 32; \
111 dep temp1 = 0, temp1, PSR_IT, 1; \
113 dep temp1 = 0, temp1, PSR_DT, 1; \
115 dep temp1 = 0, temp1, PSR_RT, 1; \
117 dep temp1 = 0, temp1, PSR_I, 1; \
119 dep temp1 = 0, temp1, PSR_IC, 1; \
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dclassextend.py79 def map_depends(self, dep): argument
80 …if dep.endswith(("-native", "-native-runtime")) or ('nativesdk-' in dep) or ('cross-canadian' in d…
81 return dep
88 if dep.startswith(v):
89 return dep
90 return self.extend_name(dep)
104 for dep in deps:
105 newdeps[self.map_depends(dep)] = deps[dep]
153 def map_depends(self, dep): argument
154 if dep.startswith(self.extname):
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/ptpd/ptpd/
H A DFixed-100-CPU-using-issue-by-adding-minimum-POSIX-ti.patch18 src/dep/eventtimer.h | 3 ++-
19 src/dep/eventtimer_itimer.c | 2 +-
20 src/dep/eventtimer_posix.c | 4 ++++
23 diff --git a/src/dep/eventtimer.h b/src/dep/eventtimer.h
25 --- a/src/dep/eventtimer.h
26 +++ b/src/dep/eventtimer.h
37 diff --git a/src/dep/eventtimer_itimer.c b/src/dep/eventtimer_itimer.c
39 --- a/src/dep/eventtimer_itimer.c
40 +++ b/src/dep/eventtimer_itimer.c
50 diff --git a/src/dep/eventtimer_posix.c b/src/dep/eventtimer_posix.c
[all …]
/openbmc/linux/scripts/kconfig/
H A Dmenu.c108 void menu_add_dep(struct expr *dep) in menu_add_dep() argument
110 current_entry->dep = expr_alloc_and(current_entry->dep, dep); in menu_add_dep()
130 struct expr *dep) in menu_add_prop() argument
141 prop->visible.expr = dep; in menu_add_prop()
158 struct expr *dep) in menu_add_prompt() argument
160 struct property *prop = menu_add_prop(type, NULL, dep); in menu_add_prompt()
205 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument
207 menu_add_prop(type, expr, dep); in menu_add_expr()
210 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument
212 menu_add_prop(type, expr_alloc_symbol(sym), dep); in menu_add_symbol()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dtaskexp_ncurses.py317 def task_list_append(self,task_name,dep): argument
319 task_sort_deps = dep.get_dep_sort(task_name)
325 task_sort_bitbake = dep.get_bb_sort(task_name)
518 def __init__(self, screen, label, primary, base_x, base_y, width, height, dep): argument
522 self.dep = dep
537 for task_obj in self.dep.depends_model:
544 line_art_fixup(self.dep)
560 add_line("Task count = %4d" % len(self.dep.pkg_model))
945 def bitbake_load(server, eventHandler, params, dep, curses_off, screen): argument
953 dep.progress_view.progress(msg,count,max)
[all …]
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_dir2_block.c358 xfs_dir2_data_entry_t *dep; /* block data entry */ in xfs_dir2_block_addname() local
551 dep = (xfs_dir2_data_entry_t *)dup; in xfs_dir2_block_addname()
557 (char *)dep - (char *)hdr)); in xfs_dir2_block_addname()
570 dep->inumber = cpu_to_be64(args->inumber); in xfs_dir2_block_addname()
571 dep->namelen = args->namelen; in xfs_dir2_block_addname()
572 memcpy(dep->name, args->name, args->namelen); in xfs_dir2_block_addname()
573 xfs_dir2_data_put_ftype(dp->i_mount, dep, args->filetype); in xfs_dir2_block_addname()
574 tagp = xfs_dir2_data_entry_tag_p(dp->i_mount, dep); in xfs_dir2_block_addname()
575 *tagp = cpu_to_be16((char *)dep - (char *)hdr); in xfs_dir2_block_addname()
584 xfs_dir2_data_log_entry(args, bp, dep); in xfs_dir2_block_addname()
[all …]
/openbmc/u-boot/scripts/kconfig/
H A Dmenu.c106 void menu_add_dep(struct expr *dep) in menu_add_dep() argument
108 current_entry->dep = expr_alloc_and(current_entry->dep, dep); in menu_add_dep()
127 …uct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep) in menu_add_prop() argument
133 prop->visible.expr = dep; in menu_add_prop()
177 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument
179 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt()
188 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument
190 menu_add_prop(type, NULL, expr, dep); in menu_add_expr()
193 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument
195 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep); in menu_add_symbol()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dsiggen.py314 def rundep_check(self, fn, recipename, task, dep, depname, dataCaches): argument
344 for dep in deps:
345 (depmc, _, deptask, depmcfn) = bb.runqueue.split_tid_mcfn(dep)
348 if not self.rundep_check(mcfn, recipename, task, dep, dep_pn, dataCaches):
351 if dep not in self.taskhash:
352 bb.fatal("%s is not in taskhash, caller isn't calling in dependency order?" % dep)
355 self.runtaskdeps[tid].append((dep_pnid, dep))
381 return set(dep for _, dep in self.runtaskdeps[tid])
386 for dep in sorted(self.runtaskdeps[tid]):
387 data += self.get_unihash(dep[1])
[all …]
H A Ddata.py222 for dep in sorted(deps):
223 if d.getVarFlag(dep, "func", False) and not d.getVarFlag(dep, "python", False):
224 emit_var(dep, o, d, False) and o.write('\n')
225 newdeps |= bb.codeparser.ShellParser(dep, logger).parse_shell(d.getVar(dep))
226 newdeps |= set((d.getVarFlag(dep, "vardeps") or "").split())
255 for dep in deps:
256 if d.getVarFlag(dep, "func", False) and d.getVarFlag(dep, "python", False):
257 write_func(dep, o)
258 pp = bb.codeparser.PythonParser(dep, logger)
259 pp.parse_python(d.getVar(dep, False))
[all …]
/openbmc/linux/scripts/
H A Dheaderdep.pl105 if(my($dep) = ($line =~ m/^#\s*include\s*<(.*?)>/)) {
106 push @queue, $dep;
107 push @{$deps{$header}}, [$i + 1, $dep];
148 for my $dep (@{$deps{$name}}) {
149 my $chain = [@$top, [$dep->[0], $dep->[1]]];
153 if(grep { $_->[1] eq $dep->[1] } @$top) {
186 for my $dep (@{$deps{$header}}) {
188 mangle($header), mangle($dep->[1]);
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dnpmsw.py200 shrinkwrap_urls = [dep["url"] for dep in ud.deps if dep["url"]]
259 auto = [dep["url"] for dep in ud.deps if not dep["localpath"]]
260 manual = [dep for dep in ud.deps if dep["localpath"]]
265 for dep in manual:
266 depdestdir = os.path.join(destdir, dep["destsuffix"])
267 if dep["url"]:
268 npm_unpack(dep["localpath"], depdestdir, d)
270 depsrcdir= os.path.join(destdir, dep["localpath"])
271 if dep["unpack"]:
283 for dep in ud.deps:
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dimage_typedep.py36 dep = None
39 dep = line.split('=')[1].strip('"')
42 … self.assertIsNotNone(dep, "CONVERSION_DEPENDS_bz2 dependency not found in bitbake -e output")
49 dep = dep + ".do_populate_sysroot"
51 expectedline = '"emptytest.do_rootfs" -> "{}"'.format(dep)
/openbmc/openbmc/poky/scripts/
H A Doe-depends-dot116 dep = m.group(2)
118 dep = dep.split('.')[0]
119 if key == dep:
123 depends[key].add(dep)
128 depends[key].add(dep)
137 for dep in deps:
138 if dep in depends:
139 child_deps |= depends[dep]
147 for dep in v:
148 f.write('"%s" -> "%s"\n' % (k, dep))
/openbmc/linux/fs/xfs/
H A Dxfs_dir2_readdir.c182 struct xfs_dir2_data_entry *dep = bp->b_addr + offset; in xfs_dir2_block_getdents() local
197 xfs_dir2_data_entsize(dp->i_mount, dep->namelen); in xfs_dir2_block_getdents()
208 filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep); in xfs_dir2_block_getdents()
213 !xfs_dir2_namecheck(dep->name, in xfs_dir2_block_getdents()
214 dep->namelen))) { in xfs_dir2_block_getdents()
218 if (!dir_emit(ctx, (char *)dep->name, dep->namelen, in xfs_dir2_block_getdents()
219 be64_to_cpu(dep->inumber), in xfs_dir2_block_getdents()
354 xfs_dir2_data_entry_t *dep; /* data entry */ in xfs_dir2_leaf_getdents() local
429 dep = bp->b_addr + offset; in xfs_dir2_leaf_getdents()
431 dep->namelen); in xfs_dir2_leaf_getdents()
[all …]
/openbmc/qemu/scripts/
H A Dnsis.py29 dep = line.split("DLL Name: ")[1].strip()
30 if dep in analyzed_deps:
33 dll = os.path.join(search_path, dep)
38 analyzed_deps.add(dep)
103 for dep in deps:
104 dllfile = os.path.join(dlldir, os.path.basename(dep))
107 print("Copying '%s' to '%s'" % (dep, dllfile))
108 shutil.copy(dep, dllfile)

12345678910