Searched refs:alloca (Results 1 - 25 of 86) sorted by relevance

1234

/xsrc/external/mit/xf86-video-intel/dist/libobj/
H A Dalloca.c1 void *alloca(size_t sz) function in typeref:typename:void *
H A DMakefile.in127 am__depfiles_remade = $(DEPDIR)/getline.Po ./$(DEPDIR)/alloca.Po \
174 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp alloca.c \
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloca.Po@am__quote@ # am--include-marker
579 -rm -f ./$(DEPDIR)/alloca.Po
627 -rm -f ./$(DEPDIR)/alloca.Po
/xsrc/external/mit/MesaLib.old/dist/include/
H A Dc99_alloca.h36 # define alloca _alloca macro
40 # include <alloca.h>
/xsrc/external/mit/MesaLib/dist/include/
H A Dc99_alloca.h36 # define alloca _alloca macro
40 # include <alloca.h>
/xsrc/external/mit/xorgproto/dist/include/X11/
H A DXalloca.h68 # include <alloca.h>
80 # ifndef alloca
81 # define alloca __builtin_alloca macro
82 # endif /* !alloca */
83 # define ALLOCATE_LOCAL(size) alloca((size_t)(size))
87 * warning: old mips alloca (pre 2.10) is unusable, new one is built in
89 * from alloca.h which #defines alloca.
91 # if defined(__sun) || defined(alloca)
93 * Some System V boxes extract alloca
[all...]
H A DXw32defs.h14 # define alloca _alloca macro
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_vla.h36 _type *_name = alloca((_length) * sizeof *_name)
45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name)
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_vla.h36 _type *_name = alloca((_length) * sizeof *_name)
45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name)
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dglthread_list.c46 uint32_t *lists = alloca(max_list_count * sizeof(uint32_t));
/xsrc/external/mit/xf86-video-intel/dist/
H A Dconfig.h.in7 systems. This function is required for `alloca.c' support on those systems.
11 /* Define to 1 if using `alloca.c'. */
44 /* Define to 1 if you have `alloca', as a function or macro. */
47 /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
236 /* If using the C implementation of alloca, define if you know the
/xsrc/external/mit/libdrm/dist/amdgpu/
H A Damdgpu_cs.c32 # include <alloca.h>
281 chunks = alloca(sizeof(struct drm_amdgpu_cs_chunk) * size);
285 chunk_data = alloca(sizeof(struct drm_amdgpu_cs_chunk_data) * size);
326 dependencies = alloca(sizeof(struct drm_amdgpu_cs_chunk_dep) *
356 sem_dependencies = alloca(sizeof(struct drm_amdgpu_cs_chunk_dep) * sem_count);
523 drm_fences = alloca(sizeof(struct drm_amdgpu_fence) * fence_count);
910 chunk_array = alloca(sizeof(uint64_t) * num_chunks);
939 chunk_array = alloca(sizeof(uint64_t) * num_chunks);
/xsrc/external/mit/xgc/dist/
H A Dgram.c312 /* The parser invokes alloca or malloc; define the necessary symbols. */
319 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
324 # define alloca _alloca macro
326 # define YYSTACK_ALLOC alloca
344 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
/xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
H A Ddxil_dump_decls.h77 dump_instr_alloca(struct dxil_dumper *d, struct dxil_instr_alloca *alloca);
H A Ddxil_internal.h33 // Malloc.h defines a macro for alloca. Let's at least make sure that all includers
34 // of this header have the same definition of alloca.
241 struct dxil_instr_alloca alloca; member in union:dxil_instr::__anonbc4bc12e070a
H A Ddxil_dump.c407 case INSTR_ALLOCA: dump_instr_alloca(d, &instr->alloca); break;
520 dump_instr_alloca(struct dxil_dumper *d, struct dxil_instr_alloca *alloca) argument
522 _mesa_string_buffer_append(d->buf, "alloca ");
523 dump_type_name(d, alloca->alloc_type);
525 dump_type_name(d, alloca->size_type);
527 dump_value(d, alloca->size);
529 unsigned align = alloca->align & align_mask;
H A Ddxil_module.c2821 instr->alloca.alloc_type = alloc_type;
2822 instr->alloca.size_type = size_type;
2823 instr->alloca.size = size;
2824 instr->alloca.align = util_logbase2(align) + 1;
2825 assert(instr->alloca.align < (1 << 5));
2826 instr->alloca.align |= 1 << 6;
3153 assert(instr->alloca.alloc_type->id >= 0);
3154 assert(instr->alloca.size_type->id >= 0);
3155 assert(instr->alloca.size->id >= 0);
3158 instr->alloca
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/xquartz/mach-startup/
H A Dbundle-main.c327 char **_argv = alloca((argvCnt + 1) * sizeof(char *));
328 char **_envp = alloca((envpCnt + 1) * sizeof(char *));
380 newargv = (string_array_t)alloca(argc * sizeof(string_t));
381 newenvp = (string_array_t)alloca(envpc * sizeof(string_t));
/xsrc/external/mit/xorg-server/dist/hw/xquartz/mach-startup/
H A Dbundle-main.c372 char **_argv = alloca((argvCnt + 1) * sizeof(char *));
373 char **_envp = alloca((envpCnt + 1) * sizeof(char *));
427 newargv = (string_array_t)alloca(argc * sizeof(string_t));
428 newenvp = (string_array_t)alloca(envpc * sizeof(string_t));
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/
H A Dtexture9.c154 level_offsets = alloca(sizeof(unsigned) * (info->last_level + 1));
164 level_offsets = alloca(sizeof(unsigned) * (info->last_level + 1));
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/config/
H A Dparser.c274 /* The parser invokes alloca or malloc; define the necessary symbols. */
281 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
286 # define alloca _alloca macro
288 # define YYSTACK_ALLOC alloca
306 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
/xsrc/external/mit/xorg-server.old/dist/hw/xwin/
H A Dwinprefsyacc.c365 /* The parser invokes alloca or malloc; define the necessary symbols. */
372 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
377 # define alloca _alloca macro
379 # define YYSTACK_ALLOC alloca
397 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
H A Dtexture9.c162 level_offsets = alloca(sizeof(unsigned) * This->base.level_count);
167 level_offsets = alloca(sizeof(unsigned) * This->base.level_count);
/xsrc/external/mit/libXt/dist/
H A Dconfigure.ac59 AC_CHECK_HEADER([alloca.h], AC_DEFINE(INCLUDE_ALLOCA_H, 1, [Define to 1 if Xalloca.h should include <alloca.h>]))
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D19.2.3.rst88 - rbug: Fix use of alloca() without #include "c99_alloca.h"
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/rbug/
H A Drbug_texture.c304 uint32_t *height = alloca(sizeof(uint32_t) * height_len);
305 uint32_t *depth = alloca(sizeof(uint32_t) * height_len);

Completed in 53 milliseconds

1234