Lines Matching defs:offset
865 int offset;
871 offset = index;
873 offset = 1 - index;
876 return offset;
881 int offset;
887 offset = index;
889 offset = 3 - index;
891 return offset;
898 int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
901 if (offset == -1)
906 val.vsxval[offset] = gpr;
909 VCPU_VSX_FPR(vcpu, index, offset) = gpr;
954 int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
958 if (offset == -1)
963 val.vsx32val[offset] = gpr32;
966 dword_offset = offset / 2;
967 word_offset = offset % 2;
979 int offset;
986 offset = elts - index - 1;
988 offset = index;
990 return offset;
1022 int offset = kvmppc_get_vmx_dword_offset(vcpu,
1026 if (offset == -1)
1030 val.vsxval[offset] = gpr;
1038 int offset = kvmppc_get_vmx_word_offset(vcpu,
1042 if (offset == -1)
1046 val.vsx32val[offset] = gpr32;
1054 int offset = kvmppc_get_vmx_hword_offset(vcpu,
1058 if (offset == -1)
1062 val.vsx16val[offset] = gpr16;
1070 int offset = kvmppc_get_vmx_byte_offset(vcpu,
1074 if (offset == -1)
1078 val.vsx8val[offset] = gpr8;
2370 create_tce_64.offset = 0;