24 short int msw_b
, unsigned short int lsw_b
)
31 if (u
.w
.msw
< msw_b
) return 0;
36 if (u
.w
.lsw
< lsw_b
) return 0;
44 __ucmpsi2(unsigned long arga
,
45 unsigned short int msw_b
, unsigned short int lsw_b
)
52 if (u
.w
.msw
< msw_b
) return 0;
57 if (u
.w
.lsw
< lsw_b
) return 0;
86 __cmppsi2(long arga
, long argb
)
93 if (a
.w
.msb
!= b
.w
.msb
)
95 if (a
.w
.msb
< b
.w
.msb
) return 0;
98 if (a
.w
.lsw
!= b
.w
.lsw
)
100 if (a
.w
.lsw
< b
.w
.lsw
) return 0;
108 __ucmppsi2(long arga
, long argb
)
115 if (a
.w
.msb
!= b
.w
.msb
)
117 if (a
.w
.msb
< b
.w
.msb
) return 0;
120 if (a
.w
.lsw
!= b
.w
.lsw
)
122 if (a
.w
.lsw
< b
.w
.lsw
) return 0;