Lines Matching refs:disp
1955 this->byte(mod_rm(mod(m.disp), x&7, (need_SIB ? rsp : m.base)&7));
1959 this->bytes(&m.disp, imm_bytes(mod(m.disp)));
2064 int disp;
2065 memcpy(&disp, fCode+fSize-4, 4);
2066 disp--;
2067 memcpy(fCode+fSize-4, &disp, 4);
2189 this->byte(mod_rm(mod(m.disp), dst&7, (need_SIB ? rsp : m.base)&7));
2193 this->bytes(&m.disp, imm_bytes(mod(m.disp)));
2218 // 7? one-byte-disp
2219 // 0F 8? four-byte-disp
2536 int disp = (int)(inst << 8) >> 13;
2538 disp += delta/4; // delta is in bytes, we want instructions.
2541 inst = ((disp << 5) & (19_mask << 5))
2550 int disp;
2551 memcpy(&disp, fCode + ref, 4);
2553 disp += delta;
2555 memcpy(fCode + ref, &disp, 4);