Home
last modified time | relevance | path

Searched refs:phi (Results 1 – 25 of 25) sorted by relevance

/freebsd-13.1/contrib/bearssl/src/rsa/
H A Drsa_i15_privexp.c62 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 Drsa_i31_privexp.c62 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-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp162 MachineBasicBlock::iterator phi = BB->begin(); in runOnMachineFunction() local
163 while (phi != BB->end() && phi->isPHI()) { in runOnMachineFunction()
164 for (unsigned i = phi->getNumOperands() - 1; i >= 2; i-=2) in runOnMachineFunction()
165 if (!preds.count(phi->getOperand(i).getMBB())) { in runOnMachineFunction()
166 phi->RemoveOperand(i); in runOnMachineFunction()
167 phi->RemoveOperand(i-1); in runOnMachineFunction()
171 if (phi->getNumOperands() == 3) { in runOnMachineFunction()
172 const MachineOperand &Input = phi->getOperand(1); in runOnMachineFunction()
173 const MachineOperand &Output = phi->getOperand(0); in runOnMachineFunction()
196 phi++->eraseFromParent(); in runOnMachineFunction()
[all …]
H A DModuloSchedule.cpp1272 Register phi(Register LoopReg, Optional<Register> InitReg = {},
1340 phi(R); in rewrite()
1347 phi(Def.getReg()); in rewrite()
1374 Reg = phi(Reg); in remapUse()
1432 LoopReg = phi(LoopReg, *DefaultI++, MRI.getRegClass(Reg)); in remapUse()
1457 Register KernelRewriter::phi(Register LoopReg, Optional<Register> InitReg, in phi() function in KernelRewriter
H A DEarlyIfConversion.cpp118 PHIInfo(MachineInstr *phi) in PHIInfo()
119 : PHI(phi), TReg(0), FReg(0), CondCycles(0), TCycles(0), FCycles(0) {} in PHIInfo()
/freebsd-13.1/contrib/subversion/subversion/libsvn_repos/
H A Dreplay.c173 apr_hash_index_t *hi, *phi; in add_subdir() local
182 for (phi = apr_hash_first(pool, props); phi; phi = apr_hash_next(phi)) in add_subdir()
184 const char *key = apr_hash_this_key(phi); in add_subdir()
185 svn_string_t *val = apr_hash_this_val(phi); in add_subdir()
301 for (phi = apr_hash_first(pool, props); phi; phi = apr_hash_next(phi)) in add_subdir()
303 const char *key = apr_hash_this_key(phi); in add_subdir()
304 svn_string_t *val = apr_hash_this_val(phi); in add_subdir()
/freebsd-13.1/contrib/bearssl/test/
H A Dtest_math.c385 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-13.1/contrib/ntp/clockstuff/
H A Dpropdelay.c434 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-13.1/usr.bin/fortune/tools/
H A DTroff.sed4 /_a-squared cos 2(phi)/s//\\fIa\\fP\\u2\\d cos 2\\(*f/
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dnumbers57 inline constexpr double phi = phi_v<double>;
128 inline constexpr double phi = phi_v<double>;
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp2754 llvm::PHINode *phi = Builder.CreatePHI(v->getType(), 2); in GenerateMessageSend() local
2755 phi->addIncoming(v, messageBB); in GenerateMessageSend()
2757 msgRet = RValue::get(phi); in GenerateMessageSend()
2760 llvm::PHINode *phi = Builder.CreatePHI(v.getType(), 2); in GenerateMessageSend() local
2764 phi->addIncoming(v.getPointer(), messageBB); in GenerateMessageSend()
2765 phi->addIncoming(NullVal.getPointer(), startBB); in GenerateMessageSend()
2766 msgRet = RValue::getAggregate(Address(phi, v.getAlignment())); in GenerateMessageSend()
2769 llvm::PHINode *phi = Builder.CreatePHI(v.first->getType(), 2); in GenerateMessageSend() local
2770 phi->addIncoming(v.first, messageBB); in GenerateMessageSend()
2771 phi->addIncoming(llvm::Constant::getNullValue(v.first->getType()), in GenerateMessageSend()
[all …]
H A DCGObjC.cpp2971 auto *phi = dyn_cast<llvm::PHINode>(value); in emitARCOperationAfterCall() local
2972 if (phi && phi->getNumIncomingValues() == 2 && in emitARCOperationAfterCall()
2973 isa<llvm::ConstantPointerNull>(phi->getIncomingValue(1)) && in emitARCOperationAfterCall()
2974 isa<llvm::CallBase>(phi->getIncomingValue(0))) { in emitARCOperationAfterCall()
2977 llvm::Value *inVal = phi->getIncomingValue(0); in emitARCOperationAfterCall()
2979 phi->setIncomingValue(0, inVal); in emitARCOperationAfterCall()
2980 value = phi; in emitARCOperationAfterCall()
H A DCGExpr.cpp4589 llvm::PHINode *phi = in EmitConditionalOperatorLValue() local
4591 phi->addIncoming(lhs->getPointer(*this), lhsBlock); in EmitConditionalOperatorLValue()
4592 phi->addIncoming(rhs->getPointer(*this), rhsBlock); in EmitConditionalOperatorLValue()
4593 Address result(phi, std::min(lhs->getAlignment(), rhs->getAlignment())); in EmitConditionalOperatorLValue()
H A DCGExprScalar.cpp3368 llvm::PHINode *phi = Builder.CreatePHI(opTy, 2); in EmitOverflowCheckedBinOp() local
3369 phi->addIncoming(result, initialBB); in EmitOverflowCheckedBinOp()
3370 phi->addIncoming(handlerResult, overflowBB); in EmitOverflowCheckedBinOp()
3372 return phi; in EmitOverflowCheckedBinOp()
H A DCGObjCMac.cpp1811 llvm::PHINode *phi = CGF.Builder.CreatePHI(null->getType(), 2); in complete() local
1812 phi->addIncoming(result.getScalarVal(), callBB); in complete()
1813 phi->addIncoming(null, NullBB); in complete()
1814 return RValue::get(phi); in complete()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCommentHTMLNamedCharacterReferences.td139 def : NCR<"phi", 0x003C6>;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Passes/
H A DPassRegistry.def165 FUNCTION_ANALYSIS("phi-values", PhiValuesAnalysis())
289 FUNCTION_PASS("print<phi-values>", PhiValuesPrinterPass(dbgs()))
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePassRegistry.def173 DUMMY_MACHINE_FUNCTION_PASS("phi-node-elimination", PHIEliminationPass, ())
/freebsd-13.1/share/misc/
H A Diso639384 phi phi Philippine languages
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DMathExtras.h71phi = 1.6180339887498948482; // (0x1.9e3779b97f4a8P+0) https://oeis.org/A001622 variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp875 INSTKEYWORD(phi, PHI); in LexIdentifier()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp171 PHINode *phi = cast<PHINode>(I); in addIncomingPHIValuesForInto() local
172 phi->addIncoming(UnwindDestPHIValues[i], src); in addIncomingPHIValuesForInto()
/freebsd-13.1/sys/netpfil/ipfw/
H A Dip_fw_sockopt.c3165 struct opcode_obj_rewrite **phi) in find_op_rw_range() argument
3189 *phi = hi; in find_op_rw_range()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsics.td1707 // can be used with a phi, icmp and br to control the number of iterations
/freebsd-13.1/share/dict/
H A Dweb2144553 phi