/external/tensorflow/tensorflow/core/lib/gtl/ |
edit_distance_test.cc | 78 TEST_F(LevenshteinDistanceTest, Prefix) {
|
/external/tensorflow/tensorflow/java/src/gen/cc/ |
source_writer.h | 51 // A common use case of a prefix is for commenting or documenting the code. 53 // The prefix is written after the indentation, For example, invoking 54 // Indent(2)->Prefix("//") will result in prefixing lines with " //". 56 // An empty value ("") will remove any line prefix that was previously set. 57 SourceWriter& Prefix(const char* line_prefix); 70 // the indentation, prefix, etc.)
|
/external/v8/src/compiler/ |
machine-operator.h | 723 #define PSEUDO_OP(Prefix, Suffix) \ 724 const Operator* Prefix##Suffix() { \ 725 return Is32() ? Prefix##32##Suffix() : Prefix##64##Suffix(); \
|
/build/soong/ui/status/ |
log.go | 71 fmt.Fprintf(v.w, "%s%s\n", level.Prefix(), message)
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSetupDxe/ |
SetupInfoRecords.c | 237 CHAR16 Prefix;
278 Prefix = '0';
280 Prefix = ' ';
286 *(TempStr++) = Prefix;
330 CHAR16 Prefix;
356 Prefix = '0';
358 Prefix = ' ';
364 *(TempStr++) = Prefix;
[all...] |
/external/brotli/csharp/org/brotli/dec/ |
Decode.cs | 137 int n = Org.Brotli.Dec.Prefix.BlockLengthNBits[code];
138 return Org.Brotli.Dec.Prefix.BlockLengthOffset[code] + Org.Brotli.Dec.BitReader.ReadBits(br, n);
722 int insertCode = Org.Brotli.Dec.Prefix.InsertRangeLut[rangeIdx] + (((int)(((uint)cmdCode) >> 3)) & 7);
723 int copyCode = Org.Brotli.Dec.Prefix.CopyRangeLut[rangeIdx] + (cmdCode & 7);
724 state.insertLength = Org.Brotli.Dec.Prefix.InsertLengthOffset[insertCode] + Org.Brotli.Dec.BitReader.ReadBits(br, Org.Brotli.Dec.Prefix.InsertLengthNBits[insertCode]);
725 state.copyLength = Org.Brotli.Dec.Prefix.CopyLengthOffset[copyCode] + Org.Brotli.Dec.BitReader.ReadBits(br, Org.Brotli.Dec.Prefix.CopyLengthNBits[copyCode]);
[all...] |
/external/iputils/ |
iputils.spec | 13 Prefix: %{_prefix}
|
/external/lzma/CPP/7zip/UI/Common/ |
Update.cpp | 106 FString Prefix;
174 name.Insert(0, Prefix);
287 SplitPathToParts_2(path, Prefix, Name);
833 volStreamSpec->Prefix = us2fs(archivePath.GetFinalVolPath());
834 volStreamSpec->Prefix += '.';
840 updateCallbackSpec->VolName = archivePath.Prefix + archivePath.Name;
1310 FString prefix = us2fs(censor.Pairs[0].Prefix); local [all...] |
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/ |
rx-util.hpp | 26 #define RXCPP_CONCAT(Prefix, Suffix) Prefix ## Suffix 27 #define RXCPP_CONCAT_EVALUATE(Prefix, Suffix) RXCPP_CONCAT(Prefix, Suffix) 29 #define RXCPP_MAKE_IDENTIFIER(Prefix) RXCPP_CONCAT_EVALUATE(Prefix, __LINE__)
|
/external/llvm/tools/llvm-lto/ |
llvm-lto.cpp | 43 cl::Prefix, cl::ZeroOrMore, cl::init('2')); 109 "thinlto-prefix-replace", 112 "prefix of output file is oldprefix it will be " 152 static cl::opt<unsigned> Parallelism("j", cl::Prefix, cl::init(1), 229 static void error(std::error_code EC, const Twine &Prefix) { 231 error(Prefix + ": " + EC.message()); 235 static void error(const ErrorOr<T> &V, const Twine &Prefix) { 236 error(V.getError(), Prefix); 322 /// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-lto/ |
llvm-lto.cpp | 69 cl::Prefix, cl::ZeroOrMore, cl::init('2')); 143 "thinlto-prefix-replace", 146 "prefix of output file is oldprefix it will be " 172 "suffixes to the given file path prefix.")); 208 static cl::opt<unsigned> Parallelism("j", cl::Prefix, cl::init(1), 288 static void error(std::error_code EC, const Twine &Prefix) { 290 error(Prefix + ": " + EC.message()); 294 static void error(const ErrorOr<T> &V, const Twine &Prefix) { 295 error(V.getError(), Prefix); 407 /// prefix matching \p OldPrefix with \p NewPrefix. Also, create th [all...] |
/external/llvm/lib/Support/ |
APInt.cpp | 197 /// @brief Prefix increment operator. Increments the APInt by one. 226 /// @brief Prefix decrement operator. Decrements the APInt by one. [all...] |
/external/swiftshader/third_party/LLVM/lib/Support/ |
APInt.cpp | 194 /// @brief Prefix increment operator. Increments the APInt by one. 223 /// @brief Prefix decrement operator. Decrements the APInt by one. [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
APInt.cpp | 171 /// Prefix increment operator. Increments the APInt by one. 180 /// Prefix decrement operator. Decrements the APInt by one. [all...] |
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
APInt.cpp | 197 /// @brief Prefix increment operator. Increments the APInt by one. 226 /// @brief Prefix decrement operator. Decrements the APInt by one. [all...] |
/external/clang/lib/Format/ |
ContinuationIndenter.cpp | [all...] |
/external/llvm/lib/Target/SystemZ/AsmParser/ |
SystemZAsmParser.cpp | 497 // Parse one register of the form %<prefix><number>. 501 // Eat the % prefix. 510 // Check that there's a prefix. 514 char Prefix = Name[0]; 520 // Look for valid combinations of prefix and number. 521 if (Prefix == 'r' && Reg.Num < 16) 523 else if (Prefix == 'f' && Reg.Num < 16) 525 else if (Prefix == 'v' && Reg.Num < 32) 527 else if (Prefix == 'a' && Reg.Num < 16) 541 // RegV Group, since the f-prefix yields the FP group even while use [all...] |
/external/clang/lib/Frontend/ |
InitHeaderSearch.cpp | 66 /// AddSystemHeaderPrefix - Add the specified prefix to the system header 67 /// prefix list. 68 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) { 69 SystemHeaderPrefixes.emplace_back(Prefix, IsSystemHeader); 664 Init.AddSystemHeaderPrefix(HSOpts.SystemHeaderPrefixes[i].Prefix,
|
/external/llvm/include/llvm/Support/ |
FileSystem.h | 590 /// The filename is of the form prefix-random_chars.suffix. Since the directory 591 /// is not know to the caller, Prefix and Suffix cannot have path separators. 596 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 601 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 604 std::error_code createUniqueDirectory(const Twine &Prefix, [all...] |
/external/llvm/tools/llvm-readobj/ |
ARMEHABIPrinter.h | 64 void PrintRegisters(uint32_t Mask, StringRef Prefix); 277 void OpcodeDecoder::PrintRegisters(uint32_t VFPMask, StringRef Prefix) { 284 OS << Prefix << RI;
|
/external/swiftshader/third_party/LLVM/tools/llvm-ld/ |
llvm-ld.cpp | 65 static cl::list<std::string> LibPaths("L", cl::Prefix,
69 static cl::list<std::string> FrameworkPaths("F", cl::Prefix,
73 static cl::list<std::string> Libraries("l", cl::Prefix,
75 cl::value_desc("library prefix"));
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llc/ |
llc.cpp | 94 cl::Prefix, 507 std::string Prefix = 509 WithColor::error(errs(), Prefix) << "input module is broken!\n";
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
ARMEHABIPrinter.h | 64 void PrintRegisters(uint32_t Mask, StringRef Prefix); 294 inline void OpcodeDecoder::PrintRegisters(uint32_t VFPMask, StringRef Prefix) { 301 OS << Prefix << RI;
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
FileSystem.h | 601 /// The filename is of the form prefix-random_chars.suffix. Since the directory 602 /// is not know to the caller, Prefix and Suffix cannot have path separators. 607 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 612 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 615 std::error_code createUniqueDirectory(const Twine &Prefix, [all...] |
/external/tensorflow/tensorflow/contrib/bigtable/kernels/test_kernels/ |
bigtable_test_client_test.cc | 154 table.ReadRows(::google::cloud::bigtable::RowRange::Prefix("r"), filter); 208 table.ReadRows(::google::cloud::bigtable::RowRange::Prefix("r"), filter); 262 table.ReadRows(::google::cloud::bigtable::RowRange::Prefix("r"), filter);
|