Searched defs:root (Results 76 - 100 of 958) sorted by relevance

1234567891011>>

/external/tensorflow/tensorflow/core/common_runtime/gpu/
H A Dgpu_stream_util_test.cc37 auto root = Scope::NewRootScope().ExitOnError(); local
39 TF_ASSERT_OK(root.ToGraph(&g));
57 auto root = Scope::NewRootScope().ExitOnError(); local
59 TF_ASSERT_OK(root.ToGraph(&g));
67 auto root = Scope::DisabledShapeInferenceScope().ExitOnError(); local
68 ops::MatMul(root, {}, {});
70 TF_ASSERT_OK(root.ToGraph(&g));
86 auto root = Scope::DisabledShapeInferenceScope().ExitOnError(); local
87 ops::MatMul(root, {}, {});
89 TF_ASSERT_OK(root
107 auto root = Scope::DisabledShapeInferenceScope().ExitOnError(); local
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dmfcc_op_test.cc38 Scope root = Scope::DisabledShapeInferenceScope(); local
43 Output spectrogram_const_op = Const(root.WithOpName("spectrogram_const_op"),
47 Const(root.WithOpName("sample_rate_const_op"), 22050);
49 Mfcc mfcc_op = Mfcc(root.WithOpName("mfcc_op"), spectrogram_const_op,
52 TF_ASSERT_OK(root.status());
54 ClientSession session(root);
H A Dspectrogram_op_test.cc38 Scope root = Scope::NewRootScope(); local
44 Output audio_const_op = Const(root.WithOpName("audio_const_op"),
48 AudioSpectrogram(root.WithOpName("spectrogram_op"), audio_const_op, 8, 1);
50 TF_ASSERT_OK(root.status());
52 ClientSession session(root);
71 Scope root = Scope::NewRootScope(); local
77 Output audio_const_op = Const(root.WithOpName("audio_const_op"),
81 AudioSpectrogram(root.WithOpName("spectrogram_op"), audio_const_op, 8, 1,
84 TF_ASSERT_OK(root.status());
86 ClientSession session(root);
[all...]
/external/toolchain-utils/binary_search_tool/full_bisect_test/
H A Dmain.c17 tree_ptr root = NULL; local
20 search_tree_insert (&root, integers[i]);
22 pre_order_traverse (root);
24 pre_order_traverse_no_recurse (root);
26 in_order_traverse (root);
28 in_order_traverse_no_recurse (root);
/external/v8/src/
H A Daddress-map.cc19 Object* root = isolate->heap()->root(root_index); local
20 if (!root->IsHeapObject()) continue;
21 // Omit root entries that can be written after initialization. They must
22 // not be referenced through the root list in the snapshot.
24 HeapObject* heap_object = HeapObject::cast(root);
27 // Some are initialized to a previous value in the root list.
33 // Immortal immovable root objects are constant and allocated on the first
35 // root index map contains all immortal immmovable root object
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeIterator.cs43 protected object root; field in class:Antlr.Runtime.Tree.TreeIterator
64 this.root = tree;
115 // while we're out of siblings, keep popping back up towards root
125 tree = null; // back at root? nothing left then
146 tree = root;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRUnbufferedCommonTreeNodeStream.h38 ANTLRCommonTree *root; variable
59 @property (retain, getter=getRoot, setter=setRoot:) ANTLRCommonTree *root; variable
119 - (ANTLRCommonTree *) root;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarReport2.java40 public Grammar root; field in class:GrammarReport2
43 this.root = rootGrammar;
48 stats(root, buf);
49 CompositeGrammar composite = root.composite;
50 for (Grammar g : composite.getDelegates(root)) {
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DWhiteSpaceInfo.java82 public void recompose(StylesheetRoot root) argument
84 root.recomposeWhiteSpaceInfo(this);
/external/deqp/framework/randomshaders/
H A DrsgExpressionGenerator.cpp40 // Create root
42 Expression* root = Expression::createRandom(m_state, valueRange); local
47 generate(root);
51 delete root;
56 return root;
59 void ExpressionGenerator::generate (Expression* root) argument
64 m_expressionStack.push_back(root);
/external/deqp/modules/gles2/functional/
H A Des2fAttribLocationTests.cpp61 TestCaseGroup* const root = new TestCaseGroup (context, "attribute_location", "Attribute location tests"); local
67 root->addChild(bindAttributeGroup);
80 root->addChild(bindMaxAttributeGroup);
93 root->addChild(aliasingGroup);
118 root->addChild(holeGroup);
133 root->addChild(bindTimeGroup);
146 root->addChild(relinkHoleGroup);
156 return root;
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DDirectoryInputFileProvider.java33 private final Path root; field in class:DirectoryInputFileProvider
35 public DirectoryInputFileProvider(Path root) { argument
36 this.root = root;
41 return root.getFileName().toString();
46 return new FileInputStream(root.resolve(filename).toFile());
64 try (Stream<Path> paths = Files.walk(root)) {
72 entries.add(root.relativize(t).toString().replace(File.separatorChar, '/'));
H A DDirectoryOutputFileProvider.java26 private final Path root; field in class:DirectoryOutputFileProvider
28 public DirectoryOutputFileProvider(Path root) { argument
29 this.root = root;
34 Path path = root.resolve(filename);
44 Path path = root.resolve(filename);
H A DZipInputFileProvider.java28 private final Path root; field in class:ZipInputFileProvider
32 public ZipInputFileProvider(Path root) throws IOException { argument
33 this.root = root;
34 this.zipFile = new ZipFile(root.toFile());
44 return root.getFileName().toString();
H A DZipOutputFileProvider.java33 public ZipOutputFileProvider(Path root) throws IOException { argument
34 out = new ZipOutputStream(new BufferedOutputStream(Files.newOutputStream(root)));
/external/e2fsprogs/intl/
H A Dos2compat.c51 char *root = getenv ("UNIXROOT"); local
57 if (root)
59 size_t sl = strlen (root);
61 memcpy (_nlos2_libdir, root, sl);
71 if (root)
73 size_t sl = strlen (root);
75 memcpy (_nlos2_localealiaspath, root, sl);
85 if (root)
87 size_t sl = strlen (root);
89 memcpy (_nlos2_localedir, root, s
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DReportDataModel.java51 final AllItem root = new AllItem ();
64 packageItem = new PackageItem (root, packageName, packageVMName);
67 root.addChild (packageItem);
126 view = new ReportDataView (root);
162 ReportDataView (final IItem root) argument
164 m_root = root;
/external/freetype/src/bdf/
H A Dbdfdrivr.h54 FT_FaceRec root; member in struct:BDF_FaceRec_
/external/freetype/src/pshinter/
H A Dpshmod.c29 FT_ModuleRec root; member in struct:PS_Hinter_Module_Rec_
54 FT_Memory memory = module->root.memory;
/external/freetype/src/type42/
H A Dt42types.h35 FT_FaceRec root; member in struct:T42_FaceRec_
/external/icu/icu4c/source/i18n/
H A Dcollationroot.cpp90 const CollationTailoring *root = getRoot(errorCode); local
92 return root->data;
97 const CollationTailoring *root = getRoot(errorCode); local
99 return root->settings;
/external/icu/icu4c/source/test/cintltst/
H A Dccolltst.c29 void addCollTest(TestNode** root);
31 void addCollTest(TestNode** root) argument
33 addCollAPITest(root);
34 addCurrencyCollTest(root);
36 addNormTest(root);
38 addGermanCollTest(root);
39 addSpanishCollTest(root);
40 addFrenchCollTest(root);
41 addKannaCollTest(root);
42 addTurkishCollTest(root);
[all...]
H A Dcposxtst.c27 void addPosixTest(TestNode** root);
29 void addPosixTest(TestNode** root) argument
32 addTest(root, &TestMessageCatalog, "tsutil/cposxtst/TestMessageCatalog");
H A Deurocreg.c14 void addTestEuroRegression(TestNode** root);
17 void addTestEuroRegression(TestNode** root) argument
19 addTest(root, &TestEuroRegression, "tsconv/eurocreg/TestEuroRegression");
187 void addTestEuroRegression(TestNode** root) argument
/external/icu/icu4c/source/test/iotest/
H A Dtrnstst.c311 addTranslitTest(TestNode** root) { argument
313 addTest(root, &TestTranslitOps, "translit/ops");
315 addTest(root, &TestTranslitFileOut, "translit/fileOut");
316 addTest(root, &TestTranslitStringOut, "translit/stringOut");

Completed in 1141 milliseconds

1234567891011>>