HomeSort by relevance Sort by last modified time
    Searched refs:Prefix (Results 126 - 150 of 376) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/spirv-llvm/lib/SPIRV/
SPIRVToOCL20.cpp 62 MangledAtomicTypeNamePrefix("spirv-atomic-prefix",
63 cl::desc("Mangled atomic type name prefix"), cl::init("U7_Atomic"));
125 /// Get prefix work_/sub_ for OCL group builtin functions.
410 std::string Prefix = getGroupBuiltinPrefix(CI);
414 DemangledName = Prefix + DemangledName;
422 DemangledName = Prefix + kSPIRVName::GroupPrefix +
495 std::string Prefix;
499 Prefix = kOCLBuiltinName::WorkPrefix;
502 Prefix = kOCLBuiltinName::SubPrefix;
507 return Prefix;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
Miscompilation.cpp 53 Expected<TestResult> doTest(std::vector<std::string> &Prefix,
62 ReduceMiscompilingPasses::doTest(std::vector<std::string> &Prefix,
65 // with JUST the kept passes, discard the prefix passes.
98 if (Prefix.empty())
101 // Next, see if the program is broken if we run the "prefix" passes first,
103 outs() << "Checking to see if '" << getPassesString(Prefix)
106 // If it is not broken with the kept passes, it's possible that the prefix
108 // WORKS after the prefix passes, but then fails if running the prefix AND
110 // prefix passes, then discard the prefix passes
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Output.c 171 IP6_PREFIX_LIST_ENTRY *Prefix;
234 Prefix = NET_LIST_USER_STRUCT (Entry, IP6_PREFIX_LIST_ENTRY, Link);
235 if (Prefix->PreferredLifetime == 0) {
236 Ip6RemoveAddr (NULL, &SourceList, &SourceCount, &Prefix->Prefix, Prefix->PrefixLength);
252 // Rule 8: Use longest matching prefix.
355 Prefix an IP6 basic head and unfragmentable extension headers and a fragment header
359 @param[in] Packet The packet to prefix the IP6 header to.
691 // For unicast packets, use a combination of the Destination Cache, the Prefix List
    [all...]
Ip6Common.c 289 the prefix FF02:0:0:0:0:1:FF00::/104.
400 a Multicast Listener Done. If Prefix is NULL, all address in the address list
401 will be removed. If Prefix is not NULL, the address that matching the Prefix
407 @param[in] Prefix NULL or an IPv6 address prefix.
408 @param[in] PrefixLength The length of Prefix.
411 @retval EFI_NOT_FOUND The address matching the Prefix with PrefixLength
421 IN EFI_IPv6_ADDRESS *Prefix OPTIONAL,
440 if (Prefix == NULL ||
    [all...]
Ip6Common.h 155 the prefix FF02:0:0:0:0:1:FF00::/104.
257 a Multicast Listener Done. If Prefix is NULL, all address in the address list
258 will be removed. If Prefix is not NULL, the address that matching the Prefix
264 @param[in] Prefix NULL or an IPv6 address prefix
265 @param[in] PrefixLength the length of Prefix
268 @retval EFI_NOT_FOUND The address matching the Prefix with PrefixLength
278 IN EFI_IPv6_ADDRESS *Prefix OPTIONAL,
Ip6Nd.c 106 of prefix entries is also returned.
109 @param[out] PrefixCount The number of returned prefix entries.
112 @retval EFI_SUCCESS The prefix table successfully built.
113 @retval EFI_OUT_OF_RESOURCES Failed to allocate the memory for the prefix table.
155 IP6_COPY_ADDRESS (&EfiPrefix->Address, &PrefixList->Prefix);
168 Allocate and initialize a IP6 prefix list entry.
171 @param[in] OnLinkOrAuto If TRUE, the entry is created for the on link prefix list.
172 Otherwise, it is created for the autoconfiguration prefix list.
173 @param[in] ValidLifetime The length of time in seconds that the prefix
176 generated from the prefix via stateless address
    [all...]
  /external/clang/unittests/Lex/
HeaderMapTest.cpp 75 void addBucket(unsigned Hash, unsigned Key, unsigned Prefix, unsigned Suffix) {
81 File.Buckets[I].Prefix = Prefix;
236 auto b = Maker.addString("b"); // Store the prefix last.
252 // The string for "b" runs to the end of File. Check that the prefix
  /external/swiftshader/third_party/LLVM/lib/MC/
SubtargetFeature.cpp 61 std::string Prefix = IsEnabled ? "+" : "-";
62 Prefix += Feature;
63 return Prefix;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
NativeFormatting.cpp 141 bool Prefix = (Style == HexPrintStyle::PrefixLower ||
145 unsigned PrefixChars = Prefix ? 2 : 0;
151 if (Prefix)
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
NativeFormatting.cpp 141 bool Prefix = (Style == HexPrintStyle::PrefixLower ||
145 unsigned PrefixChars = Prefix ? 2 : 0;
151 if (Prefix)
  /external/tensorflow/tensorflow/java/src/gen/cc/
source_writer.cc 46 SourceWriter& SourceWriter::Prefix(const char* line_prefix) {
259 Append("/**").Prefix(" * ").EndLine();
284 return Prefix("").Append(" */").EndLine();
  /external/clang/lib/Tooling/Core/
QualTypeNames.cpp 249 // but use the name of it's prefix.
430 NestedNameSpecifier *Prefix = nullptr;
443 Prefix = createNestedNameSpecifierForScopeOf(Ctx, QT.getTypePtr(),
459 if (Prefix || Keyword != ETK_None) {
460 QT = Ctx.getElaboratedType(Keyword, Prefix, QT);
  /external/llvm/lib/Support/
StringRef.cpp 60 /// Check if this string starts with the given \p Prefix, ignoring case.
61 bool StringRef::startswith_lower(StringRef Prefix) const {
62 return Length >= Prefix.Length &&
63 ascii_strncasecmp(Data, Prefix.Data, Prefix.Length) == 0;
Path.cpp 775 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD,
778 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath,
782 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
785 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File);
788 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
791 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name);
797 std::error_code createUniqueDirectory(const Twine &Prefix,
800 return createUniqueEntity(Prefix + "-%%%%%%", Dummy, ResultPath,
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Shell/
PVRShellImpl.h 119 void Prefix(const char *pStr);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
MDBuilder.h 76 /// Return metadata containing the section prefix for a function.
77 MDNode *createFunctionSectionPrefix(StringRef Prefix);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
Main.cpp 47 cl::value_desc("directory"), cl::Prefix);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.cpp 355 StringRef Prefix(".sbss");
356 SmallString<128> Name(Prefix);
399 StringRef Prefix(".sdata");
400 SmallString<128> Name(Prefix);
  /external/syzkaller/pkg/ifuzz/gen/
gen.go 187 // As spelled these have incorrect format for 16-bit addressing mode and with 67 prefix.
279 insn.Prefix = append(insn.Prefix, 0xF0)
365 insn.Prefix = append(insn.Prefix, 0xF2)
368 insn.Prefix = append(insn.Prefix, 0xF3)
373 insn.Prefix = append(insn.Prefix, 0x66)
  /external/tensorflow/tensorflow/contrib/bigtable/kernels/
bigtable_prefix_key_dataset_op.cc 28 string prefix; variable
29 OP_REQUIRES_OK(ctx, ParseScalarArgument<string>(ctx, "prefix", &prefix));
36 *output = new Dataset(ctx, resource, std::move(prefix));
43 string prefix)
46 prefix_(std::move(prefix)) {
53 const string& prefix) const override {
55 new Iterator({this, strings::StrCat(prefix, "::BigtablePrefixKey")}));
90 return ::google::cloud::bigtable::RowRange::Prefix(dataset()->prefix_);
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscOemType0x94Function.c 131 CHAR16 Prefix;
172 Prefix = '0';
174 Prefix = ' ';
180 *(TempStr++) = Prefix;
223 CHAR16 Prefix;
249 Prefix = '0';
251 Prefix = ' ';
257 *(TempStr++) = Prefix;
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 168 const Twine Prefix, llvm::raw_ostream &OS) {
170 OS << Prefix;
  /external/clang/lib/Index/
IndexTypeSourceInfo.cpp 158 if (NestedNameSpecifierLoc Prefix = NNS.getPrefix())
159 indexNestedNameSpecifierLoc(Prefix, Parent, DC);
  /external/cmockery/cmockery_0_1_2/packages/rpm/
rpm.spec 8 %define prefix /usr
22 Prefix: %prefix
46 make prefix=%prefix
50 make prefix=$RPM_BUILD_ROOT%{prefix} install
61 ## docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
63 %docdir %{prefix}/share/doc/%{NAME}-%{VERSION}
64 %{prefix}/share/doc/%{NAME}-%{VERSION}/
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
TypeDeserializer.h 57 const RecordPrefix *Prefix =
60 static_cast<TypeRecordKind>(uint16_t(Prefix->RecordKind));

Completed in 1544 milliseconds

1 2 3 4 56 7 8 91011>>