/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
D | BlockPrinter.cpp | 16 return RP.visit(R); in visit() 26 return RP.visit(R); in visit() 31 return RP.visit(R); in visit() 36 return RP.visit(R); in visit() 47 auto E = RP.visit(R); in visit() 56 auto E = RP.visit(R); in visit() 66 auto E = RP.visit(R); in visit() 75 auto E = RP.visit(R); in visit() 84 auto E = RP.visit(R); in visit() 94 auto E = RP.visit(R); in visit() [all …]
|
/third_party/flutter/skia/bench/ |
D | SkVMBench.cpp | 15 enum Mode {Opts, RP, F32, I32_Naive, I32, I32_SWAR}; enumerator 42 if (fMode == RP) { in onDelayedSetup() 62 } else if (fMode == RP) { in onDraw() 90 DEF_BENCH(return (new SkVMBench{ 1, RP});) 91 DEF_BENCH(return (new SkVMBench{ 4, RP});) 92 DEF_BENCH(return (new SkVMBench{ 15, RP});) 93 DEF_BENCH(return (new SkVMBench{ 63, RP});) 94 DEF_BENCH(return (new SkVMBench{ 256, RP});) 95 DEF_BENCH(return (new SkVMBench{1024, RP});) 96 DEF_BENCH(return (new SkVMBench{4096, RP});)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | GCNIterativeScheduler.cpp | 123 const GCNRegPressure &RP) const { in printSchedResult() 126 printSchedRP(OS, R->MaxPressure, RP); in printSchedResult() 518 const auto RP = getRegionPressure(*R); in scheduleLegacyMaxOccupancy() local 519 LLVM_DEBUG(printSchedRP(dbgs(), R->MaxPressure, RP)); in scheduleLegacyMaxOccupancy() 521 if (RP.getOccupancy(ST) < TgtOcc) { in scheduleLegacyMaxOccupancy() 533 FinalOccupancy = std::min(FinalOccupancy, RP.getOccupancy(ST)); in scheduleLegacyMaxOccupancy() 556 const auto RP = getSchedulePressure(*R, MinSchedule); in scheduleMinReg() local 557 LLVM_DEBUG(if (R->MaxPressure.less(ST, RP, TgtOcc)) { in scheduleMinReg() 559 printSchedRP(dbgs(), R->MaxPressure, RP); in scheduleMinReg() 562 if (!force && MaxPressure.less(ST, RP, TgtOcc)) in scheduleMinReg() [all …]
|
D | GCNIterativeScheduler.h | 116 const GCNRegPressure &RP) const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/ |
D | BlockPrinter.h | 35 RecordPrinter &RP; variable 40 : RecordVisitor(), OS(O), RP(P) {} in BlockPrinter()
|
/third_party/mbedtls/ |
D | Makefile | 65 cp -RP library/libmbedtls.* $(DESTDIR)/lib 66 cp -RP library/libmbedx509.* $(DESTDIR)/lib 67 cp -RP library/libmbedcrypto.* $(DESTDIR)/lib
|
/third_party/mbedtls/library/ |
D | dhm.c | 235 &ctx->P , &ctx->RP ) ); in dhm_make_common() 425 MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &ctx->Vf, &ctx->Vf, &ctx->X, &ctx->P, &ctx->RP ) ); in dhm_update_blinding() 465 &ctx->P, &ctx->RP ) ); in mbedtls_dhm_calc_secret() 496 mbedtls_mpi_free( &ctx->RP ); in mbedtls_dhm_free()
|
D | ecp.c | 2383 mbedtls_ecp_point RP; in ecp_mul_mxz() local 2385 mbedtls_ecp_point_init( &RP ); mbedtls_mpi_init( &PX ); in ecp_mul_mxz() 2392 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( &RP, P ) ); in ecp_mul_mxz() 2400 MOD_ADD( RP.X ); in ecp_mul_mxz() 2403 MBEDTLS_MPI_CHK( ecp_randomize_mxz( grp, &RP, f_rng, p_rng ) ); in ecp_mul_mxz() 2417 MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( &R->X, &RP.X, b ) ); in ecp_mul_mxz() 2418 MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( &R->Z, &RP.Z, b ) ); in ecp_mul_mxz() 2419 MBEDTLS_MPI_CHK( ecp_double_add_mxz( grp, R, &RP, R, &RP, &PX ) ); in ecp_mul_mxz() 2420 MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( &R->X, &RP.X, b ) ); in ecp_mul_mxz() 2421 MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( &R->Z, &RP.Z, b ) ); in ecp_mul_mxz() [all …]
|
D | rsa.c | 1023 MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &TP, &T, DP, &ctx->P, &ctx->RP ) ); in mbedtls_rsa_private() 2247 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->RP, &src->RP ) ); in mbedtls_rsa_copy() 2285 mbedtls_mpi_free( &ctx->RP ); in mbedtls_rsa_free()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | RegionPass.cpp | 69 RegionPass *RP = (RegionPass *)getContainedPass(Index); in runOnFunction() local 70 Changed |= RP->doInitialization(R, *this); in runOnFunction()
|
D | Loads.cpp | 115 if (auto *RP = getArgumentAliasingToReturnedPointer(Call, true)) in isDereferenceableAndAlignedPointer() local 116 return isDereferenceableAndAlignedPointer(RP, Alignment, Size, DL, CtxI, in isDereferenceableAndAlignedPointer()
|
/third_party/parse5/packages/parse5/lib/common/ |
D | html.ts | 135 RP = 'rp', enumerator 307 RP, enumerator 457 [TAG_NAMES.RP, TAG_ID.RP],
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTX.h | 121 RP, enumerator
|
/third_party/mbedtls/include/mbedtls/ |
D | dhm.h | 122 mbedtls_mpi MBEDTLS_PRIVATE(RP); /*!< The cached value = \c R^2 mod \c P. */
|
D | rsa.h | 112 mbedtls_mpi MBEDTLS_PRIVATE(RP); /*!< cached <code>R^2 mod P</code>. */
|
/third_party/lwip/src/netif/ppp/ |
D | PPPD_FOLLOWUP | 88 Only concern changes on RP-PPPoE plugin, which we don't use. 132 Again, we are not using the RP-PPPoE plugin. 169 Once more, we are not using the RP-PPPoE plugin.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineLICM.cpp | 1199 for (const auto &RP : BackTrace) in CanCauseHighRegPressure() local 1200 if (static_cast<int>(RP[Class]) + RPIdAndCost.second >= Limit) in CanCauseHighRegPressure() 1217 for (auto &RP : BackTrace) in UpdateBackTraceRegPressure() local 1219 RP[RPIdAndCost.first] += RPIdAndCost.second; in UpdateBackTraceRegPressure()
|
D | MIRPrinter.cpp | 561 auto RP = Seen.insert(Succ); in guessSuccessors() local 562 if (RP.second) in guessSuccessors()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/MCTargetDesc/ |
D | NVPTXInstPrinter.cpp | 139 case NVPTX::PTXCvtMode::RP: in printCvtMode()
|
/third_party/flutter/skia/src/pdf/ |
D | SkPDFTag.cpp | 57 M(RP); in tag_name_from_type()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 622 if (void *RP = LazyFunctionCreator(Name)) in getPointerToNamedFunction() local 623 return RP; in getPointerToNamedFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | RDFLiveness.cpp | 565 NodeId RP = D.Addr->getOwner(DFG).Id; in computePhiInfo() local 567 auto F = M.find(RP); in computePhiInfo() 569 M.insert(std::make_pair(RP, DefRRs)); in computePhiInfo()
|
D | HexagonExpandCondsets.cpp | 1203 RegisterRef RP = CI->getOperand(1); in coalesceSegments() local 1226 MachineInstr *RDef = getReachingDefForPred(RS, CI, RP.Reg, true); in coalesceSegments() 1237 MachineInstr *RDef = getReachingDefForPred(RS, CI, RP.Reg, false); in coalesceSegments()
|
/third_party/parse5/packages/parse5/lib/parser/ |
D | open-element-stack.ts | 5 const IMPLICIT_END_TAG_REQUIRED = new Set([$.DD, $.DT, $.LI, $.OPTGROUP, $.OPTION, $.P, $.RB, $.RP,…
|
/third_party/flutter/skia/third_party/externals/sdl/src/stdlib/ |
D | SDL_malloc.c | 3145 tchunkptr* RP;\ 3146 if (((R = *(RP = &(X->child[1]))) != 0) ||\ 3147 ((R = *(RP = &(X->child[0]))) != 0)) {\ 3151 R = *(RP = CP);\ 3153 if (RTCHECK(ok_address(M, RP)))\ 3154 *RP = 0;\
|