Home
last modified time | relevance | path

Searched refs:P (Results 101 – 125 of 2606) sorted by relevance

12345678910>>...105

/openbsd/gnu/llvm/llvm/lib/XRay/
H A DProfile.cpp38 Profile P = O; in operator =() local
39 *this = std::move(P); in operator =()
132 auto It = PathIDMap.find(P); in expandPath()
144 if (P.empty()) in internPath()
147 auto RootToLeafPath = reverse(P); in internPath()
185 assert(Node->Func == P.front()); in internPath()
282 Profile P; in loadProfile() local
314 return P; in loadProfile()
327 Profile P; in profileFromTrace() local
391 if (auto E = P.addBlock({ in profileFromTrace()
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dlinux.cpp64 void *P = mmap(Addr, Size, MmapProt, MmapFlags, -1, 0); in map() local
65 if (P == MAP_FAILED) { in map()
72 prctl(ANDROID_PR_SET_VMA, ANDROID_PR_SET_VMA_ANON_NAME, P, Size, Name); in map()
74 return P; in map()
223 uptr P; in outputRaw() local
224 for (P = MaxLength - 1; P > 0; P--) { in outputRaw()
225 if (Buffer[P] == '\n') { in outputRaw()
226 memcpy(LocalBuffer, Buffer, P); in outputRaw()
227 LocalBuffer[P] = '\0'; in outputRaw()
229 Buffer = &Buffer[P + 1]; in outputRaw()
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/ld/po/
H A Dld.pot526 msgid "%F%P: %s: No such file: %E\n"
534 msgid "%F%P: cannot find %s\n"
636 msgid "%P%F: target %s not found\n"
845 msgid "%P%F: no input files\n"
849 msgid "%P: mode %s\n"
873 msgid "%P: Error writing file `%s'\n"
878 msgid "%P: Error closing file `%s'\n"
1073 msgid "%F%P: internal error %s %d\n"
1738 msgid "%P%F: invalid number `%s'\n"
1754 msgid "%P%F: bad -rpath option\n"
[all …]
H A Dvi.po542 msgid "%F%P: cannot find %s\n"
649 msgid "%P%F: target %s not found\n"
858 msgid "%P%F: no input files\n"
862 msgid "%P: mode %s\n"
863 msgstr "%P: chế độ %s\n"
1087 msgstr "%F%P: lỗi nội bộ %s %d\n"
1174 msgstr "TẬP TIN"
1230 msgstr "TÊN TẬP TIN"
1789 msgid "%P%F: bad -rpath option\n"
1957 #~ msgid "%P%X: generated"
[all …]
/openbsd/regress/usr.bin/bc/
H A Dt11.out1 [[i > 0 && i < 3]P]s2
2 [[i > 0 && i >= 3]P]s3
4 [[i == 0]P]s4
5 [[1 ]P]s7
6 [[* ]P]s8
7 [[0 ]P]s5
/openbsd/gnu/llvm/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp659 delete P; in ~DiagText()
719 void Visit(Piece *P) { in Visit()
867 StringRef T = P->Text; in VisitText()
881 S += P->Role; in VisitText()
911 void VisitPlural(PluralPiece *P) { VisitSelect(P); } in VisitPlural()
945 void VisitText(TextPiece *P) { Result += P->Text; } in VisitText()
969 assert(P->Options.size() == P->OptionPrefixes.size()); in VisitPlural()
984 Visit(P->Parts[0]); in VisitDiff()
986 Visit(P->Parts[1]); in VisitDiff()
988 Visit(P->Parts[2]); in VisitDiff()
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp280 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet() local
282 Buffer.append("%s%02x", (P % 8 == 0) ? " " : " ", C); in PrintMemorySnippet()
289 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet() local
291 if (InRange && InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet()
292 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet()
293 if (!InRange && P > Loc) in PrintMemorySnippet()
299 if (P % 8 == 0) in PrintMemorySnippet()
302 Buffer.append("%c", P == Loc ? '^' : Byte); in PrintMemorySnippet()
310 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet() local
312 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet()
[all …]
/openbsd/gnu/llvm/llvm/lib/Object/
H A DSymbolSize.cpp89 auto &P = Addresses[I]; in computeSymbolSizes() local
90 if (P.I == O.symbol_end()) in computeSymbolSizes()
95 while (NextI < N && Addresses[NextI].Address == P.Address) in computeSymbolSizes()
98 uint64_t Size = Addresses[NextI].Address - P.Address; in computeSymbolSizes()
99 P.Address = Size; in computeSymbolSizes()
104 for (SymEntry &P : Addresses) { in computeSymbolSizes()
105 if (P.I == O.symbol_end()) in computeSymbolSizes()
107 Ret[P.Number] = {*P.I, P.Address}; in computeSymbolSizes()
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParseAST.cpp50 const Parser &P; member in __anonba27e6740111::PrettyStackTraceParserEntry
52 PrettyStackTraceParserEntry(const Parser &p) : P(p) {} in PrettyStackTraceParserEntry()
59 const Token &Tok = P.getCurToken(); in print()
70 const Preprocessor &PP = P.getPreprocessor(); in print()
78 const SourceManager &SM = P.getPreprocessor().getSourceManager(); in print()
133 Parser &P = *ParseOP.get(); in ParseAST() local
137 PrettyStackTraceParserEntry CrashInfo(P); in ParseAST()
155 P.Initialize(); in ParseAST()
161 for (bool AtEOF = P.ParseFirstTopLevelDecl(ADecl, ImportState); !AtEOF; in ParseAST()
162 AtEOF = P.ParseTopLevelDecl(ADecl, ImportState)) { in ParseAST()
[all …]
/openbsd/gnu/llvm/llvm/lib/Option/
H A DOption.cpp45 P(GroupClass); in print()
46 P(InputClass); in print()
47 P(UnknownClass); in print()
48 P(FlagClass); in print()
49 P(JoinedClass); in print()
50 P(ValuesClass); in print()
51 P(SeparateClass); in print()
52 P(CommaJoinedClass); in print()
53 P(MultiArgClass); in print()
56 P(RemainingArgsClass); in print()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DJSON.h538 return V.insert(P, E); in insert()
545 return V.insert(P, A, Z); in insert()
713 P.report("expected string"); in fromJSON()
721 P.report("expected integer"); in fromJSON()
737 P.report("expected number"); in fromJSON()
761 P.report("expected null"); in fromJSON()
771 if (!fromJSON(E, Result, P)) in fromJSON()
786 P.report("expected array"); in fromJSON()
799 P.report("expected object"); in fromJSON()
822 ObjectMapper(const Value &E, Path P) : O(E.getAsObject()), P(P) { in ObjectMapper() argument
[all …]
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCheckPlacementNew.cpp42 void emitBadAlignReport(const Expr *P, CheckerContext &C,
54 const Expr *P,
162 bugreporter::trackExpressionValue(N, P, *R); in emitBadAlignReport()
177 const ElementRegion *R, CheckerContext &C, const Expr *P, in checkElementRegionAlign() argument
179 auto IsBaseRegionAlignedProperly = [this, R, &C, P, in checkElementRegionAlign()
209 emitBadAlignReport(P, C, AllocatedTAlign, BaseRegionAlign); in checkElementRegionAlign()
225 emitBadAlignReport(P, C, AllocatedTAlign, AddressAlign); in checkElementRegionAlign()
236 const FieldRegion *R, CheckerContext &C, const Expr *P, in checkFieldRegionAlign() argument
255 emitBadAlignReport(P, C, AllocatedTAlign, AddressAlign); in checkFieldRegionAlign()
261 const VarRegion *R, CheckerContext &C, const Expr *P, in isVarRegionAlignedProperly() argument
[all …]
/openbsd/gnu/gcc/gcc/config/frv/
H A Dlib1funcs.asm62 P(movgf) gr9, fr1
65 P(fcklt) fcc0, cc0
163 P(and) gr9, gr11, gr9
181 P(or) gr9, gr11, gr9
199 P(xor) gr9, gr11, gr9
217 P(not) gr9, gr9
250 P(cmp) gr8, gr9, icc0
252 P(cmp) gr8, gr4, icc1
257 P(setlos) #0, gr5
259 P(subi) gr9, #1, gr9
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/config/frv/
H A Dlib1funcs.asm36 P(ccmp) gr9, gr11, cc4, 1
55 P(movgf) gr9, fr1
58 P(fcklt) fcc0, cc0
156 P(and) gr9, gr11, gr9
174 P(or) gr9, gr11, gr9
192 P(xor) gr9, gr11, gr9
210 P(not) gr9, gr9
243 P(cmp) gr8, gr9, icc0
245 P(cmp) gr8, gr4, icc1
250 P(setlos) #0, gr5
[all …]
/openbsd/gnu/usr.bin/perl/t/comp/
H A Dretainedlines.t45 $^P = 0xA;
121 local $^P = $^P | $flags;
131 check_retained_lines($prog, sprintf "%#X", $^P);
142 check_retained_lines($fail, sprintf "%#X", $^P);
153 local $^P = $_;
169 local $^P = $_;
192 local $^P = 0x400|0x100|0x10;
203 local $^P = 0x400|0x100|0x10;
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp99 if (!P) { in getValue()
101 new (P) FoldNodeTy(X); in getValue()
102 APSIntSet.InsertNode(P, InsertPos); in getValue()
105 return *P; in getValue()
360 if (!P) { in getPersistentSValWithData()
363 Map.InsertNode(P, InsertPos); in getPersistentSValWithData()
366 return P->getValue(); in getPersistentSValWithData()
385 if (!P) { in getPersistentSValPair()
387 new (P) FoldNodeTy(std::make_pair(V1, V2)); in getPersistentSValPair()
388 Map.InsertNode(P, InsertPos); in getPersistentSValPair()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DFunctionExtras.h347 template <typename R, typename... P>
353 template <typename R, typename... P>
356 UniqueFunctionBase<R, P...>::CallbacksHolder<
362 template <typename R, typename... P>
363 class unique_function<R(P...)> : public detail::UniqueFunctionBase<R, P...> {
364 using Base = detail::UniqueFunctionBase<R, P...>;
382 R operator()(P... Params) {
387 template <typename R, typename... P>
388 class unique_function<R(P...) const>
389 : public detail::UniqueFunctionBase<R, P...> {
[all …]
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp283 P += 4; in processFDE()
284 uint8_t *Ret = P + Length; in processFDE()
289 P += 4; in processFDE()
294 P += sizeof(TargetPtrT); in processFDE()
297 P += sizeof(TargetPtrT); in processFDE()
299 uint8_t Augmentationsize = *P; in processFDE()
300 P += 1; in processFDE()
336 uint8_t *P = EHFrame->getAddress(); in registerEHFrames() local
337 uint8_t *End = P + EHFrame->getSize(); in registerEHFrames()
338 while (P != End) { in registerEHFrames()
[all …]
/openbsd/gnu/llvm/llvm/lib/Passes/
H A DPassPlugin.cpp25 PassPlugin P{Filename, Library}; in Load() local
39 P.Info = reinterpret_cast<decltype(llvmGetPassPluginInfo) *>(getDetailsFn)(); in Load()
41 if (P.Info.APIVersion != LLVM_PLUGIN_API_VERSION) in Load()
44 Twine(P.Info.APIVersion) + ", supported version is " + in Load()
48 if (!P.Info.RegisterPassBuilderCallbacks) in Load()
53 return P; in Load()
/openbsd/lib/libelf/
H A Dlibelf_convert.m4603 #define WRITE_ADDR32(P,X) WRITE_WORD(P,X)
604 #define WRITE_OFF32(P,X) WRITE_WORD(P,X)
605 #define WRITE_SWORD(P,X) WRITE_WORD(P,X)
621 #define WRITE_LWORD(P,X) WRITE_WORD64(P,X)
622 #define WRITE_OFF64(P,X) WRITE_WORD64(P,X)
627 (P) = (P) + EI_NIDENT; \
643 (P) = (P) + 1; \
652 (P) = (P) + 2; \
664 (P) = (P) + 4; \
684 (P) = (P) + 8; \
[all …]
/openbsd/gnu/llvm/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp25 void operator()(const Node *P) { ID.AddPointer(P); } in operator ()()
207 auto &Alloc = P->Demangler.ASTAllocator; in addEquivalence()
211 P->Demangler.reset(Str.begin(), Str.end()); in addEquivalence()
220 if (Str.size() == 2 && P->Demangler.consumeIf("St")) in addEquivalence()
228 N = P->Demangler.parseType(); in addEquivalence()
230 N = P->Demangler.parseName(); in addEquivalence()
235 N = P->Demangler.parseType(); in addEquivalence()
240 N = P->Demangler.parseEncoding(); in addEquivalence()
245 if (P->Demangler.numLeft() != 0) in addEquivalence()
301 return parseMaybeMangledName(P->Demangler, Mangling, true); in canonicalize()
[all …]
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp42 static unsigned getResultPatternCost(TreePatternNode *P, in getResultPatternCost() argument
44 if (P->isLeaf()) return 0; in getResultPatternCost()
47 Record *Op = P->getOperator(); in getResultPatternCost()
54 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) in getResultPatternCost()
55 Cost += getResultPatternCost(P->getChild(i), CGP); in getResultPatternCost()
61 static unsigned getResultPatternSize(TreePatternNode *P, in getResultPatternSize() argument
63 if (P->isLeaf()) return 0; in getResultPatternSize()
66 Record *Op = P->getOperator(); in getResultPatternSize()
70 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) in getResultPatternSize()
71 Cost += getResultPatternSize(P->getChild(i), CGP); in getResultPatternSize()
/openbsd/usr.bin/tcpbench/
H A Dtcpbench.c406 P(tcpi, rcv_adv, "%u") in tcp_stats_display()
407 P(tcpi, rcv_mss, "%u") in tcp_stats_display()
408 P(tcpi, rcv_nxt, "%u") in tcp_stats_display()
411 P(tcpi, rcv_up, "%u") in tcp_stats_display()
415 P(tcpi, rtt, "%u") in tcp_stats_display()
416 P(tcpi, rttmin, "%u") in tcp_stats_display()
417 P(tcpi, rttvar, "%u") in tcp_stats_display()
419 P(tcpi, snd_max, "%u") in tcp_stats_display()
420 P(tcpi, snd_mss, "%u") in tcp_stats_display()
421 P(tcpi, snd_nxt, "%u") in tcp_stats_display()
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/xray/tests/unit/
H A Dsegmented_array_test.cpp207 ASSERT_NE(P, nullptr); in TEST()
244 ASSERT_NE(P, nullptr); in TEST()
266 ASSERT_NE(P, nullptr); in TEST()
283 ASSERT_NE(P, nullptr); in TEST()
305 ASSERT_NE(P, nullptr); in TEST()
324 for (auto P : A) { in TEST() local
325 ASSERT_NE(P, nullptr); in TEST()
326 ASSERT_EQ(*P, V++); in TEST()
342 for (auto P : A) { in TEST() local
343 ASSERT_NE(P, nullptr); in TEST()
[all …]
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.h25 MinimalSymbolDumper(LinePrinter &P, bool RecordBytes, in MinimalSymbolDumper() argument
28 : P(P), RecordBytes(RecordBytes), Ids(Ids), Types(Types) {} in MinimalSymbolDumper()
29 MinimalSymbolDumper(LinePrinter &P, bool RecordBytes, in MinimalSymbolDumper() argument
33 : P(P), RecordBytes(RecordBytes), SymGroup(&SymGroup), Ids(Ids), in MinimalSymbolDumper()
54 LinePrinter &P; variable

12345678910>>...105