gitextract_wmqt4bm2/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── PackedArray.c ├── PackedArray.h ├── PackedArraySIMD.c ├── README.md ├── _gnu-make/ │ └── Makefile ├── _ios-xcode/ │ ├── .gitignore │ ├── PackedArray-Info.plist │ └── PackedArray.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── _mac-xcode/ │ ├── .gitignore │ └── PackedArray.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── _win-vs11/ │ ├── .gitignore │ ├── Common.props │ ├── Debug.props │ ├── PackedArray.sln │ ├── PackedArraySIMDSelfBench.vcxproj │ ├── PackedArraySIMDSelfTest.vcxproj │ ├── PackedArraySelfBench.vcxproj │ ├── PackedArraySelfTest.vcxproj │ ├── Release.props │ ├── x64.props │ └── x86.props └── benchmark/ ├── PackedArraySIMDSelfBench-unrolled-galaxy-note-cortex-a9-1.4GHz.txt ├── PackedArraySIMDSelfBench-unrolled-ipad2-cortex-a9-1GHz.txt ├── PackedArraySIMDSelfBench-unrolled-iphone5-a6-1.3GHz.txt ├── PackedArraySIMDSelfBench-unrolled-mbp-corei7-M620-2.67GHz.txt ├── PackedArraySelfBench-reference-galaxy-note-cortex-a9-1.4GHz.txt ├── PackedArraySelfBench-reference-ipad2-cortex-a9-1GHz.txt ├── PackedArraySelfBench-reference-iphone5-a6-1.3GHz.txt ├── PackedArraySelfBench-reference-mbp-corei7-M620-2.67GHz.txt ├── PackedArraySelfBench-unrolled-galaxy-note-cortex-a9-1.4GHz.txt ├── PackedArraySelfBench-unrolled-ipad2-cortex-a9-1GHz.txt ├── PackedArraySelfBench-unrolled-iphone5-a6-1.3GHz.txt └── PackedArraySelfBench-unrolled-mbp-corei7-M620-2.67GHz.txt