Home | History | Annotate | Download | only in test

Lines Matching defs:bcd

630     unsigned short bcd[5];
633 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st");
634 asm("fbld %1" : "=t" (b) : "m" (bcd[0]));
635 printf("a=%f bcd=%04x%04x%04x%04x%04x b=%f\n",
636 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b);