Home
last modified time | relevance | path

Searched refs:PD (Results 1 - 24 of 24) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dindeo3data.h34 PD( 0, 0), E2( 2, 2), E4( -1, 3), E2( 4, 4), E4( 1, 5),\
48 PD( 0, 0), E2( 3, 3), E4( -1, 4), E2( 7, 7), E4( 2, 8),\
60 PD( 0, 0), E2( 4, 4), E4( -1, 5), E4( 3, 10), E2( 9, 9),\
70 PD( 0, 0), E2( 5, 5), E4( -2, 7), E2( 11, 11), E4( 3, 13),\
79 PD( 0, 0), E2( 6, 6), E4( -2, 8), E2( 13, 13), E4( 4, 15),\
88 PD( 0, 0), E2( 7, 7), E4( -3, 10), E2( 16, 16), E4( 5, 18),\
96 PD( 0, 0), E2( 8, 8), E4( -3, 11), E2( 18, 18), E4( 5, 20),\
104 PD( 0, 0), E2( 9, 9), E4( -3, 12), E2( 20, 20), E4( 6, 23),\
111 PD( 0, 0), E2( 2, 2), E4( 0, 2), E2( 4, 4), E4( 0, 4),\
125 PD(
241 #define PD global() macro
243 #define PD global() macro
281 #undef PD global() macro
288 #define PD global() macro
290 #define PD global() macro
[all...]
/third_party/optimized-routines/math/
H A Derf.c20 #define PD __erf_data.erfc_poly_D macro
146 double r1 = fma (a, PD[1], PD[0]); in erf()
147 double r2 = fma (a, PD[3], PD[2]); in erf()
148 double r3 = fma (a, PD[5], PD[4]); in erf()
149 double r4 = fma (a, PD[7], PD[6]); in erf()
150 double r5 = fma (a, PD[ in erf()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_xbr.c92 #define FILT2(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, \
96 const unsigned i = df(PH,PD) + df(PH,I5) + df(PF,I4) + df(PF,PB) + (df(PE,PI)<<2); \
99 if (e < i && (!eq(PF,PB) && !eq(PH,PD) || eq(PE,PI) \
104 const int left = ke<<1 <= ki && PE != PG && PD != PG; \
126 #define FILT3(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, \
130 const unsigned i = df(PH,PD) + df(PH,I5) + df(PF,I4) + df(PF,PB) + (df(PE,PI)<<2); \
133 if (e < i && (!eq(PF,PB) && !eq(PF,PC) || !eq(PH,PD) && !eq(PH,PG) || eq(PE,PI) \
138 const int left = ke<<1 <= ki && PE != PG && PD != PG; \
168 #define FILT4(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, \
172 const unsigned i = df(PH,PD)
259 const uint32_t PD = sa2[pprev]; xbr_filter() local
[all...]
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_macro.h42 /* ngtcp2_list_insert inserts |T| before |*PD|. The contract is that
44 field of the previous element. |PD| must be a pointer to the
45 pointer to the next field of the previous element of |*PD|: if C is
46 the previous element of |PD|, PD = &C->next. */
47 #define ngtcp2_list_insert(T, PD) \
49 (T)->next = *(PD); \
50 *(PD) = (T); \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp19 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, in TargetSubtargetInfo()
23 : MCSubtargetInfo(TT, CPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) { in TargetSubtargetInfo()
17 TargetSubtargetInfo( const Triple &TT, StringRef CPU, StringRef FS, ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP) TargetSubtargetInfo() argument
H A DScheduleDAG.cpp515 for (const SDep &PD : SU.Preds) {
516 assert(Node2Index[SU.NodeNum] > Node2Index[PD.getSUnit()->NodeNum] &&
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp590 PerFunctionProfileData PD; in computeNumValueSiteCounts() local
591 PD.NumValueSites[ValueKind] = Index + 1; in computeNumValueSiteCounts()
592 ProfileDataMap[Name] = PD; in computeNumValueSiteCounts()
737 PerFunctionProfileData PD; in getOrCreateRegionCounters() local
741 PD = It->second; in getOrCreateRegionCounters()
800 NS += PD.NumValueSites[Kind]; in getOrCreateRegionCounters()
833 Int16ArrayVals[Kind] = ConstantInt::get(Int16Ty, PD.NumValueSites[Kind]); in getOrCreateRegionCounters()
848 PD.RegionCounters = CounterPtr; in getOrCreateRegionCounters()
849 PD.DataVar = Data; in getOrCreateRegionCounters()
850 ProfileDataMap[NamePtr] = PD; in getOrCreateRegionCounters()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.cpp44 FMA3GROUP_PACKED_WIDTHS(Name, PD, Attrs) \
80 FMA3GROUP_PACKED_AVX512_WIDTHS(Name, PD, Suf, Attrs) \
139 (TSFlags & X86II::OpPrefixMask) == X86II::PD && in getFMA3Group()
H A DX86InstrInfo.cpp1471 VPERM_CASES_BROADCAST(PD)
/third_party/FreeBSD/lib/msun/ld128/
H A De_powl.c125 static const long double PD[] = variable
426 v = PD[0] + t * (PD[1] + t * (PD[2] + t * (PD[3] + t))); in powl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h112 bool shouldEncodeData(const ProfilingData &PD);
/third_party/lzma/CPP/
H A DBuild.mak223 $(CCOMPL) /EP /Zc:preprocessor /PD
225 $(COMPL) -EP -Zc:preprocessor -PD
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCSubtargetInfo.cpp211 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, in MCSubtargetInfo()
215 : TargetTriple(TT), CPU(C), ProcFeatures(PF), ProcDesc(PD), in MCSubtargetInfo()
209 MCSubtargetInfo( const Triple &TT, StringRef C, StringRef FS, ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP) MCSubtargetInfo() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DLoopDataPrefetch.cpp291 int64_t PD = std::abs(ConstPtrDiff->getValue()->getSExtValue()); in runOnLoop() local
292 if (PD < (int64_t) TTI->getCacheLineSize()) { in runOnLoop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DTargetSubtargetInfo.h66 ArrayRef<SubtargetSubTypeKV> PD,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h95 ArrayRef<SubtargetSubTypeKV> PD,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp259 bool InstrProfWriter::shouldEncodeData(const ProfilingData &PD) { in shouldEncodeData() argument
262 for (const auto &Func : PD) { in shouldEncodeData()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.cpp554 PressureDiff &PD = DAG->getPressureDiff(SU); in pressureChange() local
555 for (auto &P : PD) { in pressureChange()
H A DHexagonBitTracker.cpp965 BT::RegisterRef PD(DefR, 0);
966 uint16_t RW = getRegBitWidth(PD);
970 putCell(PD, RC, Outputs);
H A DHexagonHardwareLoops.cpp1903 const MCInstrDesc &PD = TII->get(TargetOpcode::PHI); in createPreheaderForLoop() local
1904 MachineInstr *NewPN = MF->CreateMachineInstr(PD, DL); in createPreheaderForLoop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/
H A DX86InstComments.cpp173 CASE_FMA(Inst##PD, r) \
177 CASE_FMA(Inst##PD, m) \
179 CASE_AVX512_FMA(Inst##PD, mb) \
H A DX86BaseInfo.h723 // PD - Prefix code for packed double precision vector floating point
725 PD = 1 << OpPrefixShift,
H A DX86MCCodeEmitter.cpp836 case X86II::PD: in emitVEXOpcodePrefix()
1315 case X86II::PD: // 66 in emitOpcodePrefix()
/third_party/pcre2/pcre2/src/
H A Dpcre2test.c615 #define PD(name) PO(name) macro
642 { "anchored", MOD_PD, MOD_OPT, PCRE2_ANCHORED, PD(options) },
670 { "endanchored", MOD_PD, MOD_OPT, PCRE2_ENDANCHORED, PD(options) },
700 { "memory", MOD_PD, MOD_CTL, CTL_MEMORY, PD(control) },
711 { "no_utf_check", MOD_PD, MOD_OPT, PCRE2_NO_UTF_CHECK, PD(options) },
8728 case MOD_PND: /* As PD, but not default pattern */ in display_selected_modifiers()
8736 case MOD_PDP: /* As PD, OK for Perl-compatible test */ in display_selected_modifiers()

Completed in 41 milliseconds