Lines Matching full:v
178 unsigned long *m = mem, v = 1234; in test_incdecnotneg() local
201 *m = v; in test_incdecnotneg()
204 asm ("lock negq %0" : "+m"(*m)); v = -v; in test_incdecnotneg()
205 report(*m == v, "lock negl"); in test_incdecnotneg()
206 asm ("lock notq %0" : "+m"(*m)); v = ~v; in test_incdecnotneg()
207 report(*m == v, "lock notl"); in test_incdecnotneg()
401 uint32_t *v = (uint32_t *)&vv; in test_sse() local
408 v[0] = 1; v[1] = 2; v[2] = 3; v[3] = 4; \ in test_sse()
410 report(sseeq(v, mem), insn " (read)"); \ in test_sse()
413 report(sseeq(v, mem), insn " (write)"); \ in test_sse()
443 uint32_t *v = (uint32_t *)&vv; in test_sse_exceptions() local
455 v[0] = 1; v[1] = 2; v[2] = 3; v[3] = 4; in test_sse_exceptions()
458 report(sseeq(v, mem), "movups unaligned"); in test_sse_exceptions()
460 v[0] = 1; v[1] = 2; v[2] = 3; v[3] = 4; in test_sse_exceptions()
463 report(sseeq(v, mem), "movupd unaligned"); in test_sse_exceptions()
473 v[0] = 1; v[1] = 2; v[2] = 3; v[3] = 4; in test_sse_exceptions()
477 report(sseeq(v, mem), "movups unaligned crosspage"); in test_sse_exceptions()