Lines Matching defs:offs
412 // offs - field offset in struct
413 Register(Type ty, uint32_t index, uint32_t offs, RegisterContext *reg_ctx,
415 : m_index(index), m_offs(offs % sizeof(uint64_t)),
424 // GPR, calculate index from offs
425 Register(uint32_t offs, RegisterContext *reg_ctx, ByteOrder byte_order)
426 : Register(GPR, offs / sizeof(uint64_t), offs, reg_ctx, byte_order) {}
496 Register GetGPRByOffs(uint32_t offs) const {
497 return Register(offs, m_reg_ctx, m_byte_order);
741 uint32_t offs = 0;
743 offs = vr_size - m_byte_size;
746 memcpy(m_data_up->GetBytes(), vr_data->GetBytes() + offs, m_byte_size);
851 // extract 'size' bytes at 'offs' from GPRs
852 bool ExtractFromRegs(int32_t offs, uint32_t size, void *buf) {
854 auto reg = GetGPRByOffs(offs);
865 offs += n;