Lines Matching defs:gfp
23 #include <linux/gfp.h>
662 gfp_t gfp;
684 gfp = GFP_TRANSHUGE;
685 test("GFP_TRANSHUGE", "%pGg", &gfp);
687 gfp = GFP_ATOMIC|__GFP_DMA;
688 test("GFP_ATOMIC|GFP_DMA", "%pGg", &gfp);
690 gfp = __GFP_HIGH;
691 test("__GFP_HIGH", "%pGg", &gfp);
694 gfp = ~__GFP_BITS_MASK;
695 snprintf(cmp_buffer, BUF_SIZE, "%#lx", (unsigned long) gfp);
696 test(cmp_buffer, "%pGg", &gfp);
699 (unsigned long) gfp);
700 gfp |= __GFP_HIGH;
701 test(cmp_buffer, "%pGg", &gfp);