Lines Matching +full:3 +full:c
87 regs.gpr[3] = (unsigned long) &a; in test_ld()
90 stepped = emulate_step(®s, TEST_LD(5, 3, 0)); in test_ld()
105 regs.gpr[3] = (unsigned long) &a; in test_lwz()
108 stepped = emulate_step(®s, TEST_LWZ(5, 3, 0)); in test_lwz()
119 unsigned int a[3] = {0x0, 0x0, 0x1234}; in test_lwzx()
123 regs.gpr[3] = (unsigned long) a; in test_lwzx()
128 stepped = emulate_step(®s, TEST_LWZX(5, 3, 4)); in test_lwzx()
142 regs.gpr[3] = (unsigned long) &a; in test_std()
146 stepped = emulate_step(®s, TEST_STD(5, 3, 0)); in test_std()
166 regs.gpr[3] = (unsigned long) &a; in test_ldarx_stdcx()
171 stepped = emulate_step(®s, TEST_LDARX(5, 3, 4, 0)); in test_ldarx_stdcx()
189 stepped = emulate_step(®s, TEST_STDCX(5, 3, 4)); in test_ldarx_stdcx()
213 } c; in test_lfsx_stfsx() local
222 c.a = 123.45; in test_lfsx_stfsx()
223 cached_b = c.b; in test_lfsx_stfsx()
225 regs.gpr[3] = (unsigned long) &c.a; in test_lfsx_stfsx()
229 stepped = emulate_step(®s, TEST_LFSX(10, 3, 4)); in test_lfsx_stfsx()
239 c.a = 678.91; in test_lfsx_stfsx()
242 stepped = emulate_step(®s, TEST_STFSX(10, 3, 4)); in test_lfsx_stfsx()
244 if (stepped == 1 && c.b == cached_b) in test_lfsx_stfsx()
256 } c; in test_lfdx_stfdx() local
265 c.a = 123456.78; in test_lfdx_stfdx()
266 cached_b = c.b; in test_lfdx_stfdx()
268 regs.gpr[3] = (unsigned long) &c.a; in test_lfdx_stfdx()
272 stepped = emulate_step(®s, TEST_LFDX(10, 3, 4)); in test_lfdx_stfdx()
282 c.a = 987654.32; in test_lfdx_stfdx()
285 stepped = emulate_step(®s, TEST_STFDX(10, 3, 4)); in test_lfdx_stfdx()
287 if (stepped == 1 && c.b == cached_b) in test_lfdx_stfdx()
313 } c; in test_lvx_stvx() local
322 cached_b[0] = c.b[0] = 923745; in test_lvx_stvx()
323 cached_b[1] = c.b[1] = 2139478; in test_lvx_stvx()
324 cached_b[2] = c.b[2] = 9012; in test_lvx_stvx()
325 cached_b[3] = c.b[3] = 982134; in test_lvx_stvx()
327 regs.gpr[3] = (unsigned long) &c.a; in test_lvx_stvx()
331 stepped = emulate_step(®s, TEST_LVX(10, 3, 4)); in test_lvx_stvx()
341 c.b[0] = 4987513; in test_lvx_stvx()
342 c.b[1] = 84313948; in test_lvx_stvx()
343 c.b[2] = 71; in test_lvx_stvx()
344 c.b[3] = 498532; in test_lvx_stvx()
347 stepped = emulate_step(®s, TEST_STVX(10, 3, 4)); in test_lvx_stvx()
349 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lvx_stvx()
350 cached_b[2] == c.b[2] && cached_b[3] == c.b[3]) in test_lvx_stvx()
370 } c; in test_lxvd2x_stxvd2x() local
379 cached_b[0] = c.b[0] = 18233; in test_lxvd2x_stxvd2x()
380 cached_b[1] = c.b[1] = 34863571; in test_lxvd2x_stxvd2x()
381 cached_b[2] = c.b[2] = 834; in test_lxvd2x_stxvd2x()
382 cached_b[3] = c.b[3] = 6138911; in test_lxvd2x_stxvd2x()
384 regs.gpr[3] = (unsigned long) &c.a; in test_lxvd2x_stxvd2x()
388 stepped = emulate_step(®s, TEST_LXVD2X(39, 3, 4)); in test_lxvd2x_stxvd2x()
402 c.b[0] = 21379463; in test_lxvd2x_stxvd2x()
403 c.b[1] = 87; in test_lxvd2x_stxvd2x()
404 c.b[2] = 374234; in test_lxvd2x_stxvd2x()
405 c.b[3] = 4; in test_lxvd2x_stxvd2x()
408 stepped = emulate_step(®s, TEST_STXVD2X(39, 3, 4)); in test_lxvd2x_stxvd2x()
410 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lxvd2x_stxvd2x()
411 cached_b[2] == c.b[2] && cached_b[3] == c.b[3] && in test_lxvd2x_stxvd2x()