/external/tensorflow/tensorflow/go/ |
graph.go | 58 // Node prefix 59 Prefix string 107 cprefix := C.CString(options.Prefix) 154 // Names of imported nodes will be prefixed with prefix. 155 func (g *Graph) Import(def []byte, prefix string) error { 156 return g.ImportWithOptions(def, GraphImportOptions{Prefix: prefix}) 188 // prefix, if non-empty, is the name prefix used for all operations added to the graph to compute 190 func (g *Graph) AddGradients(prefix string, y []Output, x []Output, dx []Output) ([]Output, error) [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
PathDiagnostic.cpp | 908 StringRef Prefix = StringRef()) { 911 Out << Prefix << '\'' << *D << '\''; 916 StringRef Prefix = StringRef()) { 922 Out << Prefix << "anonymous block" [all...] |
/external/clang/tools/scan-build/bin/ |
scan-build | 188 # Strip the prefix '$Prog-' if we are dumping files to /tmp. 289 # UpdatePrefix - Compute the common prefix of files. 292 my $Prefix; 299 if (!defined $Prefix) { 300 $Prefix = $x; 304 chop $Prefix while (!($x =~ /^\Q$Prefix/)); 308 return $Prefix; 584 # to update the common prefix directory. 755 my $prefix = GetPrefix() [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/AsmParser/ |
SystemZAsmParser.cpp | 630 // Parse one register of the form %<prefix><number>. 634 // Eat the % prefix. 643 // Check that there's a prefix. 647 char Prefix = Name[0]; 653 // Look for valid combinations of prefix and number. 654 if (Prefix == 'r' && Reg.Num < 16) 656 else if (Prefix == 'f' && Reg.Num < 16) 658 else if (Prefix == 'v' && Reg.Num < 32) 660 else if (Prefix == 'a' && Reg.Num < 16) 662 else if (Prefix == 'c' && Reg.Num < 16 [all...] |
/build/soong/ui/terminal/ |
status.go | 53 s.writer.Print(fmt.Sprintf("%s%s", level.Prefix(), message))
|
/cts/tests/signature/api-check/ |
build_signature_apk.mk | 56 # Prefix every entry with cts-
|
/external/libogg/ |
libogg.spec | 42 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_prefix} --enable-static 89 - remove Prefix
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfAccelTable.cpp | 71 void DwarfAccelTable::FinalizeTable(AsmPrinter *Asm, StringRef Prefix) { 99 Data[i]->Sym = Asm->createTempSymbol(Prefix);
|
/external/llvm/lib/Fuzzer/ |
FuzzerInternal.h | 432 void WriteUnitToFileWithPrefix(const Unit &U, const char *Prefix); 456 void DumpCurrentUnit(const char *Prefix);
|
FuzzerLoop.cpp | 173 void Fuzzer::DumpCurrentUnit(const char *Prefix) { 181 Prefix); 498 void Fuzzer::WriteUnitToFileWithPrefix(const Unit &U, const char *Prefix) { 501 std::string Path = Options.ArtifactPrefix + Prefix + Hash(U);
|
/external/lzma/CPP/Common/ |
Wildcard.cpp | 444 int CCensor::FindPrefix(const UString &prefix) const
447 if (CompareFileNames(Pairs[i].Prefix, prefix) == 0)
543 UString prefix;
local 548 // we ignore "?" wildcard in "\\?\" prefix.
592 prefix += front;
593 prefix.Add_PathSepar();
599 int index = FindPrefix(prefix);
601 index = Pairs.Add(CPair(prefix));
607 // we create universal item, if we skip all parts as prefix (like \ or L:\ ) [all...] |
/external/selinux/mcstrans/share/examples/nato/setrans.d/ |
rel.conf | 6 Prefix=REL 7 Prefix=REL TO 8 Prefix=RELEASABLE TO 9 Prefix=RELEASEABLE TO
|
/external/spirv-llvm/lib/SPIRV/ |
SPIRVUtil.cpp | 369 return std::string(kSPIRVName::Prefix) + S + kSPIRVName::Postfix; 374 assert (S.find(kSPIRVName::Prefix) == 0); 375 const size_t Start = strlen(kSPIRVName::Prefix); 382 return std::string(kSPIRVName::Prefix) + S; 388 const size_t Start = strlen(kSPIRVName::Prefix); 389 if (!R.startswith(kSPIRVName::Prefix)) 946 if (!F->hasName() || !F->getName().startswith(kSPIRVName::Prefix)) 1047 Name = Tmp = kSPIRVName::Prefix + Tmp; [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
MDBuilder.cpp | 81 MDNode *MDBuilder::createFunctionSectionPrefix(StringRef Prefix) { 84 createString(Prefix)});
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
LoopUnrollAndJamPass.cpp | 86 // Returns true if the loop has any metadata starting with Prefix. For example a 87 // Prefix of "llvm.loop.unroll." returns true if we have any unroll metadata. 88 static bool HasAnyUnrollPragma(const Loop *L, StringRef Prefix) { 103 if (S->getString().startswith(Prefix))
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/ |
ResourceFileWriter.cpp | [all...] |
/external/syzkaller/vendor/cloud.google.com/go/storage/ |
bucket.go | 643 // have a non-empty Prefix field, and a zero value for all other fields. These 659 req.Prefix(it.query.Prefix) 683 for _, prefix := range resp.Prefixes { 684 it.items = append(it.items, &ObjectAttrs{Prefix: prefix}) 692 // optionally set the iterator's Prefix field to restrict the list to buckets 693 // whose names begin with the prefix. By default, all buckets in the project 710 // Prefix restricts the iterator to buckets whose names begin with it. 711 Prefix strin [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/AsmParser/ |
AArch64AsmParser.cpp | 86 PrefixInfo Prefix; 89 Prefix.Active = true; 90 Prefix.Dst = Inst.getOperand(0).getReg(); 96 Prefix.Active = true; 97 Prefix.Predicated = true; 98 Prefix.ElementSize = TSFlags & AArch64::ElementSizeMask; 99 assert(Prefix.ElementSize != AArch64::ElementSizeNone && 101 Prefix.Dst = Inst.getOperand(0).getReg(); 102 Prefix.Pg = Inst.getOperand(2).getReg(); 108 Prefix.Active = true [all...] |
/external/clang/include/clang/Driver/ |
Driver.h | 119 /// A prefix directory used to emulate a limited subset of GCC's '-Bprefix' 129 /// Dynamic loader prefix, if present 426 /// as part of compilation; the file will have the given prefix and suffix. 429 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
|
/external/llvm/lib/Transforms/IPO/ |
ArgumentPromotion.cpp | 390 /// Returns true if Prefix is a prefix of longer. That means, Longer has a size 391 /// that is greater than or equal to the size of prefix, and each of the 392 /// elements in Prefix is the same as the corresponding elements in Longer. 394 /// This means it also returns true when Prefix and Longer are equal! 395 static bool IsPrefix(const IndicesVector &Prefix, const IndicesVector &Longer) { 396 if (Prefix.size() > Longer.size()) 398 return std::equal(Prefix.begin(), Prefix.end(), Longer.begin()); 402 /// Checks if Indices, or a prefix of Indices, is in Set [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
EnumDirItems.cpp | 124 unsigned CDirItems::AddPrefix(int phyParent, int logParent, const UString &prefix)
128 return Prefixes.Add(prefix);
346 const UStringVector &addArchivePrefix, // prefix from curNode
419 const UStringVector &addArchivePrefix, // prefix from curNode
530 static bool IsVirtualFsFolder(const FString &prefix, const UString &name)
532 UString s = fs2us(prefix);
543 const UStringVector &addArchivePrefix, // prefix from curNode
839 int phyParent = pair.Prefix.IsEmpty() ? -1 : dirItems.AddPrefix(-1, -1, pair.Prefix);
850 RINOK(EnumerateDirItems(pair.Head, phyParent, logParent, us2fs(pair.Prefix), UStringVector(), 902 const UString prefix = fullPath.Left(fullPath.Len() - logPath.Len()); local [all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
Spiller.cpp | 38 cl::Prefix,
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
X86MCInstLower.cpp | 72 const char *Prefix = "__imp_"; 73 Name.insert(Name.begin(), Prefix, Prefix+strlen(Prefix)); 540 MCInst prefix; local 541 prefix.setOpcode(X86::DATA16_PREFIX); 542 OutStreamer.EmitInstruction(prefix); 569 MCInst prefix; local 570 prefix.setOpcode(X86::DATA16_PREFIX); 571 OutStreamer.EmitInstruction(prefix); [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
ArgumentPromotion.cpp | 239 /// Returns true if Prefix is a prefix of longer. That means, Longer has a size 240 /// that is greater than or equal to the size of prefix, and each of the 241 /// elements in Prefix is the same as the corresponding elements in Longer. 243 /// This means it also returns true when Prefix and Longer are equal! 244 static bool IsPrefix(const ArgPromotion::IndicesVector &Prefix, 246 if (Prefix.size() > Longer.size()) 248 for (unsigned i = 0, e = Prefix.size(); i != e; ++i) 249 if (Prefix[i] != Longer[i]) 255 /// Checks if Indices, or a prefix of Indices, is in Set [all...] |
/external/swiftshader/third_party/LLVM/tools/lli/ |
lli.cpp | 68 cl::Prefix,
|