HomeSort by: relevance | last modified time | path
    Searched refs:alloca (Results 1 - 25 of 73) sorted by relevancy

1 2 3

  /xsrc/external/mit/xf86-video-intel/dist/libobj/
alloca.c 1 void *alloca(size_t sz) function
  /xsrc/external/mit/MesaLib/dist/include/
c99_alloca.h 36 # define alloca _alloca macro
40 # include <alloca.h>
  /xsrc/external/mit/MesaLib.old/dist/include/
c99_alloca.h 36 # define alloca _alloca macro
40 # include <alloca.h>
  /xsrc/external/mit/xorgproto/dist/include/X11/
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.o from /lib/libPW.a; if yo
    [all...]
Xw32defs.h 14 # define alloca _alloca macro
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
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/
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/
glthread_list.c 46 uint32_t *lists = alloca(max_list_count * sizeof(uint32_t));
  /xsrc/external/mit/libXt/dist/
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/libdrm/dist/amdgpu/
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/
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/
dxil_dump_decls.h 77 dump_instr_alloca(struct dxil_dumper *d, struct dxil_instr_alloca *alloca);
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::__anon2740
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)
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;
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.alloc_type->id
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/xquartz/mach-startup/
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/xorg-server.old/dist/hw/xquartz/mach-startup/
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/MesaLib.old/dist/src/gallium/state_trackers/nine/
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/
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/
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/
texture9.c 162 level_offsets = alloca(sizeof(unsigned) * This->base.level_count);
167 level_offsets = alloca(sizeof(unsigned) * This->base.level_count);
cubetexture9.c 120 level_offsets = alloca(sizeof(unsigned) * This->base.level_count);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/rbug/
rbug_texture.c 304 uint32_t *height = alloca(sizeof(uint32_t) * height_len);
305 uint32_t *depth = alloca(sizeof(uint32_t) * height_len);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_shader_tgsi_setup.c 257 LLVMValueRef alloca; local
266 alloca = ctx->temp_array_allocas[array_id - 1];
267 if (!alloca)
298 return LLVMBuildGEP(ctx->ac.builder, alloca, idxs, 2, "");
621 * in memory using an alloca that spans the entire
635 * FIXME: We shouldn't need to have the non-alloca
672 /* Create a dummy alloca. We use it so that we
si_shaderlib_tgsi.c 137 unsigned *inst_dwords = alloca(num_mem_ops * sizeof(unsigned));

Completed in 24 milliseconds

1 2 3