| /xsrc/external/mit/xf86-video-intel/dist/libobj/ |
| H A D | alloca.c | 1 void *alloca(size_t sz) function in typeref:typename:void *
|
| H A D | Makefile.in | 127 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 D | c99_alloca.h | 36 # define alloca _alloca macro 40 # include <alloca.h>
|
| /xsrc/external/mit/MesaLib/dist/include/ |
| H A D | c99_alloca.h | 36 # define alloca _alloca macro 40 # include <alloca.h>
|
| /xsrc/external/mit/xorgproto/dist/include/X11/ |
| H A D | Xalloca.h | 68 # 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 D | Xw32defs.h | 14 # define alloca _alloca macro
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_vla.h | 36 _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 D | nir_vla.h | 36 _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 D | glthread_list.c | 46 uint32_t *lists = alloca(max_list_count * sizeof(uint32_t));
|
| /xsrc/external/mit/xf86-video-intel/dist/ |
| H A D | config.h.in | 7 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 D | amdgpu_cs.c | 32 # 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 D | gram.c | 312 /* 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 D | dxil_dump_decls.h | 77 dump_instr_alloca(struct dxil_dumper *d, struct dxil_instr_alloca *alloca);
|
| H A D | dxil_internal.h | 33 // 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 D | dxil_dump.c | 407 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 D | dxil_module.c | 2821 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 D | bundle-main.c | 327 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 D | bundle-main.c | 372 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 D | texture9.c | 154 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 D | parser.c | 274 /* 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 D | winprefsyacc.c | 365 /* 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 D | texture9.c | 162 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 D | configure.ac | 59 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 D | 19.2.3.rst | 88 - rbug: Fix use of alloca() without #include "c99_alloca.h"
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/rbug/ |
| H A D | rbug_texture.c | 304 uint32_t *height = alloca(sizeof(uint32_t) * height_len); 305 uint32_t *depth = alloca(sizeof(uint32_t) * height_len);
|