Home
last modified time | relevance | path

Searched refs:KillPos (Results 1 – 4 of 4) sorted by relevance

/src/contrib/tcsh/
H A Ded.h138 EXTERN int KillPos; /* points to next kill */ variable
H A Ded.chared.c867 j = KillPos; in SetKillRing()
870 j = (KillPos - count + KillRingLen) % KillRingLen; in SetKillRing()
880 KillPos = count % max; in SetKillRing()
899 YankPos = (KillPos - 1 + KillRingLen) % KillRingLen; in c_push_kill()
931 YankPos = KillPos; in c_push_kill()
934 pos = &KillRing[KillPos]; in c_push_kill()
935 KillPos = (KillPos + 1) % KillRingMax; in c_push_kill()
H A Ded.init.c299 YankPos = KillPos = 0; in ed_Init()
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp991 MachineBasicBlock::iterator KillPos = KillMI; in rescheduleMIBelowKill() local
992 ++KillPos; in rescheduleMIBelowKill()
993 for (MachineInstr &OtherMI : make_range(End, KillPos)) { in rescheduleMIBelowKill()
1042 MachineBasicBlock::iterator InsertPos = KillPos; in rescheduleMIBelowKill()