/freebsd/sys/contrib/device-tree/Bindings/display/ti/ |
H A D | ti,am65x-dss.yaml | 17 supports 1 OLDI TX and in AM625 DSS, the first video port output is 18 internally routed to 2 OLDI TXes. The second video port supports DPI 90 For AM65x DSS, the OLDI output port node from video port 1. 100 ti,am65x-oldi-io-ctrl: 103 phandle to syscon device node mapping OLDI IO_CTRL registers. 106 and OLDI_CLK_IO_CTRL registers. This property is needed for OLDI 156 ti,am65x-oldi-io-ctrl = <&dss_oldi_io_ctrl>;
|
/freebsd/crypto/openssl/crypto/ |
H A D | punycode.c | 99 * let oldi = i 110 * let bias = adapt(i - oldi, length(output) + 1, test oldi is 0?) 150 unsigned int oldi = i; in ossl_punycode_decode() local 178 bias = adapt(i - oldi, written_out + 1, (oldi == 0)); in ossl_punycode_decode()
|
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | syscon.yaml | 114 - ti,am625-dss-oldi-io-ctrl 116 - ti,am654-dss-oldi-io-ctrl 211 - ti,am625-dss-oldi-io-ctrl 213 - ti,am654-dss-oldi-io-ctrl
|
/freebsd/crypto/openssl/crypto/hashtable/ |
H A D | hashtable.c | 426 uint64_t oldi, oldj, newi, newj; in grow_hashtable() local 452 for (oldi = 0; oldi < h->wpd.neighborhood_len; oldi++) { in grow_hashtable() 453 PREFETCH_NEIGHBORHOOD(oldmd->neighborhoods[oldi + 1]); in grow_hashtable() 455 oldv = oldmd->neighborhoods[oldi].entries[oldj].value; in grow_hashtable() 458 oldhash = oldmd->neighborhoods[oldi].entries[oldj].hash; in grow_hashtable()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/BlocksRuntime/ |
H A D | runtime.c | 57 static __inline bool OSAtomicCompareAndSwapInt(int oldi, int newi, int volatile *dst) { in OSAtomicCompareAndSwapInt() argument 59 int original = InterlockedCompareExchange(dst, newi, oldi); in OSAtomicCompareAndSwapInt() 60 return (original == oldi); in OSAtomicCompareAndSwapInt() 76 static __inline bool OSAtomicCompareAndSwapInt(int oldi, int newi, int volatile *dst) { in OSAtomicCompareAndSwapInt() argument 77 return __sync_bool_compare_and_swap(dst, oldi, newi); in OSAtomicCompareAndSwapInt()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | WinEHPrepare.cpp | 1057 auto *OldI = dyn_cast<Instruction>(const_cast<Value *>(VT.first)); in cloneCommonBlocks() local 1058 if (!OldI) in cloneCommonBlocks() 1063 for (Use &U : OldI->uses()) { in cloneCommonBlocks() 1078 // We found a use of OldI outside of the funclet. Rename all uses of OldI in cloneCommonBlocks() 1082 SSAUpdate.Initialize(OldI->getType(), OldI->getName()); in cloneCommonBlocks() 1083 SSAUpdate.AddAvailableValue(OldI->getParent(), OldI); in cloneCommonBlocks()
|
H A D | MachineBasicBlock.cpp | 818 succ_iterator OldI = llvm::find(successors(), Old); in splitSuccessor() local 819 assert(OldI != succ_end() && "Old is not a successor of this block!"); in splitSuccessor() 829 : *getProbabilityIterator(OldI)); in splitSuccessor() 864 succ_iterator OldI = E; in replaceSuccessor() local 867 OldI = I; in replaceSuccessor() 873 if (OldI != E) in replaceSuccessor() 877 assert(OldI != E && "Old is not a successor of this block"); in replaceSuccessor() 883 *OldI = New; in replaceSuccessor() 892 *ProbIter += *getProbabilityIterator(OldI); in replaceSuccessor() 894 removeSuccessor(OldI); in replaceSuccessor()
|
H A D | CodeGenPrepare.cpp | 1115 auto *OldI = dyn_cast<Instruction>(Old); in replaceAllUsesWith() local 1116 if (OldI) { in replaceAllUsesWith() 1117 for (Value::user_iterator UI = OldI->user_begin(), E = OldI->user_end(); in replaceAllUsesWith() 7403 Instruction *OldI = cast<Instruction>(U->getUser()); in tryToSinkFreeOperands() local 7404 if (NewInstructions.count(OldI)) in tryToSinkFreeOperands() 7405 NewInstructions[OldI]->setOperand(U->getOperandNo(), NI); in tryToSinkFreeOperands()
|
/freebsd/sys/contrib/device-tree/src/arm64/ti/ |
H A D | k3-am654-base-board-rocktech-rk101-panel.dtso | 3 * OLDI-LCD1EVM Rocktech integrated panel and touch DT overlay for AM654-EVM.
|
H A D | k3-am62.dtsi | 110 dss_vp1_clk: clock-divider-oldi {
|
H A D | k3-am65-main.dtsi | 510 dss_oldi_io_ctrl: dss-oldi-io-ctrl@41e0 { 511 compatible = "ti,am654-dss-oldi-io-ctrl", "syscon"; 1007 ti,am65x-oldi-io-ctrl = <&dss_oldi_io_ctrl>;
|
H A D | k3-am62-main.dtsi | 781 <0x00 0x3020a000 0x00 0x1000>, /* vp1: Used for OLDI */
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | rfc3492.txt | 578 let oldi = i 589 let bias = adapt(i - oldi, length(output) + 1, test oldi is 0?) 1550 b, j, in, oldi, w, k, digit, t; 1593 for (oldi = i, w = 1, k = base; ; k += base) { 1606 bias = adapt(i - oldi, out + 1, oldi == 0);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | CloneFunction.cpp | 799 BasicBlock::const_iterator OldI = OldBB->begin(); in CloneAndPruneIntoFromInst() local 803 assert(VMap[&*OldI] == PN && "VMap mismatch"); in CloneAndPruneIntoFromInst() 804 VMap[&*OldI] = NV; in CloneAndPruneIntoFromInst() 806 ++OldI; in CloneAndPruneIntoFromInst()
|
/freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
H A D | RustDemangle.cpp | 1152 size_t OldI = I; in decodePunycode() local 1183 Bias = Adapt(I - OldI, NumPoints); in decodePunycode()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | RewriteStatepointsForGC.cpp | 1599 Instruction *OldI = Old; in doReplacement() local 1602 assert(OldI != NewI && "Disallowed at construction?!"); in doReplacement() 1610 OldI->replaceAllUsesWith(NewI); in doReplacement() 1615 auto *RI = cast<ReturnInst>(OldI->getParent()->getTerminator()); in doReplacement() 1620 OldI->eraseFromParent(); in doReplacement()
|
H A D | SROA.cpp | 5417 if (Instruction *OldI = dyn_cast<Instruction>(OldV)) in clobberUse() local 5418 if (isInstructionTriviallyDead(OldI)) { in clobberUse() 5419 DeadInsts.push_back(OldI); in clobberUse()
|
/freebsd/contrib/unbound/services/ |
H A D | authzone.c | 773 size_t oldi; in rrset_remove_rr() local 774 if(i < index) oldi = i; in rrset_remove_rr() 775 else oldi = i+1; in rrset_remove_rr() 776 memmove(d->rr_data[i], old->rr_data[oldi], d->rr_len[i]); in rrset_remove_rr()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOverload.cpp | 1534 OldI = Old->specific_attr_begin<EnableIfAttr>(), in IsOverloadOrOverrideImpl() 1536 NewI != NewE || OldI != OldE; ++NewI, ++OldI) { in IsOverloadOrOverrideImpl() 1537 if (NewI == NewE || OldI == OldE) in IsOverloadOrOverrideImpl() 1541 OldI->getCond()->Profile(OldID, SemaRef.Context, true); in IsOverloadOrOverrideImpl()
|
/freebsd/contrib/bmake/ |
H A D | configure | 973 | --oldin | --oldi | --old | --ol | --o) 977 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
/freebsd/contrib/byacc/ |
H A D | configure | 352 | --oldin | --oldi | --old | --ol | --o) 356 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
/freebsd/contrib/tcpdump/ |
H A D | configure | 993 | --oldin | --oldi | --old | --ol | --o) 997 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
/freebsd/contrib/libpcap/ |
H A D | configure | 1067 | --oldin | --oldi | --old | --ol | --o) 1071 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
/freebsd/contrib/openbsm/ |
H A D | configure | 1030 | --oldin | --oldi | --old | --ol | --o) 1034 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
/freebsd/crypto/krb5/src/ |
H A D | configure | 1193 | --oldin | --oldi | --old | --ol | --o) 1197 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|