Lines Matching refs:p1
102 uint32_t p1 = static_cast<uint32_t>(Mp.f >> -one.e);
105 int kappa = CountDecimalDigit32(p1); // kappa in [0, 9]
111 d = p1 / TEN8POW;
112 p1 %= TEN8POW;
115 d = p1 / TEN7POW;
116 p1 %= TEN7POW;
119 d = p1 / TEN6POW;
120 p1 %= TEN6POW;
123 d = p1 / TEN5POW;
124 p1 %= TEN5POW;
127 d = p1 / TEN4POW;
128 p1 %= TEN4POW;
131 d = p1 / TEN3POW;
132 p1 %= TEN3POW;
135 d = p1 / TEN2POW;
136 p1 %= TEN2POW;
139 d = p1 / TEN;
140 p1 %= TEN;
143 d = p1;
144 p1 = 0;
152 uint64_t tmp = (static_cast<uint64_t>(p1) << -one.e) + p2;