Lines Matching refs:ints
914 OSDataAllocation<int> ints(100, OSAllocateMemory); in OSAllocationTests() local
915 assert(ints); in OSAllocationTests()
919 for (int& i : ints) { in OSAllocationTests()
926 for (__assert_only int& i : ints) { in OSAllocationTests()
963 OSDataAllocation<int> ints(100, OSAllocateMemory); in OSDataAllocationTests() local
964 assert(ints); in OSDataAllocationTests()
968 for (int& i : ints) { in OSDataAllocationTests()
975 for (__assert_only const int& i : ints) { in OSDataAllocationTests()
993 OSBoundedArray<int, 5> ints = {0, 1, 2, 3, 4}; in OSBoundedArrayTests() local
994 assert(ints.size() == 5); in OSBoundedArrayTests()
998 for (int& i : ints) { in OSBoundedArrayTests()
1005 for (__assert_only int& i : ints) { in OSBoundedArrayTests()
1018 OSBoundedArrayRef<int> ints(storage); in OSBoundedArrayRefTests() local
1019 assert(ints); in OSBoundedArrayRefTests()
1023 for (int& i : ints) { in OSBoundedArrayRefTests()
1030 for (__assert_only int& i : ints) { in OSBoundedArrayRefTests()
1036 assert(ints.length() == 5); in OSBoundedArrayRefTests()
1037 ints = OSBoundedArrayRef<int>(); in OSBoundedArrayRefTests()
1038 assert(ints.length() == 0); in OSBoundedArrayRefTests()