/aosp_15_r20/prebuilts/go/linux-x86/src/net/netip/ |
D | netip.go | 675 func (ip Addr) Prefix(b int) (Prefix, error) { func 1259 type Prefix struct { struct 1260 ip Addr 1264 bitsPlusOne uint8 1287 func (p Prefix) Addr() Addr { return p.ip } 1292 func (p Prefix) Bits() int { return int(p.bitsPlusOne) - 1 } 1297 func (p Prefix) IsValid() bool { return p.bitsPlusOne > 0 } 1299 func (p Prefix) isZero() bool { return p == Prefix{} } 1302 func (p Prefix) IsSingleIP() bool { return p.IsValid() && p.Bits() == p.ip.BitLen() } 1312 func (p Prefix) compare(p2 Prefix) int { [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | WithColor.cpp | 68 raw_ostream &WithColor::error(raw_ostream &OS, StringRef Prefix, in error() 76 raw_ostream &WithColor::warning(raw_ostream &OS, StringRef Prefix, in warning() 84 raw_ostream &WithColor::note(raw_ostream &OS, StringRef Prefix, in note() 91 raw_ostream &WithColor::remark(raw_ostream &OS, StringRef Prefix, in remark()
|
H A D | SpecialCaseList.cpp | 166 StringRef Prefix = SplitLine.first; in parse() local 204 bool SpecialCaseList::inSection(StringRef Section, StringRef Prefix, in inSection() 209 unsigned SpecialCaseList::inSectionBlame(StringRef Section, StringRef Prefix, in inSectionBlame() 223 StringRef Prefix, StringRef Query, in inSectionBlame()
|
H A D | TarWriter.cpp | 51 char Prefix[155]; member 127 static bool splitUstar(StringRef Path, StringRef &Prefix, StringRef &Name) { in splitUstar() 147 static void writeUstarHeader(raw_fd_ostream &OS, StringRef Prefix, in writeUstarHeader() 181 StringRef Prefix; in append() local
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 916 bool Pattern::parsePattern(StringRef PatternStr, StringRef Prefix, in parsePattern() 1687 FindCheckType(const FileCheckRequest &Req, StringRef Buffer, StringRef Prefix, in FindCheckType() 1777 FindCheckType(const FileCheckRequest &Req, StringRef Buffer, StringRef Prefix) { in FindCheckType() 1827 StringRef Prefix = Matches[0]; in FindFirstMatchingPrefix() local 1896 std::string Prefix = "-implicit-check-not='"; in readCheckFile() local 2077 StringRef Prefix, SMLoc Loc, const Pattern &Pat, in printMatch() 2147 StringRef Prefix, SMLoc Loc, const Pattern &Pat, in printNoMatch() 2230 StringRef Prefix, SMLoc Loc, const Pattern &Pat, in reportMatchResult() 2567 for (StringRef Prefix : SuppliedPrefixes) { in ValidatePrefixes() local 2596 for (const char *Prefix : DefaultCheckPrefixes) in ValidateCheckPrefixes() local [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
H A D | WithColor.cpp | 91 raw_ostream &WithColor::error(raw_ostream &OS, StringRef Prefix, in error() 101 raw_ostream &WithColor::warning(raw_ostream &OS, StringRef Prefix, in warning() 111 raw_ostream &WithColor::note(raw_ostream &OS, StringRef Prefix, in note() 121 raw_ostream &WithColor::remark(raw_ostream &OS, StringRef Prefix, in remark()
|
H A D | SpecialCaseList.cpp | 165 StringRef Prefix = SplitLine.first; in parse() local 203 bool SpecialCaseList::inSection(StringRef Section, StringRef Prefix, in inSection() 208 unsigned SpecialCaseList::inSectionBlame(StringRef Section, StringRef Prefix, in inSectionBlame() 222 StringRef Prefix, StringRef Query, in inSectionBlame()
|
H A D | TarWriter.cpp | 51 char Prefix[155]; member 127 static bool splitUstar(StringRef Path, StringRef &Prefix, StringRef &Name) { in splitUstar() 157 static void writeUstarHeader(raw_fd_ostream &OS, StringRef Prefix, in writeUstarHeader() 192 StringRef Prefix; in append() local
|
/aosp_15_r20/external/clang/lib/Frontend/ |
H A D | InitPreprocessor.cpp | 130 static void DefineFloatMacros(MacroBuilder &Builder, StringRef Prefix, in DefineFloatMacros() 200 static void DefineFmt(const Twine &Prefix, TargetInfo::IntType Ty, in DefineFmt() 237 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntType() local 257 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntTypeSize() local 268 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST"; in DefineLeastWidthIntType() local 282 const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST"; in DefineFastIntType() local
|
/aosp_15_r20/external/llvm/lib/IR/ |
H A D | Mangler.cpp | 34 const DataLayout &DL, char Prefix) { in getNameWithPrefixImpl() 61 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefixImpl() local 73 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix() local 132 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix() local
|
/aosp_15_r20/external/llvm/tools/bugpoint/ |
H A D | CrashDebugger.cpp | 76 ReducePassList::doTest(std::vector<std::string> &Prefix, in doTest() 127 TestResult doTest(std::vector<GlobalVariable*> &Prefix, in doTest() 197 TestResult doTest(std::vector<Function*> &Prefix, in doTest() 333 TestResult doTest(std::vector<const BasicBlock*> &Prefix, in doTest() 442 TestResult doTest(std::vector<const Instruction*> &Prefix, in doTest() 519 TestResult doTest(std::vector<std::string> &Prefix, in doTest() 589 TestResult doTest(std::vector<const MDNode *> &Prefix, in doTest()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/ |
H A D | StringRef.h | 257 [[nodiscard]] bool starts_with(StringRef Prefix) const { in starts_with() 261 [[nodiscard]] bool startswith(StringRef Prefix) const { in startswith() 267 [[nodiscard]] bool startswith_insensitive(StringRef Prefix) const { in startswith_insensitive() 623 bool consume_front(StringRef Prefix) { in consume_front() 633 bool consume_front_insensitive(StringRef Prefix) { in consume_front_insensitive()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Mangler.cpp | 34 const DataLayout &DL, char Prefix) { in getNameWithPrefixImpl() 64 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefixImpl() local 76 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix() local 135 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix() local
|
/aosp_15_r20/external/llvm/utils/FileCheck/ |
H A D | FileCheck.cpp | 187 StringRef Prefix, in ParsePattern() 621 StringRef Prefix; member 731 static Check::CheckType FindCheckType(StringRef Buffer, StringRef Prefix) { in FindCheckType() 792 for (StringRef Prefix : CheckPrefixes) { in FindFirstCandidateMatch() local 843 StringRef Prefix = FindFirstCandidateMatch(Buffer, CheckTy, CheckLoc); in FindFirstMatchingPrefix() local 890 std::string Prefix = (Twine("-") + ImplicitCheckNot.ArgStr + "='").str(); in ReadCheckFile() local 1284 for (StringRef Prefix : CheckPrefixes) { in ValidateCheckPrefixes() local
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/CodeView/ |
H A D | ContinuationRecordBuilder.cpp | 17 RecordPrefix Prefix; member 70 RecordPrefix Prefix(getTypeLeafKind(RecordKind)); in begin() local 158 RecordPrefix *Prefix = reinterpret_cast<RecordPrefix *>(Data.data()); in createSegmentRecord() local 174 RecordPrefix Prefix(getTypeLeafKind(*Kind)); in end() local
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
H A D | ContinuationRecordBuilder.cpp | 17 RecordPrefix Prefix; member 70 RecordPrefix Prefix(getTypeLeafKind(RecordKind)); in begin() local 158 RecordPrefix *Prefix = reinterpret_cast<RecordPrefix *>(Data.data()); in createSegmentRecord() local 174 RecordPrefix Prefix(getTypeLeafKind(*Kind)); in end() local
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/IR/ |
H A D | Mangler.cpp | 35 const DataLayout &DL, char Prefix) { in getNameWithPrefixImpl() 65 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefixImpl() local 77 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix() local 143 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix() local
|
/aosp_15_r20/external/clang/lib/AST/ |
H A D | NestedNameSpecifier.cpp | 47 NestedNameSpecifier *Prefix, IdentifierInfo *II) { in Create() 60 NestedNameSpecifier *Prefix, in Create() 76 NestedNameSpecifier *Prefix, in Create() 92 NestedNameSpecifier *Prefix, in Create() 401 while (NestedNameSpecifierLoc Prefix = First.getPrefix()) in getSourceRange() local
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/ |
D | gnu.go | 891 func countPrefix(inst *Inst, target Prefix) int { 901 func markLastImplicit(inst *Inst, prefix Prefix) bool { 912 func unmarkImplicit(inst *Inst, prefix Prefix) {
|
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/ |
H A D | PrimitiveSet.java | 190 ConcurrentMap<Prefix, List<Entry<P>>> primitives, in storeEntryInPrimitiveSet() 266 ConcurrentMap<Prefix, List<Entry<P>>> primitives, in PrimitiveSet() 341 private static class Prefix implements Comparable<Prefix> { class in PrimitiveSet 344 private Prefix(byte[] prefix) { in Prefix() method in PrimitiveSet.Prefix
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/ |
D | StringRef.h | 257 [[nodiscard]] bool starts_with(StringRef Prefix) const { in starts_with() 263 "starts_with") bool startswith(StringRef Prefix) const { in startswith() 631 bool consume_front(StringRef Prefix) { in consume_front() 641 bool consume_front_insensitive(StringRef Prefix) { in consume_front_insensitive()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/ |
D | StringRef.h | 257 [[nodiscard]] bool starts_with(StringRef Prefix) const { in starts_with() 261 [[nodiscard]] bool starts_with(char Prefix) const { in starts_with() 627 bool consume_front(StringRef Prefix) { in consume_front() 637 bool consume_front_insensitive(StringRef Prefix) { in consume_front_insensitive()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/ |
D | StringRef.h | 257 [[nodiscard]] bool starts_with(StringRef Prefix) const { in starts_with() 263 "starts_with") bool startswith(StringRef Prefix) const { in startswith() 631 bool consume_front(StringRef Prefix) { in consume_front() 641 bool consume_front_insensitive(StringRef Prefix) { in consume_front_insensitive()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/ |
D | StringRef.h | 257 [[nodiscard]] bool starts_with(StringRef Prefix) const { in starts_with() 263 "starts_with") bool startswith(StringRef Prefix) const { in startswith() 631 bool consume_front(StringRef Prefix) { in consume_front() 641 bool consume_front_insensitive(StringRef Prefix) { in consume_front_insensitive()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Option/ |
H A D | OptTable.cpp | 134 for (const StringLiteral &Prefix : getPrefixesUnion()) { in buildPrefixChars() local 154 for (const StringRef &Prefix : Prefixes) in isInput() local 163 for (auto Prefix : I->Prefixes) { in matchOption() local 177 for (auto Prefix : In.Prefixes) in optionMatches() local 217 for (auto Prefix : In.Prefixes) { in findByPrefix() local
|