Lines Matching defs:gfp
22 #include <linux/gfp.h>
576 gfp_t gfp;
595 gfp = GFP_TRANSHUGE;
596 test("GFP_TRANSHUGE", "%pGg", &gfp);
598 gfp = GFP_ATOMIC|__GFP_DMA;
599 test("GFP_ATOMIC|GFP_DMA", "%pGg", &gfp);
601 gfp = __GFP_ATOMIC;
602 test("__GFP_ATOMIC", "%pGg", &gfp);
609 gfp = ~__GFP_BITS_MASK;
610 snprintf(cmp_buffer, BUF_SIZE, "%#lx", (unsigned long) gfp);
611 test(cmp_buffer, "%pGg", &gfp);
614 (unsigned long) gfp);
615 gfp |= __GFP_ATOMIC;
616 test(cmp_buffer, "%pGg", &gfp);