HomeSort by relevance Sort by last modified time
    Searched refs:Prefix (Results 1 - 25 of 760) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
prefix2.s 0 # Prefix must not interfere with register names.
2 PREFIX pre
  /external/llvm/lib/TableGen/
TableGenBackend.cpp 22 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill,
25 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) &&
27 OS << Prefix;
36 StringRef Prefix("|* ");
38 printLine(OS, Prefix, ' ', Suffix);
39 size_t PSLen = Prefix.size() + Suffix.size();
44 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix);
47 printLine(OS, Prefix, ' ', Suffix);
48 printLine(OS, Prefix + "Automatically generated file, do not edit!", ' ',
50 printLine(OS, Prefix, ' ', Suffix)
    [all...]
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/
IPACM_OffloadManager.h 38 using Prefix = ::IOffloadManager::Prefix;
53 Prefix prefix_cache;
54 Prefix prefix_cache_v6; //for setupstream use
76 virtual RET setLocalPrefixes(std::vector<Prefix> &/* prefixes */);
78 const Prefix & /* prefix */);
80 const Prefix &/* prefix */);
81 virtual RET setUpstream(const char* /* iface */, const Prefix& /* v4Gw */, const Prefix& /* v6Gw */)
    [all...]
  /external/compiler-rt/test/ubsan/TestCases/TypeCheck/
vptr-corrupted-vtable-itanium.cpp 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-CORRUPTED-VTABLE --strict-whitespace
30 VtablePrefix Prefix[2];
31 Prefix[0].Offset = 1<<21; // Greater than VptrMaxOffset
32 Prefix[0].TypeInfo = RealPrefix->TypeInfo;
35 *reinterpret_cast<void**>(Ptr) = static_cast<void*>(&Prefix[1]);
  /hardware/qcom/data/ipacfg-mgr/msm8998/hal/inc/
PrefixParser.h 42 using Prefix = ::IOffloadManager::Prefix;
59 Prefix getFirstPrefix();
68 static bool parseV4Addr(string /* in */, Prefix& /* out */);
69 static bool parseV6Addr(string /* in */, Prefix& /* out */);
70 static bool populateV4Mask(int /* mask */, Prefix& /* out */);
71 static bool populateV6Mask(int /* mask */, Prefix& /* out */);
73 static Prefix makeBlankPrefix(IP_FAM /* famHint */);
76 vector<Prefix> mPrefixes;
IOffloadManager.h 61 typedef struct Prefix {
226 * Add a downstream prefix that <i>may</i> be forwarded.
228 * The Prefix may be an IPv4 or IPv6 address to signify which family can be
230 * as determined by the Prefix, has a corresponding upstream configured,
233 * Only traffic that has a downstream address within the specified Prefix
235 * outside of the Prefix will be unaffected and can be forwarded iff it was
248 * If offload is desired on this Prefix then
254 const Prefix& /* prefix */) = 0;
256 * Remove a downstream Prefix that forwarding was previously requested for
    [all...]
  /frameworks/base/tests/net/java/android/net/
RouteInfoTest.java 35 private IpPrefix Prefix(String prefix) {
36 return new IpPrefix(prefix);
51 assertEquals(Prefix("::/0"), r.getDestination());
56 assertEquals(Prefix("0.0.0.0/0"), r.getDestination());
61 r = new RouteInfo(Prefix("2001:db8:beef:cafe::/48"), null, "lo");
62 assertEquals(Prefix("2001:db8:beef::/48"), r.getDestination());
66 r = new RouteInfo(Prefix("192.0.2.5/24"), null);
67 assertEquals(Prefix("192.0.2.0/24"), r.getDestination());
87 r = new PatchedRouteInfo(Prefix("2001:db8:f00::ace:d00d/127"), null, "rmnet0")
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTranslator.cpp 31 std::string Translator::createUnnamedName(const std::string &Prefix,
34 return Prefix;
37 StrBuf << Prefix << Index;
43 const std::string &Prefix) {
44 if (Name.find(Prefix) == 0) {
45 for (size_t i = Prefix.size(); i < Name.size(); ++i) {
52 Stream << "Warning : Default " << Kind << " prefix '" << Prefix
  /external/selinux/mcstrans/share/examples/pipes/setrans.d/
pipes.conf 2 Prefix=Handle Via
  /external/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 33 const RecordPrefix *Prefix = nullptr;
37 if (auto EC = Reader.readObject(Prefix))
39 Item.Length = Prefix->RecordLen;
42 Item.Type = static_cast<Kind>(uint16_t(Prefix->RecordKind));
49 Len = Prefix->RecordLen + 2;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 56 const RecordPrefix *Prefix = nullptr;
60 if (auto EC = Reader.readObject(Prefix))
62 if (Prefix->RecordLen < 2)
64 Kind K = static_cast<Kind>(uint16_t(Prefix->RecordKind));
69 Reader.readBytes(RawData, Prefix->RecordLen + sizeof(uint16_t)))
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 56 const RecordPrefix *Prefix = nullptr;
60 if (auto EC = Reader.readObject(Prefix))
62 if (Prefix->RecordLen < 2)
64 Kind K = static_cast<Kind>(uint16_t(Prefix->RecordKind));
69 Reader.readBytes(RawData, Prefix->RecordLen + sizeof(uint16_t)))
  /external/llvm/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());

Completed in 359 milliseconds

1 2 3 4 5 6 7 8 91011>>