Lines Matching refs:ints
913 OSDataAllocation<int> ints(100, OSAllocateMemory); in OSAllocationTests() local
914 assert(ints); in OSAllocationTests()
918 for (int& i : ints) { in OSAllocationTests()
925 for (int& i : ints) { in OSAllocationTests()
962 OSDataAllocation<int> ints(100, OSAllocateMemory); in OSDataAllocationTests() local
963 assert(ints); in OSDataAllocationTests()
967 for (int& i : ints) { in OSDataAllocationTests()
974 for (const int& i : ints) { in OSDataAllocationTests()
992 OSBoundedArray<int, 5> ints = {0, 1, 2, 3, 4}; in OSBoundedArrayTests() local
993 assert(ints.size() == 5); in OSBoundedArrayTests()
997 for (int& i : ints) { in OSBoundedArrayTests()
1004 for (int& i : ints) { in OSBoundedArrayTests()
1017 OSBoundedArrayRef<int> ints(storage); in OSBoundedArrayRefTests() local
1018 assert(ints); in OSBoundedArrayRefTests()
1022 for (int& i : ints) { in OSBoundedArrayRefTests()
1029 for (int& i : ints) { in OSBoundedArrayRefTests()
1035 assert(ints.length() == 5); in OSBoundedArrayRefTests()
1036 ints = OSBoundedArrayRef<int>(); in OSBoundedArrayRefTests()
1037 assert(ints.length() == 0); in OSBoundedArrayRefTests()