Home
last modified time | relevance | path

Searched refs:postfix (Results 1 – 25 of 183) sorted by relevance

12345678

/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Ddata_type.cc78 const std::string postfix = vec_size == 1 ? "" : std::to_string(vec_size); in ToCLDataType() local
81 return "half" + postfix; in ToCLDataType()
83 return "float" + postfix; in ToCLDataType()
85 return "double" + postfix; in ToCLDataType()
87 return "short" + postfix; in ToCLDataType()
89 return "int" + postfix; in ToCLDataType()
91 return "long" + postfix; in ToCLDataType()
93 return "char" + postfix; in ToCLDataType()
95 return "ushort" + postfix; in ToCLDataType()
97 return "uint" + postfix; in ToCLDataType()
[all …]
/external/icu/icu4c/source/tools/toolutil/
Dwritesrc.cpp125 const char *postfix) { in usrc_writeArray() argument
177 if(postfix!=NULL) { in usrc_writeArray()
178 fputs(postfix, f); in usrc_writeArray()
186 const char *postfix) { in usrc_writeUTrie2Arrays() argument
189 … usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength+pTrie->dataLength, postfix); in usrc_writeUTrie2Arrays()
192 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, postfix); in usrc_writeUTrie2Arrays()
193 usrc_writeArray(f, data32Prefix, pTrie->data32, 32, pTrie->dataLength, postfix); in usrc_writeUTrie2Arrays()
202 const char *postfix) { in usrc_writeUTrie2Struct() argument
241 if(postfix!=NULL) { in usrc_writeUTrie2Struct()
242 fputs(postfix, f); in usrc_writeUTrie2Struct()
[all …]
Dwritesrc.h54 const char *postfix);
65 const char *postfix);
77 const char *postfix);
86 const char *postfix);
98 const char *postfix);
120 const char *postfix);
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Darguments.cc54 const std::string& postfix, const std::string& arg_name) { in RenameArg() argument
59 return object_name + postfix + in RenameArg()
64 return arg_name + postfix; in RenameArg()
91 void Arguments::RenameArgs(const std::string& postfix, in RenameArgs() argument
98 code->replace(arg_pos, arg_name.size(), arg_name + postfix); in RenameArgs()
103 absl::Status Arguments::Merge(Arguments&& args, const std::string& postfix) { in Merge() argument
108 const std::string name = v.first + postfix; in Merge()
117 const std::string name = v.first + postfix; in Merge()
125 AddInt(RenameArg(object_names, postfix, v.first), v.second.value); in Merge()
128 AddFloat(RenameArg(object_names, postfix, v.first), v.second.value); in Merge()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
DSeparatedItemStringBuilder.java10 private final String postfix; field in SeparatedItemStringBuilder
14 public SeparatedItemStringBuilder(String prefix, String separator, String postfix) { in SeparatedItemStringBuilder() argument
17 this.postfix = postfix; in SeparatedItemStringBuilder()
43 return builder.toString() + postfix; in toString()
/external/llvm-project/compiler-rt/test/
Dlit.common.cfg.py502 for postfix in ["2", "1", ""]:
504 …ubstitutions.append( ("%ld_flags_rpath_exe" + postfix, '-Wl,-rpath,@executable_path/ %dynamiclib' …
505 …itutions.append( ("%ld_flags_rpath_so" + postfix, '-install_name @rpath/`basename %dynamiclib{}`'.…
507 …s.append( ("%ld_flags_rpath_exe" + postfix, "-Wl,-z,origin -Wl,-rpath,\$ORIGIN -L%T -l%xdynamiclib…
508 config.substitutions.append( ("%ld_flags_rpath_so" + postfix, '') )
510 …itutions.append( ("%ld_flags_rpath_exe" + postfix, "-Wl,-rpath,\$ORIGIN -L%T -l%xdynamiclib_namesp…
511 config.substitutions.append( ("%ld_flags_rpath_so" + postfix, '') )
513 …stitutions.append( ("%ld_flags_rpath_exe" + postfix, "-Wl,-R\$ORIGIN -L%T -l%xdynamiclib_namespec"…
514 config.substitutions.append( ("%ld_flags_rpath_so" + postfix, '') )
517 config.substitutions.append( ("%dynamiclib" + postfix, '%T/%xdynamiclib_filename' + postfix) )
[all …]
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dcert-dcl21-cpp.rst6 This check flags postfix ``operator++`` and ``operator--`` declarations
10 The object returned by a postfix increment or decrement operator is supposed
14 implementation of a postfix increment or decrement operator should instead
16 Similarly, it is unexpected for the postfix operator to return a reference to
21 DCL21-CPP. Overloaded postfix increment and decrement operators should return a
/external/lzma/CPP/7zip/UI/Common/
DArchiveName.cpp102 UString postfix; in CreateArchiveName() local
109 const UString name2 = name + postfix; in CreateArchiveName()
142 postfix = "_"; in CreateArchiveName()
143 postfix.Add_UInt32(index); in CreateArchiveName()
146 name += postfix; in CreateArchiveName()
/external/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
DSymbolFileBreakpad.cpp437 llvm::ArrayRef<uint8_t> SymbolFileBreakpad::SaveAsDWARF(postfix::Node &node) { in SaveAsDWARF()
457 postfix::Node *rhs = postfix::ParseOneExpression(rule->second, node_alloc); in ParseCFIUnwindRow()
463 bool success = postfix::ResolveSymbols( in ParseCFIUnwindRow()
464 rhs, [&](postfix::SymbolNode &symbol) -> postfix::Node * { in ParseCFIUnwindRow()
467 return postfix::MakeNode<postfix::InitialValueNode>(node_alloc); in ParseCFIUnwindRow()
471 return postfix::MakeNode<postfix::RegisterNode>( in ParseCFIUnwindRow()
582 std::vector<std::pair<llvm::StringRef, postfix::Node *>> program = in ParseWinUnwindPlan()
583 postfix::ParseFPOProgram(record->ProgramString, node_alloc); in ParseWinUnwindPlan()
592 [&](postfix::SymbolNode &symbol) -> postfix::Node * { in ParseWinUnwindPlan()
599 return postfix::MakeNode<postfix::RegisterNode>( in ParseWinUnwindPlan()
[all …]
/external/llvm-project/polly/docs/experiments/matmul/
Drunall.sh45 -polly-import-jscop-postfix=interchanged -polly-process-unprofitable -polly-use-llvm-names
47 -polly-import-jscop-postfix=interchanged+tiled -polly-process-unprofitable -polly-use-llvm-names
49 -polly-import-jscop-postfix=interchanged+tiled+vector \
53 opt -S -basic-aa -polly-import-jscop -polly-import-jscop-postfix=interchanged \
57 -polly-import-jscop-postfix=interchanged+tiled -polly-codegen \
61 -polly-import-jscop-postfix=interchanged+tiled+vector -polly-codegen \
65 -polly-import-jscop-postfix=interchanged+tiled+vector -polly-codegen \
/external/clang/test/Parser/
Dattributes.mm14 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi…
17 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C…
21 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{…
24 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv…
/external/llvm-project/clang/test/Parser/
Dattributes.mm16 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi…
19 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C…
22 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{…
25 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv…
/external/brotli/c/common/
Dconstants.h148 uint32_t postfix = (1u << npostfix) - 1; in BrotliCalculateDistanceCodeLimit() local
181 result.max_alphabet_size = ((group << npostfix) | postfix) + ndirect + in BrotliCalculateDistanceCodeLimit()
184 result.max_distance = ((start + extra) << npostfix) + postfix + ndirect + 1; in BrotliCalculateDistanceCodeLimit()
/external/llvm-project/lldb/source/Symbol/
DPostfixExpression.cpp20 using namespace lldb_private::postfix;
44 Node *postfix::ParseOneExpression(llvm::StringRef expr, in ParseOneExpression()
88 postfix::ParseFPOProgram(llvm::StringRef prog, llvm::BumpPtrAllocator &alloc) { in ParseFPOProgram()
240 bool postfix::ResolveSymbols( in ResolveSymbols()
245 void postfix::ToDWARF(Node &node, Stream &stream) { in ToDWARF()
/external/tensorflow/tensorflow/core/util/
Dcuda_sparse.h44 #define GPUSPARSE(postfix) CUSPARSE_##postfix argument
45 #define gpusparse(postfix) cusparse##postfix argument
58 #define GPUSPARSE(postfix) HIPSPARSE_##postfix argument
59 #define gpusparse(postfix) hipsparse##postfix argument
/external/puffin/
DREADME.md19 vectors with postfix `hcodes_`.
23 identified by vectors with postfix `rcodes_`.
27 are identified by vectors with postfix `lens_`.
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dconvolution_transposed_thin.cc59 const std::vector<std::string> postfix = {channel_x, ".y", ".z", ".w"}; in GenerateConvolutionTransposedCode() local
101 c += r_s + postfix[d] + " = dot(src, args.weights.Read(" + in GenerateConvolutionTransposedCode()
118 c += r_s + postfix[d] + " += dot(src, args.weights.Read(" + in GenerateConvolutionTransposedCode()
138 std::to_string(x) + "]" + postfix[d] + ";\n"; in GenerateConvolutionTransposedCode()
Dconcat_z.cc88 const std::string postfix[] = {".x", ".y", ".z", ".w"}; in GetConcatKernelCode() local
98 c += " result" + postfix[out_channel] + " = "; in GetConcatKernelCode()
99 c += temp_name + postfix[ch] + ";\n"; in GetConcatKernelCode()
/external/brotli/c/enc/
Dprefix.h38 size_t postfix = dist & postfix_mask; in PrefixEncodeCopyDistance() local
44 ((2 * (nbits - 1) + prefix) << postfix_bits) + postfix)); in PrefixEncodeCopyDistance()
/external/cldr/tools/java/org/unicode/cldr/util/
DTabber.java45 return prefix + result.toString() + postfix; in process()
49 private String postfix = ""; field in Tabber
210 return postfix; in getPostfix()
223 postfix = string; in setPostfix()
/external/OpenCL-CTS/test_conformance/c11_atomics/
Dtest_atomics.cpp57 std::string postfix(memoryOrderScope.empty() ? "" : "_explicit"); in ProgramCore() local
59 " atomic_store"+postfix+"(&destMemory[tid], tid"+memoryOrderScope+");\n"; in ProgramCore()
239 std::string postfix(memoryOrderScopeLoad.empty() ? "" : "_explicit"); in ProgramCore() local
240 return " atomic_store" + postfix + "(&destMemory[tid], tid" in ProgramCore()
244 + postfix + "(&destMemory[tid]" + memoryOrderScopeLoad + ");\n"; in ProgramCore()
339 std::string postfix(memoryOrderScope.empty() ? "" : "_explicit"); in ProgramCore() local
341 " oldValues[tid] = atomic_exchange"+postfix+"(&destMemory[0], tid"+memoryOrderScope+");\n" in ProgramCore()
343 …" oldValues[tid] = atomic_exchange"+postfix+"(&destMemory[0], oldValues[tid]"+memoryOrderScope+… in ProgramCore()
489 std::string postfix(memoryOrderScope.empty() ? "" : "_explicit"); in ProgramCore() local
495 …" if(atomic_compare_exchange_strong"+postfix+"(&destMemory[0], &expected, oldValues[tid]"+memoryO… in ProgramCore()
[all …]
/external/boringssl/src/crypto/x509/
Dby_dir.c278 const char *postfix = ""; in get_cert_by_subject() local
288 postfix = ""; in get_cert_by_subject()
293 postfix = "r"; in get_cert_by_subject()
358 "%s%08lx.%s%d", ent->dir, h, postfix, k); in get_cert_by_subject()
362 postfix, k); in get_cert_by_subject()
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509/
Dby_dir.c278 const char *postfix = ""; in get_cert_by_subject() local
288 postfix = ""; in get_cert_by_subject()
293 postfix = "r"; in get_cert_by_subject()
358 "%s%08lx.%s%d", ent->dir, h, postfix, k); in get_cert_by_subject()
362 postfix, k); in get_cert_by_subject()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dregexp_generator.cc68 std::vector<std::string> postfix; in Generate() local
69 GeneratePostfix(&postfix, 0, 0, 0); in Generate()
77 std::vector<std::string> postfix; in GenerateRandom() local
78 GenerateRandomPostfix(&postfix, 0, 0, 0); in GenerateRandom()
/external/dokka/core/src/main/kotlin/Formats/
DPackageListService.kt55 .sorted().joinTo(this, separator = "\n", postfix = "\n") in formatPackageList()
57 packages.sorted().joinTo(this, separator = "\n", postfix = "\n") in formatPackageList()

12345678