Home | History | Annotate | Download | only in src

Lines Matching refs:oh

164     uint64_t th, tl, oh, ol;
169 oh = th >> (shift * 8);
174 out->u[2] = (uint32_t)(oh >> 32);
175 out->u[3] = (uint32_t)oh;
179 uint64_t th, tl, oh, ol;
184 oh = th >> (shift * 8);
189 out->u[3] = (uint32_t)(oh >> 32);
190 out->u[2] = (uint32_t)oh;
203 uint64_t th, tl, oh, ol;
208 oh = th << (shift * 8);
210 oh |= tl >> (64 - shift * 8);
213 out->u[2] = (uint32_t)(oh >> 32);
214 out->u[3] = (uint32_t)oh;
218 uint64_t th, tl, oh, ol;
223 oh = th << (shift * 8);
225 oh |= tl >> (64 - shift * 8);
228 out->u[3] = (uint32_t)(oh >> 32);
229 out->u[2] = (uint32_t)oh;