├── PerformanceTest iOS ├── Info.plist └── main.m ├── PerformanceTest.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── mikeash.xcuserdatad │ └── xcschemes │ ├── PerformanceTest iOS.xcscheme │ ├── PerformanceTest.xcscheme │ └── xcschememanagement.plist ├── PerformanceTest └── main.m ├── perf.h └── perf.mm /PerformanceTest iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/PerformanceTest iOS/Info.plist -------------------------------------------------------------------------------- /PerformanceTest iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/PerformanceTest iOS/main.m -------------------------------------------------------------------------------- /PerformanceTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/PerformanceTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PerformanceTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/PerformanceTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PerformanceTest.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/PerformanceTest iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/PerformanceTest.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/PerformanceTest iOS.xcscheme -------------------------------------------------------------------------------- /PerformanceTest.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/PerformanceTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/PerformanceTest.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/PerformanceTest.xcscheme -------------------------------------------------------------------------------- /PerformanceTest.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/PerformanceTest.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PerformanceTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/PerformanceTest/main.m -------------------------------------------------------------------------------- /perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/perf.h -------------------------------------------------------------------------------- /perf.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/PerformanceTest/HEAD/perf.mm --------------------------------------------------------------------------------