Home
last modified time | relevance | path

Searched defs:y (Results 1 – 3 of 3) sorted by relevance

/mm/
Dslab.c276 #define STATS_ADD_REAPED(x,y) ((x)->reaped += (y)) argument
300 #define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0) argument
2126 #define check_spinlock_acquired_node(x, y) do { } while(0) argument
Dvmalloc.c1481 #define VMAP_MIN(x, y) ((x) < (y) ? (x) : (y)) /* can't use min() */ argument
1482 #define VMAP_MAX(x, y) ((x) > (y) ? (x) : (y)) /* can't use max() */ argument
Dpercpu.c571 static inline bool pcpu_region_overlap(int a, int b, int x, int y) in pcpu_region_overlap()