Lines Matching refs:ints
333 OSAllocation<int> ints(100, OSAllocateMemory); in OSAllocationTests() local
334 assert(ints); in OSAllocationTests()
338 for (int& i : ints) { in OSAllocationTests()
345 for (int& i : ints) { in OSAllocationTests()
380 OSDataAllocation<int> ints(100, OSAllocateMemory); in OSDataAllocationTests() local
381 assert(ints); in OSDataAllocationTests()
385 for (int& i : ints) { in OSDataAllocationTests()
392 for (const int& i : ints) { in OSDataAllocationTests()
410 OSBoundedArray<int, 5> ints = {0, 1, 2, 3, 4}; in OSBoundedArrayTests() local
411 assert(ints.size() == 5); in OSBoundedArrayTests()
415 for (int& i : ints) { in OSBoundedArrayTests()
422 for (int& i : ints) { in OSBoundedArrayTests()
435 OSBoundedArrayRef<int> ints(storage); in OSBoundedArrayRefTests() local
436 assert(ints); in OSBoundedArrayRefTests()
440 for (int& i : ints) { in OSBoundedArrayRefTests()
447 for (int& i : ints) { in OSBoundedArrayRefTests()