Lines Matching defs:alloca
35 #if !defined(alloca)
37 #include <alloca.h> // alloca (glibc uses <alloca.h>. Note that Cygwin may have _WIN32 defined, so the order matters here)
39 #include <malloc.h> // alloca
40 #if !defined(alloca)
41 #define alloca _alloca // for clang with MS Codegen
44 #include <stdlib.h> // alloca
692 ImVec2* temp_normals = (ImVec2*)alloca(points_count * (thick_line ? 5 : 3) * sizeof(ImVec2)); //-V630
883 ImVec2* temp_normals = (ImVec2*)alloca(points_count * sizeof(ImVec2)); //-V630