Lines Matching refs:Or
350 "Or-Not", { RdV = (RtV | ~RsV); })
357 "Or-Not", { RddV = (RttV | ~RssV); })
388 "Compound And-Or", { RxV &= (RsV | RtV); })
396 "Compound Or-And", { RxV |= (RsV & RtV); })
399 "Compound Or-AndN", { RxV |= (RsV & ~RtV); })
402 "Compound Or-Or", { RxV |= (RsV | RtV); })
405 "Compound Or-xor", { RxV |= (RsV ^ RtV); })
409 "Compound Or-And", { RxV = RuV | (RxV & fIMMEXT(siV)); })
412 "Compound Or-And", { RxV = RxV | (RsV & fIMMEXT(siV)); })
415 "Compound Or-And", { RxV = RxV | (RsV | fIMMEXT(siV)); })
424 "Compound Xor-Or", { RxV ^= (RsV | RtV); })