Lines Matching defs:alloca
42 #if !defined(alloca)
44 #include <alloca.h> // alloca (glibc uses <alloca.h>. Note that Cygwin may have _WIN32 defined, so the order matters here)
46 #include <malloc.h> // alloca
47 #if !defined(alloca)
48 #define alloca _alloca // for clang with MS Codegen
51 #include <stdlib.h> // alloca
751 ImVec2* temp_normals = (ImVec2*)alloca(points_count * ((use_texture || !thick_line) ? 3 : 5) * sizeof(ImVec2)); //-V630
998 ImVec2* temp_normals = (ImVec2*)alloca(points_count * sizeof(ImVec2)); //-V630