H                  54 common/gcc-millicode/adddi3.c 	sum.ui[H] = aa.ui[H] + bb.ui[H] + (sum.ui[L] < bb.ui[L]);
H                  53 common/gcc-millicode/ashldi3.c 		aa.ui[H] = aa.ui[L] << (shift - INT_BITS);
H                  56 common/gcc-millicode/ashldi3.c 		aa.ui[H] = (aa.ui[H] << shift) |
H                  62 common/gcc-millicode/ashrdi3.c 		s = (aa.si[H] >> (INT_BITS - 1)) >> 1;
H                  64 common/gcc-millicode/ashrdi3.c 		aa.ui[L] = aa.si[H] >> (shift - INT_BITS);
H                  65 common/gcc-millicode/ashrdi3.c 		aa.ui[H] = s;
H                  68 common/gcc-millicode/ashrdi3.c 		    (aa.ui[H] << (INT_BITS - shift));
H                  70 common/gcc-millicode/ashrdi3.c 		aa.si[H] >>= shift;
H                  52 common/gcc-millicode/cmpdi2.c 	return (aa.si[H] < bb.si[H] ? 0 : aa.si[H] > bb.si[H] ? 2 :
H                  53 common/gcc-millicode/lshldi3.c 		aa.ui[H] = aa.ui[L] << (shift - INT_BITS);
H                  56 common/gcc-millicode/lshldi3.c 		aa.ui[H] = (aa.ui[H] << shift) |
H                  52 common/gcc-millicode/lshrdi3.c 		aa.ui[L] = aa.ui[H] >> (shift - INT_BITS);
H                  53 common/gcc-millicode/lshrdi3.c 		aa.ui[H] = 0;
H                  56 common/gcc-millicode/lshrdi3.c 		    (aa.ui[H] << (INT_BITS - shift));
H                  57 common/gcc-millicode/lshrdi3.c 		aa.ui[H] >>= shift;
H                 105 common/gcc-millicode/muldi3.c #define	u1	u.ui[H]
H                 107 common/gcc-millicode/muldi3.c #define	v1	v.ui[H]
H                 155 common/gcc-millicode/muldi3.c 		prod.ui[H] = high + (negmid ? -mid : mid) + low.ui[L] +
H                 156 common/gcc-millicode/muldi3.c 		    low.ui[H];
H                 238 common/gcc-millicode/muldi3.c 	prod.ui[H] = prodh;
H                  50 common/gcc-millicode/negdi2.c 	res.ui[H] = -aa.ui[H] - (res.ui[L] > 0);
H                  85 common/gcc-millicode/qdivrem.c 		tmp.ui[H] = tmp.ui[L] = 1 / zero;
H                 114 common/gcc-millicode/qdivrem.c 	u[1] = (digit)HHALF(tmp.ui[H]);
H                 115 common/gcc-millicode/qdivrem.c 	u[2] = (digit)LHALF(tmp.ui[H]);
H                 119 common/gcc-millicode/qdivrem.c 	v[1] = (digit)HHALF(tmp.ui[H]);
H                 120 common/gcc-millicode/qdivrem.c 	v[2] = (digit)LHALF(tmp.ui[H]);
H                 146 common/gcc-millicode/qdivrem.c 			tmp.ui[H] = COMBINE(q1, q2);
H                 255 common/gcc-millicode/qdivrem.c 		tmp.ui[H] = COMBINE(uspace[1], uspace[2]);
H                 260 common/gcc-millicode/qdivrem.c 	tmp.ui[H] = COMBINE(qspace[1], qspace[2]);
H                  53 common/gcc-millicode/subdi3.c 	diff.ui[H] = aa.ui[H] - bb.ui[H] - (diff.ui[L] > aa.ui[L]);
H                  51 common/gcc-millicode/ucmpdi2.c 	return (aa.ui[H] < bb.ui[H] ? 0 : aa.ui[H] > bb.ui[H] ? 2 :