| /OK3568_Linux_fs/kernel/drivers/usb/dwc3/ |
| H A D | gadget.c | 161 static void dwc3_ep_inc_enq(struct dwc3_ep *dep) in dwc3_ep_inc_enq() argument 163 dwc3_ep_inc_trb(&dep->trb_enqueue); in dwc3_ep_inc_enq() 170 static void dwc3_ep_inc_deq(struct dwc3_ep *dep) in dwc3_ep_inc_deq() argument 172 dwc3_ep_inc_trb(&dep->trb_dequeue); in dwc3_ep_inc_deq() 175 static void dwc3_gadget_del_and_unmap_request(struct dwc3_ep *dep, in dwc3_gadget_del_and_unmap_request() argument 178 struct dwc3 *dwc = dep->dwc; in dwc3_gadget_del_and_unmap_request() 194 if (dep->number > 1) in dwc3_gadget_del_and_unmap_request() 208 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, in dwc3_gadget_giveback() argument 211 struct dwc3 *dwc = dep->dwc; in dwc3_gadget_giveback() 213 dwc3_gadget_del_and_unmap_request(dep, req, status); in dwc3_gadget_giveback() [all …]
|
| H A D | ep0.c | 30 static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep); 32 struct dwc3_ep *dep, struct dwc3_request *req); 34 static void dwc3_ep0_prepare_one_trb(struct dwc3_ep *dep, in dwc3_ep0_prepare_one_trb() argument 40 dwc = dep->dwc; in dwc3_ep0_prepare_one_trb() 41 trb = &dwc->ep0_trb[dep->trb_enqueue]; in dwc3_ep0_prepare_one_trb() 44 dep->trb_enqueue++; in dwc3_ep0_prepare_one_trb() 60 trace_dwc3_prepare_trb(dep, trb); in dwc3_ep0_prepare_one_trb() 63 static int dwc3_ep0_start_trans(struct dwc3_ep *dep) in dwc3_ep0_start_trans() argument 69 if (dep->flags & DWC3_EP_TRANSFER_STARTED) in dwc3_ep0_start_trans() 72 dwc = dep->dwc; in dwc3_ep0_start_trans() [all …]
|
| H A D | trace.h | 105 __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 D | gadget.h | 84 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() 117 struct dwc3_ep *dep = req->dep; in dwc3_gadget_move_queued_request() local 120 list_move_tail(&req->list, &dep->pending_list); in dwc3_gadget_move_queued_request() 123 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, 129 void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep); 135 int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol); 137 void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, bool interrupt); [all …]
|
| H A D | debugfs.c | 642 struct dwc3_ep *dep = s->private; in dwc3_tx_fifo_size_show() local 643 struct dwc3 *dwc = dep->dwc; in dwc3_tx_fifo_size_show() 649 val = dwc3_core_fifo_space(dep, DWC3_TXFIFO); in dwc3_tx_fifo_size_show() 664 struct dwc3_ep *dep = s->private; in dwc3_rx_fifo_size_show() local 665 struct dwc3 *dwc = dep->dwc; in dwc3_rx_fifo_size_show() 671 val = dwc3_core_fifo_space(dep, DWC3_RXFIFO); in dwc3_rx_fifo_size_show() 686 struct dwc3_ep *dep = s->private; in dwc3_tx_request_queue_show() local 687 struct dwc3 *dwc = dep->dwc; in dwc3_tx_request_queue_show() 692 val = dwc3_core_fifo_space(dep, DWC3_TXREQQ); in dwc3_tx_request_queue_show() 701 struct dwc3_ep *dep = s->private; in dwc3_rx_request_queue_show() local [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/usb/dwc3/ |
| H A D | gadget.c | 185 struct dwc3_ep *dep = dwc->eps[(num << 1) | 1]; in dwc3_gadget_resize_tx_fifos() local 189 if (!(dep->flags & DWC3_EP_ENABLED)) in dwc3_gadget_resize_tx_fifos() 192 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) in dwc3_gadget_resize_tx_fifos() 193 || usb_endpoint_xfer_isoc(dep->endpoint.desc)) in dwc3_gadget_resize_tx_fifos() 207 tmp = mult * (dep->endpoint.maxpacket + mdwidth); in dwc3_gadget_resize_tx_fifos() 215 dep->name, last_fifo_depth, fifo_size & 0xffff); in dwc3_gadget_resize_tx_fifos() 225 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, in dwc3_gadget_giveback() argument 228 struct dwc3 *dwc = dep->dwc; in dwc3_gadget_giveback() 231 dep->busy_slot++; in dwc3_gadget_giveback() 237 if (((dep->busy_slot & DWC3_TRB_MASK) == in dwc3_gadget_giveback() [all …]
|
| H A D | ep0.c | 30 static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep); 32 struct dwc3_ep *dep, struct dwc3_request *req); 55 struct dwc3_ep *dep; in dwc3_ep0_start_trans() local 59 dep = dwc->eps[epnum]; in dwc3_ep0_start_trans() 60 if (dep->flags & DWC3_EP_BUSY) { in dwc3_ep0_start_trans() 61 dev_vdbg(dwc->dev, "%s still busy", dep->name); in dwc3_ep0_start_trans() 65 trb = &dwc->ep0_trb[dep->free_slot]; in dwc3_ep0_start_trans() 68 dep->free_slot++; in dwc3_ep0_start_trans() 94 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, in dwc3_ep0_start_trans() 97 dev_dbg(dwc->dev, "%s STARTTRANSFER failed", dep->name); in dwc3_ep0_start_trans() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | package_pkgdata.bbclass | 49 for dep in taskdepdata: 50 data = taskdepdata[dep] 52 start = dep 74 for dep in set(start): 75 for dep2 in setscenedeps[dep][3]: 77 start.remove(dep) 80 for dep in taskdepdata: 81 data = setscenedeps[dep] 85 if dep in data2[3]: 86 data2[3].update(setscenedeps[dep][3]) [all …]
|
| H A D | staging.bbclass | 291 for dep in taskdepdata: 292 data = taskdepdata[dep] 294 start = dep 318 for dep in deptree: 319 deps = " " + "\n ".join(deptree[dep][3]) + "\n" 320 … %s\n %s\n%s %s\n %s\n" % (deptree[dep][0], deptree[dep][1], deptree[dep][2], deps, deptree[dep… 323 #bb.note("Full dep tree is:\n%s" % print_dep_tree(taskdepdata)) 329 for dep in set(start): 330 for dep2 in setscenedeps[dep][3]: 332 start.remove(dep) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | classextend.py | 74 def map_depends(self, dep): argument 75 …if dep.endswith(("-native", "-native-runtime")) or ('nativesdk-' in dep) or ('cross-canadian' in d… 76 return dep 83 if dep.startswith(v): 84 return dep 85 return self.extend_name(dep) 99 for dep in deps: 100 newdeps[self.map_depends(dep)] = deps[dep] 148 def map_depends(self, dep): argument 149 if dep.startswith(self.extname): [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_scheduler.c | 239 struct i915_dependency *dep, *p; in __i915_schedule() local 272 list_for_each_entry(dep, &dfs, dfs_link) { in __i915_schedule() 273 struct i915_sched_node *node = dep->signaler; in __i915_schedule() 286 GEM_BUG_ON(p == dep); /* no cycles! */ in __i915_schedule() 318 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) { in __i915_schedule() 319 INIT_LIST_HEAD(&dep->dfs_link); in __i915_schedule() 321 node = dep->signaler; in __i915_schedule() 417 i915_dependency_free(struct i915_dependency *dep) in i915_dependency_free() argument 419 kmem_cache_free(global.slab_dependencies, dep); in i915_dependency_free() 424 struct i915_dependency *dep, in __i915_sched_node_add_dependency() argument [all …]
|
| /OK3568_Linux_fs/kernel/arch/ia64/include/asm/ |
| H A D | mca_asm.h | 36 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 …]
|
| /OK3568_Linux_fs/buildroot/utils/ |
| H A D | scancpan | 591 my %dep = map { $_ => 1 } @{$deps_runtime{$distname}}; 594 $dep{$_} = 1; 597 return keys %dep; 604 for my $dep (get_dependencies( $distname )) { 605 $indirect{$dep} = 1 unless exists $direct{$dep}; 638 foreach my $dep (@{$result->{dependency}}) { 639 my $modname = ${$dep}{module}; 647 next if ${$dep}{phase} eq q{develop}; 648 next if ${$dep}{phase} eq q{x_Dist_Zilla}; 649 next if !($test && $top) && ${$dep}{phase} eq q{test}; [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/ptpd/ptpd/ |
| H A D | Fixed-100-CPU-using-issue-by-adding-minimum-POSIX-ti.patch | 19 src/dep/eventtimer.h | 3 ++- 20 src/dep/eventtimer_itimer.c | 2 +- 21 src/dep/eventtimer_posix.c | 4 ++++ 24 diff --git a/src/dep/eventtimer.h b/src/dep/eventtimer.h 26 --- a/src/dep/eventtimer.h 27 +++ b/src/dep/eventtimer.h 38 diff --git a/src/dep/eventtimer_itimer.c b/src/dep/eventtimer_itimer.c 40 --- a/src/dep/eventtimer_itimer.c 41 +++ b/src/dep/eventtimer_itimer.c 51 diff --git a/src/dep/eventtimer_posix.c b/src/dep/eventtimer_posix.c [all …]
|
| /OK3568_Linux_fs/kernel/scripts/kconfig/ |
| H A D | menu.c | 107 void menu_add_dep(struct expr *dep) in menu_add_dep() argument 109 current_entry->dep = expr_alloc_and(current_entry->dep, dep); in menu_add_dep() 129 struct expr *dep) in menu_add_prop() argument 140 prop->visible.expr = dep; in menu_add_prop() 157 struct expr *dep) in menu_add_prompt() argument 159 struct property *prop = menu_add_prop(type, NULL, dep); in menu_add_prompt() 204 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 206 menu_add_prop(type, expr, dep); in menu_add_expr() 209 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument 211 menu_add_prop(type, expr_alloc_symbol(sym), dep); in menu_add_symbol() [all …]
|
| /OK3568_Linux_fs/kernel/fs/xfs/libxfs/ |
| H A D | xfs_dir2_block.c | 358 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 …]
|
| /OK3568_Linux_fs/u-boot/scripts/kconfig/ |
| H A D | menu.c | 107 void menu_add_dep(struct expr *dep) in menu_add_dep() argument 109 current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep)); in menu_add_dep() 128 …uct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep) in menu_add_prop() argument 134 prop->visible.expr = menu_check_dep(dep); in menu_add_prop() 178 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument 180 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt() 189 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 191 menu_add_prop(type, NULL, expr, dep); in menu_add_expr() 194 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument 196 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep); in menu_add_symbol() [all …]
|
| /OK3568_Linux_fs/buildroot/support/kconfig/ |
| H A D | menu.c | 106 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 …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/ |
| H A D | npmsw.py | 82 destsubdirs = [os.path.join("node_modules", dep) for dep in deptree] 196 ud.proxy = Fetch([dep["url"] for dep in ud.deps if dep["url"]], data) 250 auto = [dep["url"] for dep in ud.deps if not dep["localpath"]] 251 manual = [dep for dep in ud.deps if dep["localpath"]] 256 for dep in manual: 257 depdestdir = os.path.join(destdir, dep["destsuffix"]) 258 if dep["url"]: 259 npm_unpack(dep["localpath"], depdestdir, d) 261 depsrcdir= os.path.join(destdir, dep["localpath"]) 262 if dep["unpack"]: [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | siggen.py | 258 def rundep_check(self, fn, recipename, task, dep, depname, dataCaches): argument 288 for dep in sorted(deps, key=clean_basepath): 289 (depmc, _, _, depmcfn) = bb.runqueue.split_tid_mcfn(dep) 296 if not self.rundep_check(fn, recipename, task, dep, depname, dataCaches): 298 if dep not in self.taskhash: 299 bb.fatal("%s is not in taskhash, caller isn't calling in dependency order?" % dep) 300 self.runtaskdeps[tid].append(dep) 331 for dep in self.runtaskdeps[tid]: 332 data += self.get_unihash(dep) 387 for dep in self.taskdeps[fn][task]: [all …]
|
| H A D | data.py | 229 for dep in sorted(deps): 230 if d.getVarFlag(dep, "func", False) and not d.getVarFlag(dep, "python", False): 231 emit_var(dep, o, d, False) and o.write('\n') 232 newdeps |= bb.codeparser.ShellParser(dep, logger).parse_shell(d.getVar(dep)) 233 newdeps |= set((d.getVarFlag(dep, "vardeps") or "").split()) 262 for dep in deps: 263 if d.getVarFlag(dep, "func", False) and d.getVarFlag(dep, "python", False): 264 write_func(dep, o) 265 pp = bb.codeparser.PythonParser(dep, logger) 266 pp.parse_python(d.getVar(dep, False)) [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/jm/ |
| H A D | mali_kbase_jm_defs.h | 194 kbase_jd_katom_dep_atom(const struct kbase_jd_atom_dependency *dep) in kbase_jd_katom_dep_atom() argument 196 return (const struct kbase_jd_atom *)(dep->atom); in kbase_jd_katom_dep_atom() 207 const struct kbase_jd_atom_dependency *dep) in kbase_jd_katom_dep_type() argument 209 return dep->dep_type; in kbase_jd_katom_dep_type() 223 struct kbase_jd_atom_dependency *dep; in kbase_jd_katom_dep_set() local 225 dep = (struct kbase_jd_atom_dependency *)const_dep; in kbase_jd_katom_dep_set() 227 dep->atom = a; in kbase_jd_katom_dep_set() 228 dep->dep_type = type; in kbase_jd_katom_dep_set() 239 struct kbase_jd_atom_dependency *dep; in kbase_jd_katom_dep_clear() local 241 dep = (struct kbase_jd_atom_dependency *)const_dep; in kbase_jd_katom_dep_clear() [all …]
|
| /OK3568_Linux_fs/buildroot/package/ptpd2/ |
| H A D | 0002-ntp_isc_md5-rename-EVP_MD_CTX-into-PTPD_EVP_MD_CTX.patch | 14 src/dep/ntpengine/ntp_isc_md5.c | 2 +- 15 src/dep/ntpengine/ntp_isc_md5.h | 2 +- 18 diff --git a/src/dep/ntpengine/ntp_isc_md5.c b/src/dep/ntpengine/ntp_isc_md5.c 20 --- a/src/dep/ntpengine/ntp_isc_md5.c 21 +++ b/src/dep/ntpengine/ntp_isc_md5.c 31 diff --git a/src/dep/ntpengine/ntp_isc_md5.h b/src/dep/ntpengine/ntp_isc_md5.h 33 --- a/src/dep/ntpengine/ntp_isc_md5.h 34 +++ b/src/dep/ntpengine/ntp_isc_md5.h
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | headerdep.pl | 105 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]);
|
| /OK3568_Linux_fs/kernel/fs/xfs/ |
| H A D | xfs_dir2_readdir.c | 181 struct xfs_dir2_data_entry *dep = bp->b_addr + offset; in xfs_dir2_block_getdents() local 196 xfs_dir2_data_entsize(dp->i_mount, dep->namelen); in xfs_dir2_block_getdents() 207 filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep); in xfs_dir2_block_getdents() 212 !xfs_dir2_namecheck(dep->name, in xfs_dir2_block_getdents() 213 dep->namelen))) { in xfs_dir2_block_getdents() 217 if (!dir_emit(ctx, (char *)dep->name, dep->namelen, in xfs_dir2_block_getdents() 218 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 427 dep = bp->b_addr + offset; in xfs_dir2_leaf_getdents() 429 dep->namelen); in xfs_dir2_leaf_getdents() [all …]
|