Lines Matching refs:atIndex

431     APFloat A = LHS.atIndex(0).deref<Floating>().getAPFloat();  in Mulc()
432 APFloat B = LHS.atIndex(1).deref<Floating>().getAPFloat(); in Mulc()
433 APFloat C = RHS.atIndex(0).deref<Floating>().getAPFloat(); in Mulc()
434 APFloat D = RHS.atIndex(1).deref<Floating>().getAPFloat(); in Mulc()
441 Result.atIndex(0).deref<Floating>() = Floating(ResR); in Mulc()
442 Result.atIndex(0).initialize(); in Mulc()
443 Result.atIndex(1).deref<Floating>() = Floating(ResI); in Mulc()
444 Result.atIndex(1).initialize(); in Mulc()
448 const T &LHSR = LHS.atIndex(0).deref<T>(); in Mulc()
449 const T &LHSI = LHS.atIndex(1).deref<T>(); in Mulc()
450 const T &RHSR = RHS.atIndex(0).deref<T>(); in Mulc()
451 const T &RHSI = RHS.atIndex(1).deref<T>(); in Mulc()
461 if (T::sub(A, B, Bits, &Result.atIndex(0).deref<T>())) in Mulc()
463 Result.atIndex(0).initialize(); in Mulc()
470 if (T::add(A, B, Bits, &Result.atIndex(1).deref<T>())) in Mulc()
472 Result.atIndex(1).initialize(); in Mulc()
486 APFloat A = LHS.atIndex(0).deref<Floating>().getAPFloat(); in Divc()
487 APFloat B = LHS.atIndex(1).deref<Floating>().getAPFloat(); in Divc()
488 APFloat C = RHS.atIndex(0).deref<Floating>().getAPFloat(); in Divc()
489 APFloat D = RHS.atIndex(1).deref<Floating>().getAPFloat(); in Divc()
496 Result.atIndex(0).deref<Floating>() = Floating(ResR); in Divc()
497 Result.atIndex(0).initialize(); in Divc()
498 Result.atIndex(1).deref<Floating>() = Floating(ResI); in Divc()
499 Result.atIndex(1).initialize(); in Divc()
503 const T &LHSR = LHS.atIndex(0).deref<T>(); in Divc()
504 const T &LHSI = LHS.atIndex(1).deref<T>(); in Divc()
505 const T &RHSR = RHS.atIndex(0).deref<T>(); in Divc()
506 const T &RHSI = RHS.atIndex(1).deref<T>(); in Divc()
526 T &ResultR = Result.atIndex(0).deref<T>(); in Divc()
527 T &ResultI = Result.atIndex(1).deref<T>(); in Divc()
535 Result.atIndex(0).initialize(); in Divc()
544 Result.atIndex(1).initialize(); in Divc()
1013 VL = LHS.atIndex(0).getByteOffset();
1015 VR = RHS.atIndex(0).getByteOffset();
1768 const Pointer &Ptr = S.Stk.peek<Pointer>().atIndex(Idx); in InitElem()
1782 const Pointer &Ptr = S.Stk.pop<Pointer>().atIndex(Idx); in InitElemPop()
1909 S.Stk.push<Pointer>(Ptr.atIndex(static_cast<uint64_t>(Result))); in OffsetHelper()
2421 S.Stk.push<T>(Ptr.atIndex(Index).deref<T>()); in ArrayElem()
2432 S.Stk.push<T>(Ptr.atIndex(Index).deref<T>()); in ArrayElemPop()
2442 const Pointer &SP = SrcPtr.atIndex(SrcIndex + I); in CopyArray()
2447 const Pointer &DP = DestPtr.atIndex(DestIndex + I); in CopyArray()
2468 S.Stk.push<Pointer>(Ptr.atIndex(0)); in ArrayDecay()