Equivalent C code for _mm_ type functions
问题 What is the simple equivalent C code to overcome __ functions like _mm_store_ps , _mm_add_ps , etc. Please specify anyone function through an example with the equivalent C code. Why are these functions used? 回答1: Based on your previous similar questions it sounds like you're trying to solve the wrong problem. You have some existing SSE code for face detection which is crashing because you are passing misaligned data to SSE routines that require 16 byte aligned data. In previous questions