Home
last modified time | relevance | path

Searched refs:deep (Results 1 – 25 of 202) sorted by relevance

123456789

/external/valgrind/massif/tests/
DMakefile.am13 deep-A.post.exp deep-A.stderr.exp deep-A.vgtest \
14 deep-B.post.exp deep-B.stderr.exp deep-B.vgtest \
15 deep-C.post.exp deep-C.stderr.exp deep-C.vgtest \
16 deep-D.post.exp deep-D.stderr.exp deep-D.vgtest \
17 deep-D.post.exp-ppc64 \
60 deep \ program
DMakefile.in125 deep$(EXEEXT) ignored$(EXEEXT) ignoring$(EXEEXT) \
160 deep_SOURCES = deep.c
161 deep_OBJECTS = deep.$(OBJEXT)
254 custom_alloc.c deep.c ignored.c ignoring.c insig.c \
259 custom_alloc.c deep.c ignored.c ignoring.c insig.c \
665 deep-A.post.exp deep-A.stderr.exp deep-A.vgtest \
666 deep-B.post.exp deep-B.stderr.exp deep-B.vgtest \
667 deep-C.post.exp deep-C.stderr.exp deep-C.vgtest \
668 deep-D.post.exp deep-D.stderr.exp deep-D.vgtest \
669 deep-D.post.exp-ppc64 \
[all …]
/external/javassist/src/main/javassist/bytecode/analysis/
DType.java392 CtClass deep = one; in findCommonSuperClass() local
395 CtClass backupDeep = deep; in findCommonSuperClass()
400 if (eq(deep, shallow) && deep.getSuperclass() != null) in findCommonSuperClass()
401 return deep; in findCommonSuperClass()
403 CtClass deepSuper = deep.getSuperclass(); in findCommonSuperClass()
414 deep = backupDeep; in findCommonSuperClass()
416 backupShallow = deep; in findCommonSuperClass()
418 deep = shallow; in findCommonSuperClass()
423 deep = deepSuper; in findCommonSuperClass()
429 deep = deep.getSuperclass(); in findCommonSuperClass()
[all …]
/external/proguard/src/proguard/classfile/attribute/visitor/
DAllAttributeVisitor.java41 private final boolean deep; field in AllAttributeVisitor
64 public AllAttributeVisitor(boolean deep, in AllAttributeVisitor() argument
67 this.deep = deep; in AllAttributeVisitor()
79 if (deep) in visitProgramClass()
98 if (deep) in visitProgramMember()
/external/python/cpython2/Doc/library/
Dcopy.rst1 :mod:`copy` --- Shallow and deep copy operations
5 :synopsis: Shallow and deep copy operations.
10 changing the other. This module provides generic shallow and deep copy
23 Return a deep copy of *x*.
31 The difference between shallow and deep copying is only relevant for compound
37 * A *deep copy* constructs a new compound object and then, recursively, inserts
40 Two problems often exist with deep copy operations that don't exist with shallow
46 * Because deep copy copies *everything* it may copy too much, e.g.,
83 The latter is called to implement the deep copy operation; it is passed one
85 to make a deep copy of a component, it should call the :func:`deepcopy` function
/external/python/cpython3/Doc/library/
Dcopy.rst1 :mod:`copy` --- Shallow and deep copy operations
5 :synopsis: Shallow and deep copy operations.
14 changing the other. This module provides generic shallow and deep copy
27 Return a deep copy of *x*.
35 The difference between shallow and deep copying is only relevant for compound
41 * A *deep copy* constructs a new compound object and then, recursively, inserts
44 Two problems often exist with deep copy operations that don't exist with shallow
50 * Because deep copy copies *everything* it may copy too much, e.g.,
84 The latter is called to implement the deep copy operation; it is passed one
86 to make a deep copy of a component, it should call the :func:`deepcopy` function
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
DAllElementValueVisitor.java42 private final boolean deep; field in AllElementValueVisitor
65 public AllElementValueVisitor(boolean deep, in AllElementValueVisitor() argument
68 this.deep = deep; in AllElementValueVisitor()
190 if (deep) in visitAnnotationElementValue()
201 if (deep) in visitArrayElementValue()
/external/python/cpython2/Lib/test/
Dtest_mhlib.py130 def deep(folder, n): function
134 deep('deep/f1', 1)
135 deep('deep/f1', 2)
136 deep('deep/f1', 3)
137 deep('deep/f2', 4)
138 deep('deep/f2', 6)
139 deep('deep', 3)
140 deep('deep/f2/f3', 1)
141 deep('deep/f2/f3', 2)
/external/valgrind/none/tests/
Dsigstackgrowth.c27 static char *deep; variable
35 if (&here < deep) { in handler()
48 deep = &here - SIZE; in main()
/external/llvm/test/Transforms/SafeStack/
Dconstant-geps.ll4 %struct.deep = type { %union.anon }
19 %x = alloca %struct.deep, align 1
20 %b = getelementptr inbounds %struct.deep, %struct.deep* %x, i32 0, i32 0
/external/libxml2/test/URI/
Duri.data16 http://elsewhere.com/#deep
17 http://elsewhere.com/?deep
18 http://elsewhere.com/?deep#deep2
/external/python/cpython3/Lib/
Dcopy.py271 deep = memo is not None
272 if deep and args:
275 if deep:
279 if deep:
295 if deep:
303 if deep:
/external/autotest/server/site_tests/firmware_Cr50DeepSleepStress/
Dcontrol9 PURPOSE = "Verify deep sleep"
16 Cr50 should enter deep sleep every time the system goes into S3. Run
17 power_SuspendStress and verify the deep sleep count matches the number of
Dcontrol.reboot9 PURPOSE = "Verify deep sleep"
16 Cr50 should enter deep sleep every time the system goes into S5. Run
17 power_SuspendStress and verify the deep sleep count matches the number of
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
D_sklearn.py40 def get_params(self, deep=True): argument
62 if deep and hasattr(value, 'get_params'):
88 valid_params = self.get_params(deep=True)
114 _pprint(self.get_params(deep=False)),)
/external/libxml2/result/URI/
Duri.data16 http://elsewhere.com/#deep
17 http://elsewhere.com/?deep
18 http://elsewhere.com/?deep#deep2
/external/tensorflow/tensorflow/docs_src/tutorials/
Dwide_and_deep.md7 TensorFlow is great for training deep neural networks too, and you might be
12 train a wide linear model and a deep feed-forward neural network. This approach
22 sparse features and transformations), a deep model (feed-forward neural network
25 wide, deep, or Wide & Deep model using the tf.estimator API:
29 1. Select features for the deep part: Choose the continuous columns, the
49 deep model described in this tutorial:
60 part and the deep part of the model.
126 appeared in the training data. Let's add a deep model with embeddings to fix
131 The deep model is a feed-forward neural network, as shown in the previous
179 Through dense embeddings, deep models can generalize better and make predictions
[all …]
/external/autotest/client/site_tests/graphics_WebGLManyPlanetsDeep/
Dcontrol7 PURPOSE = "Execute the WebGL many planets deep test suite."
19 This test runs the WebGL many planets deep tests.
/external/python/cpython2/Lib/
Dcopy.py306 def _reconstruct(x, info, deep, memo=None): argument
327 if deep:
333 if deep:
350 if deep:
355 if deep:
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_LRN.pbtxt44 For details, see [Krizhevsky et al., ImageNet classification with deep
45 …NIPS 2012)](http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neura…
/external/tensorflow/tensorflow/docs_src/about/
Duses.md37 …<li> **Description**: A large-scale deployment of deep neural nets for search ranking on www.goog…
59 <li> **Description**: A deep neural network model for identifying promising drug candidates.</li>
67 …blog post](http://googleresearch.blogspot.com/2015/07/how-google-translate-squeezes-deep.html)</li>
/external/mesa3d/src/hgl/
DGLView.cpp283 BGLView::Archive(BMessage* data, bool deep) const in Archive()
285 return BView::Archive(data, deep); in Archive()
550 BGLScreen::Archive(BMessage* data, bool deep) const
552 return BWindowScreen::Archive(data, deep);
/external/tensorflow/tensorflow/docs_src/api_guides/python/
Dregression_examples.md24 regression model on discrete data with a deep neural network.</td>
182 a deep neural network to train the model. Both examples rely on the same
184 in a deep neural network.
190 regression that relies on a deep neural network. The
207 <td>Regression through a deep neural network.</td>
/external/tensorflow/tensorflow/core/ops/
Ddebug_ops.cc69 Performs CPU-to-CPU deep-copying of tensor.
72 deep-copying. See the documentation of Debug* ops for more details.
77 output: Output tensor, deep-copied from input.
/external/clang/test/SemaCXX/
Dcstyle-cast.cpp189 ppint *deep = (ppint*)(p3); in pointer_conversion() local
190 (void)(fnptr*)(deep); in pointer_conversion()

123456789