Lines Matching +full:0 +full:x600000
6 #define INVALID_VALUE (~0ull)
17 * Add the region from 0x1000 to (0x1000 + 0x200000 - 1):
22 * num = 0
25 {0x1000, 0x200000, -EINVAL, 0, INVALID_VALUE, INVALID_VALUE},
28 * Add the region from 0x200000 to (0x200000 + 0x1000 - 1):
33 * num = 0
36 {0x200000, 0x1000, -EINVAL, 0, INVALID_VALUE, INVALID_VALUE},
39 * Add the region from 0x200000 to (0x200000 + 0x200000 - 1):
46 * {start=0x200000, end=0x3fffff}, // len=0x200000
49 {0x200000, 0x200000, 0, 1, 0x200000, 0x200000},
52 * Add the region from 0x0 to (0x0 + 0x200000 - 1):
59 * {start=0x200000, end=0x3fffff}, // len=0x200000
60 * {start=0x0, end=0x1fffff}, // len=0x200000
63 {0x0, 0x200000, 0, 2, 0x0, 0x200000},
66 * Add the region from 0x600000 to (0x600000 + 0x400000 - 1):
73 * {start=0x200000, end=0x3fffff}, // len=0x200000
74 * {start=0x0, end=0x1fffff}, // len=0x200000
75 * {start=0x600000, end=0x9fffff}, // len=0x400000
78 {0x600000, 0x400000, 0, 3, 0x600000, 0x400000},
81 * Add the region from 0xa00000 to (0xa00000 + 0x400000 - 1):
88 * {start=0x200000, end=0x3fffff}, // len=0x200000
89 * {start=0x0, end=0x1fffff}, // len=0x200000
90 * {start=0x600000, end=0xdfffff}, // len=0x800000
93 {0xa00000, 0x400000, 0, 3, 0x600000, 0x800000},
96 * Add the region from 0x1000 to (0x1000 + 0x200000 - 1):
103 * {start=0x200000, end=0x3fffff}, // len=0x200000
104 * {start=0x0, end=0x1fffff}, // len=0x200000
105 * {start=0x600000, end=0xdfffff}, // len=0x800000
108 {0x1000, 0x200000, -EINVAL, 3, 0x600000, 0x800000},
114 int rc = 0; in ne_misc_dev_test_merge_phys_contig_memory_regions()
115 int i = 0; in ne_misc_dev_test_merge_phys_contig_memory_regions()
122 for (i = 0; i < ARRAY_SIZE(phys_regions_test_cases); i++) { in ne_misc_dev_test_merge_phys_contig_memory_regions()
124 unsigned long num = 0; in ne_misc_dev_test_merge_phys_contig_memory_regions()