/freebsd/contrib/bearssl/src/rsa/ |
H A D | rsa_i15_privexp.c | 62 uint16_t *p, *q, *k, *m, *z, *phi; in br_rsa_i15_compute_privexp() local 125 phi = q + 1 + qlen; in br_rsa_i15_compute_privexp() 126 br_i15_zero(phi, p[0]); in br_rsa_i15_compute_privexp() 127 br_i15_mulacc(phi, p, q); in br_rsa_i15_compute_privexp() 128 len = (phi[0] + 15) >> 4; in br_rsa_i15_compute_privexp() 129 memmove(tmp, phi, (1 + len) * sizeof *phi); in br_rsa_i15_compute_privexp() 130 phi = tmp; in br_rsa_i15_compute_privexp() 131 phi[0] = br_i15_bit_length(phi + 1, len); in br_rsa_i15_compute_privexp() 132 len = (phi[0] + 15) >> 4; in br_rsa_i15_compute_privexp() 150 lo = (r << 15) + phi[u]; in br_rsa_i15_compute_privexp() [all …]
|
H A D | rsa_i31_privexp.c | 62 uint32_t *p, *q, *k, *m, *z, *phi; in br_rsa_i31_compute_privexp() local 125 phi = q + 1 + qlen; in br_rsa_i31_compute_privexp() 126 br_i31_zero(phi, p[0]); in br_rsa_i31_compute_privexp() 127 br_i31_mulacc(phi, p, q); in br_rsa_i31_compute_privexp() 128 len = (phi[0] + 31) >> 5; in br_rsa_i31_compute_privexp() 129 memmove(tmp, phi, (1 + len) * sizeof *phi); in br_rsa_i31_compute_privexp() 130 phi = tmp; in br_rsa_i31_compute_privexp() 131 phi[0] = br_i31_bit_length(phi + 1, len); in br_rsa_i31_compute_privexp() 132 len = (phi[0] + 31) >> 5; in br_rsa_i31_compute_privexp() 150 lo = (r << 31) + phi[u]; in br_rsa_i31_compute_privexp() [all …]
|
/freebsd/contrib/bearssl/test/ |
H A D | test_math.c | 385 mpz_t n, e, d, p, q, dp, dq, iq, t1, t2, phi; 401 mpz_init(phi); 432 mpz_mul(phi, t1, t2); 433 mpz_invert(d, e, phi);
|
/freebsd/contrib/ntp/clockstuff/ |
H A D | propdelay.c | 434 double phi; in propdelay() local 439 phi = (PI/2.0) - atan((h / (EARTHRADIUS * sin(theta))) + tan(theta/2)); in propdelay() 440 td = dg / (LIGHTSPEED * sin(phi)); in propdelay()
|
/freebsd/usr.bin/fortune/tools/ |
H A D | Troff.sed | 4 /_a-squared cos 2(phi)/s//\\fIa\\fP\\u2\\d cos 2\\(*f/
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | numbers.cppm |
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | numbers | 57 inline constexpr double phi = phi_v<double>; 151 inline constexpr double phi = phi_v<double>;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPassRegistry.def | 45 FUNCTION_PASS("amdgpu-rewrite-undef-for-phi", AMDGPURewriteUndefForPHIPass())
|
/freebsd/crypto/libecc/src/examples/hash/ |
H A D | gostr34_11_94.c | 76 unsigned int phi = ((8 * i) + k); in gostr34_11_94_P() local 77 y_[phi_idx - 1] = y[phi - 1]; in gostr34_11_94_P()
|
/freebsd/contrib/llvm-project/llvm/lib/Passes/ |
H A D | PassRegistry.def | 286 FUNCTION_ANALYSIS("phi-values", PhiValuesAnalysis()) 437 FUNCTION_PASS("print<phi-values>", PhiValuesPrinterPass(dbgs())) 515 "force-hardware-loops;force-hardware-loop-phi;force-nested-hardware-loop;"
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | CommentHTMLNamedCharacterReferences.td | 139 def : NCR<"phi", 0x003C6>;
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ModuloSchedule.cpp | 1285 Register phi(Register LoopReg, std::optional<Register> InitReg = {}, 1353 phi(R); in rewrite() 1360 phi(Def.getReg()); in rewrite() 1387 Reg = phi(Reg); in remapUse() 1445 LoopReg = phi(LoopReg, *DefaultI++, MRI.getRegClass(Reg)); in remapUse() 1470 Register KernelRewriter::phi(Register LoopReg, std::optional<Register> InitReg, in phi() function in KernelRewriter
|
H A D | EarlyIfConversion.cpp | 117 PHIInfo(MachineInstr *phi) : PHI(phi) {} in PHIInfo()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjC.cpp | 2993 auto *phi = dyn_cast<llvm::PHINode>(value); in emitARCOperationAfterCall() local 2994 if (phi && phi->getNumIncomingValues() == 2 && in emitARCOperationAfterCall() 2995 isa<llvm::ConstantPointerNull>(phi->getIncomingValue(1)) && in emitARCOperationAfterCall() 2996 isa<llvm::CallBase>(phi->getIncomingValue(0))) { in emitARCOperationAfterCall() 2999 llvm::Value *inVal = phi->getIncomingValue(0); in emitARCOperationAfterCall() 3001 phi->setIncomingValue(0, inVal); in emitARCOperationAfterCall() 3002 value = phi; in emitARCOperationAfterCall()
|
H A D | CGObjCGNU.cpp | 2968 llvm::PHINode *phi = Builder.CreatePHI(v->getType(), 2); in GenerateMessageSend() local 2969 phi->addIncoming(v, nonNilPathBB); in GenerateMessageSend() 2970 phi->addIncoming(CGM.EmitNullConstant(ResultType), nilPathBB); in GenerateMessageSend() 2971 msgRet = RValue::get(phi); in GenerateMessageSend() 2977 llvm::PHINode *phi = Builder.CreatePHI(v.first->getType(), 2); in GenerateMessageSend() local 2978 phi->addIncoming(v.first, nonNilPathBB); in GenerateMessageSend() 2979 phi->addIncoming(llvm::Constant::getNullValue(v.first->getType()), in GenerateMessageSend() 2985 msgRet = RValue::getComplex(phi, phi2); in GenerateMessageSend()
|
H A D | CGExprScalar.cpp | 3893 llvm::PHINode *phi = Builder.CreatePHI(opTy, 2); in EmitOverflowCheckedBinOp() local 3894 phi->addIncoming(result, initialBB); in EmitOverflowCheckedBinOp() 3895 phi->addIncoming(handlerResult, overflowBB); in EmitOverflowCheckedBinOp() 3897 return phi; in EmitOverflowCheckedBinOp()
|
H A D | CGObjCMac.cpp | 1795 llvm::PHINode *phi = CGF.Builder.CreatePHI(null->getType(), 2); in complete() local 1796 phi->addIncoming(result.getScalarVal(), callBB); in complete() 1797 phi->addIncoming(null, NullBB); in complete() 1798 return RValue::get(phi); in complete()
|
/freebsd/share/misc/ |
H A D | iso639 | 383 phi phi Philippine languages
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/ |
H A D | MachinePassRegistry.def | 135 MACHINE_FUNCTION_PASS("phi-node-elimination", PHIEliminationPass())
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | MathExtras.h | 61 … phi = 1.6180339887498948482; // (0x1.9e3779b97f4a8P+0) https://oeis.org/A001622 variable
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 868 INSTKEYWORD(phi, PHI); in LexIdentifier()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | InlineFunction.cpp | 174 PHINode *phi = cast<PHINode>(I); in addIncomingPHIValuesForInto() local 175 phi->addIncoming(UnwindDestPHIValues[i], src); in addIncomingPHIValuesForInto()
|
/freebsd/sys/netpfil/ipfw/ |
H A D | ip_fw_sockopt.c | 2598 struct opcode_obj_rewrite **phi) in find_op_rw_range() argument 2622 *phi = hi; in find_op_rw_range()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Intrinsics.td | 2607 // can be used with a phi, icmp and br to control the number of iterations
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 3499 SYMBOL(phi, std::numbers::, <numbers>)
|