Home | History | Annotate | Download | only in tests

Lines Matching refs:offset

48 print_nodes(const unsigned long maxnode, unsigned int offset)
51 if (nlongs <= offset)
54 nlongs -= offset;
57 tail_alloc(size ? size : (offset ? 1 : 0));
68 for (i = 0; i < nlongs + offset; ++i) {
95 test_offset(const unsigned int offset)
99 print_nodes(maxnode, offset);
100 print_nodes(maxnode + 1, offset);
101 print_nodes(maxnode + 2, offset);
104 print_nodes(0, offset);
105 print_nodes(1, offset);
106 print_nodes(2, offset);
107 print_nodes(maxnode - 1, offset);
108 print_nodes(maxnode , offset);
109 print_nodes(maxnode + 1, offset);
110 print_nodes(maxnode + 2, offset);
111 print_nodes(maxnode * 2 - 1, offset);
112 print_nodes(maxnode * 2 , offset);
113 print_nodes(maxnode * 2 + 1, offset);
114 print_nodes(maxnode * 2 + 2, offset);
115 print_nodes(maxnode * 3 - 1, offset);
116 print_nodes(maxnode * 3 , offset);
117 print_nodes(maxnode * 3 + 1, offset);
118 print_nodes(maxnode * 3 + 2, offset);
119 print_nodes(maxnode * 4 + 2, offset);