Home | History | Annotate | Download | only in s390x

Lines Matching defs:stfle

7 unsigned long long stfle(unsigned long dw, unsigned bit_to_test)
13 asm volatile(" .insn s,0xb2b00000,%0 \n" /* stfle */
33 /* Test #1: Make sure STFLE returns sensible values. z/Arch facilities
35 if ((stfle(dw, 1)) && stfle(dw, 2))
40 /* Test #2: Make sure the STFLE is supported. */
41 if (stfle(dw, 7))
42 printf("STFLE facility is installed\n");
44 printf("STFLE facility is not installed\n");
46 /* Test #3: Tell STFLE to only write 1 DW of facility bits. Expected condition
50 if ((stfle(dw, 1)) && stfle(dw, 2))