Symbol: DUMMY_PTR
tools/testing/radix-tree/idr-test.c
117
assert(idr_replace(&idr, DUMMY_PTR, 3) == NULL);
tools/testing/radix-tree/idr-test.c
118
assert(idr_replace(&idr, DUMMY_PTR, 4) == NULL);
tools/testing/radix-tree/idr-test.c
119
assert(idr_replace(&idr, NULL, 4) == DUMMY_PTR);
tools/testing/radix-tree/idr-test.c
120
assert(idr_replace(&idr, DUMMY_PTR, 11) == ERR_PTR(-ENOENT));
tools/testing/radix-tree/idr-test.c
135
assert(idr_replace(&idr, DUMMY_PTR, 3) == ERR_PTR(-ENOENT));
tools/testing/radix-tree/idr-test.c
136
assert(idr_replace(&idr, DUMMY_PTR, 0) == NULL);
tools/testing/radix-tree/idr-test.c
137
assert(idr_replace(&idr, NULL, 0) == DUMMY_PTR);
tools/testing/radix-tree/idr-test.c
196
BUG_ON(ptr != DUMMY_PTR);
tools/testing/radix-tree/idr-test.c
207
BUG_ON(idr_alloc_u32(idr, DUMMY_PTR, &id, id, GFP_KERNEL));
tools/testing/radix-tree/idr-test.c
209
BUG_ON(idr_alloc_u32(idr, DUMMY_PTR, &id, id, GFP_KERNEL) != -ENOSPC);
tools/testing/radix-tree/idr-test.c
218
BUG_ON(ptr != DUMMY_PTR);
tools/testing/radix-tree/idr-test.c
226
BUG_ON(idr_remove(idr, id) != DUMMY_PTR);
tools/testing/radix-tree/idr-test.c
370
assert(idr_alloc(&idr, DUMMY_PTR, 5, 30, GFP_KERNEL) < 0);
tools/testing/radix-tree/idr-test.c
38
assert(idr_alloc_cyclic(&idr, DUMMY_PTR, 0, 0x4000, GFP_KERNEL) == 0);
tools/testing/radix-tree/idr-test.c
385
assert(idr_alloc(&idr, DUMMY_PTR, 0, 0, GFP_KERNEL) == 0);
tools/testing/radix-tree/idr-test.c
388
assert(idr_alloc(&idr, DUMMY_PTR, 0, 0, GFP_KERNEL) == i);
tools/testing/radix-tree/idr-test.c
39
assert(idr_alloc_cyclic(&idr, DUMMY_PTR, 0x3ffd, 0x4000, GFP_KERNEL) == 0x3ffd);
tools/testing/radix-tree/idr-test.c
396
assert(idr_alloc(&idr, DUMMY_PTR, i - 2, i, GFP_KERNEL) == -ENOSPC);
tools/testing/radix-tree/idr-test.c
397
assert(idr_alloc(&idr, DUMMY_PTR, i - 2, i + 10, GFP_KERNEL) == -ENOSPC);