Lines Matching refs:kMaxObjects
45 static const int kMaxObjects = 4 * (1 << 10); in run_stack() local
46 T* objs[kMaxObjects]; in run_stack()
49 for (int j = 0; j < kMaxObjects; ++j) { in run_stack()
53 for (int j = kMaxObjects - 1; j >= 0; --j) { in run_stack()
69 static const int kMaxObjects = 4 * (1 << 10); in run_queue() local
70 T* objs[kMaxObjects]; in run_queue()
73 for (int j = 0; j < kMaxObjects; ++j) { in run_queue()
77 for (int j = 0; j < kMaxObjects; ++j) { in run_queue()
93 static const int kMaxObjects = 4 * (1 << 10); in run_pushpop() local
94 T* objs[kMaxObjects]; in run_pushpop()
97 for (int j = 0; j < kMaxObjects; ++j) { in run_pushpop()
114 static const int kMaxObjects = 4 * (1 << 10); in run_random() local
115 T* objs[kMaxObjects]; in run_random()
116 for (int i = 0; i < kMaxObjects; ++i) { in run_random()
134 for (int j = 0; j < 2 * kMaxObjects; ++j) { in run_random()
135 int k = r.nextRangeU(0, kMaxObjects-1); in run_random()
145 for (int j = 0; j < kMaxObjects; ++j) { in run_random()