Lines Matching refs:u32Disp
1840 u32Disp = None;
1842 u32Disp = long(asParams[i], 16);
1855 '; cAddrBits=%s cEffOpBits=%s iBaseReg=%s u32Disp=%s iIndexReg=%s iScale=%s\n'
1859 % ( cAddrBits, cEffOpBits, iBaseReg, u32Disp, iIndexReg, iScale,
1893 if u32Disp is not None:
1895 % ( self.gregNameBits(X86_GREG_xAX, cAddrBits), convU32ToSigned(u32Disp), ));
1932 if u32Disp is not None:
1933 self.write(' sub %s, %d\n' % ( sAddrReg, convU32ToSigned(u32Disp), ));
1937 assert u32Disp is None or (u32Disp & 1) == 0;
1954 assert u32Disp is None or (u32Disp & 1) == 0;
1957 assert u32Disp is None or (u32Disp & 3) == 0;
1960 assert u32Disp is None or (u32Disp & 7) == 0;