Symbol: vreg
sys/arch/powerpc/booke/spe.c
157
pcb->pcb_vr.vreg[8][0] = vr->__vr32[2];
sys/arch/powerpc/booke/spe.c
158
pcb->pcb_vr.vreg[8][1] = vr->__vr32[3];
sys/arch/powerpc/booke/spe.c
164
pcb->pcb_vr.vreg[i][0] = vr[0].__vr32[0];
sys/arch/powerpc/booke/spe.c
165
pcb->pcb_vr.vreg[i][1] = vr[1].__vr32[0];
sys/arch/powerpc/booke/spe.c
166
pcb->pcb_vr.vreg[i][2] = vr[2].__vr32[0];
sys/arch/powerpc/booke/spe.c
167
pcb->pcb_vr.vreg[i][3] = vr[3].__vr32[0];
sys/arch/powerpc/booke/spe.c
188
vr[0].__vr32[0] = pcb->pcb_vr.vreg[i][0];
sys/arch/powerpc/booke/spe.c
192
vr[1].__vr32[0] = pcb->pcb_vr.vreg[i][1];
sys/arch/powerpc/booke/spe.c
196
vr[2].__vr32[0] = pcb->pcb_vr.vreg[i][2];
sys/arch/powerpc/booke/spe.c
200
vr[3].__vr32[0] = pcb->pcb_vr.vreg[i][3];
sys/arch/powerpc/booke/spe.c
206
mcp->__vrf.__vrs[0].__vr32[2] = pcb->pcb_vr.vreg[8][0];
sys/arch/powerpc/booke/spe.c
207
mcp->__vrf.__vrs[0].__vr32[3] = pcb->pcb_vr.vreg[8][1];
sys/arch/powerpc/include/altivec.h
43
struct vreg;
sys/arch/powerpc/include/altivec.h
74
void vec_load_from_vreg(const struct vreg *);
sys/arch/powerpc/include/altivec.h
75
void vec_unload_to_vreg(struct vreg *);
sys/arch/powerpc/include/pcb.h
61
struct vreg pcb_vr __attribute__((aligned(16)));
sys/arch/powerpc/include/pcb.h
68
struct vreg vstate;
sys/arch/powerpc/include/reg.h
71
uint32_t vreg[32][4];
sys/arch/powerpc/oea/altivec.c
174
memcpy(pcb->pcb_vr.vreg, &mcp->__vrf.__vrs,
sys/arch/powerpc/oea/altivec.c
175
sizeof (pcb->pcb_vr.vreg));
sys/arch/powerpc/oea/altivec.c
202
memcpy(mcp->__vrf.__vrs, pcb->pcb_vr.vreg,
sys/arch/powerpc/oea/oea_machdep.c
190
curpcb->pcb_vr.vreg[scratch][0] = 0x7FFFDEAD;
sys/arch/powerpc/oea/oea_machdep.c
191
curpcb->pcb_vr.vreg[scratch][1] = 0x7FFFDEAD;
sys/arch/powerpc/oea/oea_machdep.c
192
curpcb->pcb_vr.vreg[scratch][2] = 0x7FFFDEAD;
sys/arch/powerpc/oea/oea_machdep.c
193
curpcb->pcb_vr.vreg[scratch][3] = 0x7FFFDEAD;
sys/arch/powerpc/powerpc/process_machdep.c
156
process_machdep_read_vecregs(struct lwp *l, struct vreg *vregs)
sys/arch/powerpc/powerpc/process_machdep.c
178
process_machdep_write_vecregs(struct lwp *l, struct vreg *vregs)
sys/arch/powerpc/powerpc/process_machdep.c
215
iov.iov_len = sizeof(struct vreg);
sys/arch/powerpc/powerpc/process_machdep.c
219
uio.uio_resid = sizeof(struct vreg);
sys/arch/powerpc/powerpc/process_machdep.c
239
struct vreg r;
sys/arch/powerpc/powerpc/procfs_machdep.c
71
vap->va_bytes = vap->va_size = sizeof(struct vreg);
sys/arch/sparc/sparc/cache.c
416
sun4_vcache_flush_region(int vreg, int ctx)
sys/arch/sparc/sparc/cache.c
422
p = (char *)VRTOVA(vreg); /* reg..reg+sz rather than 0..sz */
sys/arch/sparc/sparc/cache.c
439
sun4_vcache_flush_segment(int vreg, int vseg, int ctx)
sys/arch/sparc/sparc/cache.c
445
p = (char *)VSTOVA(vreg, vseg); /* seg..seg+sz rather than 0..sz */
sys/arch/sparc/sparc/cache.c
616
srmmu_vcache_flush_region(int vreg, int ctx)
sys/arch/sparc/sparc/cache.c
622
p = (char *)VRTOVA(vreg); /* reg..reg+sz rather than 0..sz */
sys/arch/sparc/sparc/cache.c
644
srmmu_vcache_flush_segment(int vreg, int vseg, int ctx)
sys/arch/sparc/sparc/cache.c
650
p = (char *)VSTOVA(vreg, vseg); /* seg..seg+sz rather than 0..sz */
sys/dev/i2c/axp809.c
66
#define AXP_CTRL(name, min, max, step, ereg, emask, vreg, vmask) \
sys/dev/i2c/axp809.c
71
.c_voltage_reg = AXP_##vreg##_REG, .c_voltage_mask = (vmask) }
sys/dev/i2c/axp809.c
73
#define AXP_CTRL2(name, min, max, step1, step1cnt, step2, step2cnt, ereg, emask, vreg, vmask) \
sys/dev/i2c/axp809.c
78
.c_voltage_reg = AXP_##vreg##_REG, .c_voltage_mask = (vmask) }
sys/dev/i2c/axppmic.c
136
#define AXP_CTRL(name, min, max, step, ereg, emask, vreg, vmask) \
sys/dev/i2c/axppmic.c
142
.c_voltage_reg = (vreg), .c_voltage_mask = (vmask) }
sys/dev/i2c/axppmic.c
144
#define AXP_CTRL2(name, min, max, step1, step1cnt, step2, step2cnt, ereg, emask, vreg, vmask) \
sys/dev/i2c/axppmic.c
150
.c_voltage_reg = (vreg), .c_voltage_mask = (vmask) }
sys/dev/i2c/axppmic.c
152
#define AXP_CTRL2_RANGE(name, min, max, step1, step1cnt, step2start, step2, step2cnt, ereg, emask, vreg, vmask) \
sys/dev/i2c/axppmic.c
159
.c_voltage_reg = (vreg), .c_voltage_mask = (vmask) }
sys/dev/i2c/axppmic.c
161
#define AXP_CTRL_IO(name, min, max, step, ereg, emask, eval, dval, vreg, vmask) \
sys/dev/i2c/axppmic.c
167
.c_voltage_reg = (vreg), .c_voltage_mask = (vmask) }