HomeSort by relevance Sort by last modified time
    Searched refs:dep (Results 1 - 25 of 255) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/u-boot/drivers/usb/dwc3/
gadget.c 185 struct dwc3_ep *dep = dwc->eps[(num << 1) | 1]; local
189 if (!(dep->flags & DWC3_EP_ENABLED))
192 if (usb_endpoint_xfer_bulk(dep->endpoint.desc)
193 || usb_endpoint_xfer_isoc(dep->endpoint.desc))
207 tmp = mult * (dep->endpoint.maxpacket + mdwidth);
215 dep->name, last_fifo_depth, fifo_size & 0xffff);
225 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
228 struct dwc3 *dwc = dep->dwc;
231 dep->busy_slot++;
237 if (((dep->busy_slot & DWC3_TRB_MASK) =
595 struct dwc3_ep *dep; local
643 struct dwc3_ep *dep; local
675 struct dwc3_ep *dep = to_dwc3_ep(ep); local
1064 struct dwc3_ep *dep = to_dwc3_ep(ep); local
1102 struct dwc3_ep *dep = to_dwc3_ep(ep); local
1185 struct dwc3_ep *dep = to_dwc3_ep(ep); local
1200 struct dwc3_ep *dep = to_dwc3_ep(ep); local
1447 struct dwc3_ep *dep; local
1576 struct dwc3_ep *dep; local
1648 struct dwc3_ep *dep; local
1837 struct dwc3_ep *dep; local
1954 struct dwc3_ep *dep; local
2000 struct dwc3_ep *dep; local
2018 struct dwc3_ep *dep; local
2136 struct dwc3_ep *dep; local
    [all...]
ep0.c 29 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; local
58 dep = dwc->eps[epnum];
59 if (dep->flags & DWC3_EP_BUSY) {
60 dev_vdbg(dwc->dev, "%s still busy", dep->name);
64 trb = &dwc->ep0_trb[dep->free_slot];
67 dep->free_slot++;
93 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
96 dev_dbg(dwc->dev, "%s STARTTRANSFER failed", dep->name)
216 struct dwc3_ep *dep = to_dwc3_ep(ep); local
251 struct dwc3_ep *dep; local
276 struct dwc3_ep *dep = to_dwc3_ep(ep); local
307 struct dwc3_ep *dep; local
331 struct dwc3_ep *dep; local
389 struct dwc3_ep *dep; local
592 struct dwc3_ep *dep = to_dwc3_ep(ep); local
636 struct dwc3_ep *dep; local
866 struct dwc3_ep *dep; local
902 struct dwc3_ep *dep = dwc->eps[event->endpoint_number]; local
1016 struct dwc3_ep *dep = dwc->eps[event->endpoint_number]; local
1058 struct dwc3_ep *dep = dwc->eps[dwc->ep0_expect_in]; local
    [all...]
gadget.h 72 struct dwc3_ep *dep = req->dep; local
75 list_move_tail(&req->list, &dep->req_queued);
78 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
88 int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol);
  /external/google-fruit/extras/benchmark/
boost_di_source_generator.py 31 fields = ''.join(['std::shared_ptr<Interface%s> x%s;\n' % (dep, dep)
32 for dep in deps])
33 component_deps = ''.join([', std::shared_ptr<Interface%s>' % dep for dep in deps])
73 param_initializers = ', '.join('x%s(x%s)' % (dep, dep)
74 for dep in deps)
77 component_deps = ', '.join('std::shared_ptr<Interface%s> x%s' % (dep, dep)
    [all...]
fruit_source_generator.py 60 fields = ''.join(['Interface%s& x%s;\n' % (dep, dep)
61 for dep in deps])
63 component_deps = ', '.join(['Interface%s& x%s' % (dep, dep)
64 for dep in deps])
65 param_initializers = ', '.join('x%s(x%s)' % (dep, dep)
66 for dep in deps)
70 install_expressions = ''.join([' .install(getComponent%s)\n' % dep for dep in deps]
    [all...]
  /build/make/tools/
java-layers.py 56 def recurse(obj, dep, visited):
58 if dep in visited:
60 % (dep.filename, dep.lineno))
66 visited.append(dep)
67 for upper in dep.uppers:
72 self.parts = [(dep.lower.split('.'),dep) for dep in deps.itervalues()]
74 for dep in deps.itervalues()
    [all...]
soong_to_convert.py 67 for dep in depsdb[module]:
68 if dep in seen:
70 count += 1 + count_deps(depsdb, dep, seen)
85 for dep in deps[module]:
86 if not dep in reverse_deps:
87 reverse_deps[dep] = []
88 reverse_deps[dep].append(module)
filter-product-graph.py 55 deps = [dep for dep in deps if dep[1] in included]
60 for dep in deps:
61 print '"%s" -> "%s"' % dep
  /external/curl/docs/libcurl/
symbols.pl 71 my $dep;
75 ($intr, $dep, $rm)=($1, $2, $3);
77 # is it a dep-only line?
79 ($intr, $dep)=($1, $2);
mksymbolsmanpage.pl 74 my ($intro, $dep, $rem);
79 $dep = $1;
85 if($dep) {
86 print "Deprecated since $dep\n";
89 print "Last used in $dep\n";
  /external/e2fsprogs/lib/e2p/
iod.c 32 struct dirent *de, *dep; local
61 while ((dep = readdir (dir))) {
63 len = dep->d_reclen;
69 memcpy(de, dep, len);
  /development/vndk/tools/sourcedr/ninja/
list_source_file.py 61 for dep in itertools.chain(build.explicit_ins, build.implicit_ins,
64 if dep.startswith('prebuilts/'):
66 if out_host_dir_pattern.match(dep):
70 if dep.endswith('.toc'):
72 if dep.endswith('.so'):
73 if posixpath.basename(dep) != start_basename:
76 if dep not in visited:
77 visited.add(dep)
78 stack.append(dep)
118 for dep in source_files
    [all...]
list_ninja_build_dep.py 49 for dep in itertools.chain(build.explicit_ins, build.implicit_ins,
51 dep = graph.get(dep)
52 if not dep:
54 if dep not in visited:
55 visited.add(dep)
56 dfs.append(dep)
57 stack.append(dep)
  /external/toybox/kconfig/
menu.c 102 void menu_add_dep(struct expr *dep)
104 current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep));
122 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep)
128 prop->visible.expr = menu_check_dep(dep);
145 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep)
147 return menu_add_prop(type, prompt, NULL, dep);
150 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep)
152 menu_add_prop(type, NULL, expr, dep);
233 struct expr *parentdep, *basedep, *dep, *dep2, **ep; local
    [all...]
  /external/autotest/client/bin/
unit_test.py 26 dep ='gtest'
27 dep_dir = os.path.join(self.autodir, 'deps', dep)
28 self.job.install_pkg(dep, 'dep', dep_dir)
  /external/guice/core/src/com/google/inject/spi/
DependencyAndSource.java 72 Dependency<?> dep = getDependency(); local
74 if (dep != null) {
75 return "Dependency: " + dep + ", source: " + source;
  /build/blueprint/
visit_test.go 55 ctx.VisitDepsDepthFirst(func(dep Module) {
56 if ctx.OtherModuleDependencyTag(dep) != visitTagDep {
57 panic(fmt.Errorf("unexpected dependency tag on %q", ctx.OtherModuleName(dep)))
59 m.properties.VisitDepsDepthFirst = m.properties.VisitDepsDepthFirst + ctx.OtherModuleName(dep)
61 ctx.VisitDepsDepthFirstIf(func(dep Module) bool {
62 return ctx.OtherModuleName(dep) != "B"
63 }, func(dep Module) {
64 m.properties.VisitDepsDepthFirstIf = m.properties.VisitDepsDepthFirstIf + ctx.OtherModuleName(dep)
66 ctx.VisitDirectDeps(func(dep Module) {
67 m.properties.VisitDirectDeps = m.properties.VisitDirectDeps + ctx.OtherModuleName(dep)
    [all...]
  /external/skia/gn/
gn_to_bp_utils.py 35 for dep in js['targets'][name]['deps']:
36 if 'modules' in dep:
38 if 'third_party' in dep:
40 if 'none' in dep:
42 if exclude and exclude in dep:
44 list_to_extend.update(_strip_slash(js['targets'][dep].get(value_type, [])))
45 GrabDependentValues(js, dep, value_type, list_to_extend, exclude)
  /external/skqp/gn/
gn_to_bp_utils.py 35 for dep in js['targets'][name]['deps']:
36 if 'modules' in dep:
38 if 'third_party' in dep:
40 if 'none' in dep:
42 if exclude and exclude in dep:
44 list_to_extend.update(_strip_slash(js['targets'][dep].get(value_type, [])))
45 GrabDependentValues(js, dep, value_type, list_to_extend, exclude)
  /external/llvm/lib/Analysis/
MemDepPrinter.cpp 37 typedef std::pair<InstTypePair, const BasicBlock *> Dep;
38 typedef SmallSetVector<Dep, 4> DepSet;
63 static InstTypePair getInstTypePair(MemDepResult dep) {
64 if (dep.isClobber())
65 return InstTypePair(dep.getInst(), Clobber);
66 if (dep.isDef())
67 return InstTypePair(dep.getInst(), Def);
68 if (dep.isNonFuncLocal())
69 return InstTypePair(dep.getInst(), NonFuncLocal);
70 assert(dep.isUnknown() && "unexpected dependence type")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
MemDepPrinter.cpp 37 typedef std::pair<InstTypePair, const BasicBlock *> Dep;
38 typedef SmallSetVector<Dep, 4> DepSet;
63 static InstTypePair getInstTypePair(MemDepResult dep) {
64 if (dep.isClobber())
65 return InstTypePair(dep.getInst(), Clobber);
66 if (dep.isDef())
67 return InstTypePair(dep.getInst(), Def);
68 if (dep.isNonFuncLocal())
69 return InstTypePair(dep.getInst(), NonFuncLocal);
70 assert(dep.isUnknown() && "unexpected dependence type")
    [all...]
  /external/grpc-grpc/tools/buildgen/plugins/
transitive_dependencies.py 35 set(transitive_deps(get_lib(libs, dep), libs))
36 for dep in lib['deps']
  /external/libvpx/libvpx/
solution.mk 14 $(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx)
20 --dep=test_libvpx:gtest \
  /external/tensorflow/tensorflow/contrib/checkpoint/python/
split_dependency_test.py 58 for name, dep in split_dependencies.items():
59 self._track_trackable(dep, name=name)
80 dep=SaveTensorSlicesAsDeps())
81 self.evaluate(save_checkpoint.dep.combined.assign([1., 2., 3., 4.]))
88 dep=regular_deps)
95 one_dep_restore_checkpoint = util.Checkpoint(dep=one_dep)
105 restore_checkpoint.dep = SaveTensorSlicesAsDeps()
109 self.evaluate(restore_checkpoint.dep.combined))
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetSubtargetInfo.h 63 SDep& dep) const { }

Completed in 1561 milliseconds

1 2 3 4 5 6 7 8 91011