HomeSort by relevance Sort by last modified time
    Searched refs:MALLOC (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/mesa3d/src/gallium/auxiliary/util/
u_memory.h 48 #define MALLOC(_size) os_malloc(_size)
56 #define MALLOC_STRUCT(T) (struct T *) MALLOC(sizeof(struct T))
73 void *dup = MALLOC(size);
u_fifo.h 43 fifo = MALLOC(sizeof(*fifo) + size * sizeof(void*));
u_draw_quad.c 107 v = MALLOC(vertexBytes);
u_ringbuffer.c 32 ring->buf = MALLOC( dwords * sizeof(unsigned) );
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_core.c 53 __data = (uint8_t*)MALLOC(__len);
88 __data = (uint8_t*)MALLOC(__len);
125 __data = (uint8_t*)MALLOC(__len);
163 __data = (uint8_t*)MALLOC(__len);
203 __data = (uint8_t*)MALLOC(__len);
236 ret = MALLOC(sizeof(*ret));
255 ret = MALLOC(sizeof(*ret));
280 ret = MALLOC(sizeof(*ret));
307 ret = MALLOC(sizeof(*ret));
334 ret = MALLOC(sizeof(*ret))
    [all...]
rbug_context.c 53 __data = (uint8_t*)MALLOC(__len);
90 __data = (uint8_t*)MALLOC(__len);
130 __data = (uint8_t*)MALLOC(__len);
171 __data = (uint8_t*)MALLOC(__len);
212 __data = (uint8_t*)MALLOC(__len);
261 __data = (uint8_t*)MALLOC(__len);
304 __data = (uint8_t*)MALLOC(__len);
345 __data = (uint8_t*)MALLOC(__len);
400 __data = (uint8_t*)MALLOC(__len);
447 __data = (uint8_t*)MALLOC(__len)
    [all...]
rbug_shader.c 55 __data = (uint8_t*)MALLOC(__len);
95 __data = (uint8_t*)MALLOC(__len);
138 __data = (uint8_t*)MALLOC(__len);
183 __data = (uint8_t*)MALLOC(__len);
226 __data = (uint8_t*)MALLOC(__len);
273 __data = (uint8_t*)MALLOC(__len);
314 ret = MALLOC(sizeof(*ret));
341 ret = MALLOC(sizeof(*ret));
369 ret = MALLOC(sizeof(*ret));
398 ret = MALLOC(sizeof(*ret))
    [all...]
rbug_texture.c 53 __data = (uint8_t*)MALLOC(__len);
90 __data = (uint8_t*)MALLOC(__len);
147 __data = (uint8_t*)MALLOC(__len);
208 __data = (uint8_t*)MALLOC(__len);
256 __data = (uint8_t*)MALLOC(__len);
320 __data = (uint8_t*)MALLOC(__len);
382 __data = (uint8_t*)MALLOC(__len);
420 ret = MALLOC(sizeof(*ret));
445 ret = MALLOC(sizeof(*ret));
472 ret = MALLOC(sizeof(*ret))
    [all...]
rbug_connection.c 86 data = MALLOC(length);
  /external/mesa3d/src/gallium/state_trackers/xvmc/
block.c 51 blocks->blocks = MALLOC(BLOCK_SIZE_BYTES * num_blocks);
81 blocks->macro_blocks = MALLOC(sizeof(XvMCMacroBlock) * num_blocks);
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/test/
JPEGTestEnc.h 76 #define MALLOC(_pStruct_, _sName_) \
77 _pStruct_ = (_sName_*)malloc(sizeof(_sName_)); \
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_util.c 79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr );
84 stage->tmp = (struct vertex_header **) MALLOC( sizeof(struct vertex_header *) * nr );
  /development/tools/yuv420sp2rgb/
debug.h 47 static inline void *MALLOC(unsigned int size) {
48 void *m = malloc(size);
49 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_execmem.c 157 return MALLOC( size );
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_vertex.c 48 velems = (struct sp_velems_state *) MALLOC(sizeof(struct sp_velems_state));
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_sanity.c 134 scan_register *reg = MALLOC(sizeof(scan_register));
143 scan_register *reg = MALLOC(sizeof(scan_register));
359 scan_register *ind_reg = MALLOC(sizeof(scan_register));
417 scan_register *reg = MALLOC(sizeof(scan_register));
422 scan_register *reg = MALLOC(sizeof(scan_register));
450 reg = MALLOC(sizeof(scan_register));
tgsi_parse.c 310 struct tgsi_token *new_tokens = (struct tgsi_token *) MALLOC(bytes);
324 return (struct tgsi_token *) MALLOC(bytes);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_vertex.c 47 velems = (struct lp_velems_state *) MALLOC(sizeof(struct lp_velems_state));
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
memory_dump_event_unittest.py 152 mmaps={'/dev/ashmem/libc malloc': {'pss': 42, 'pd': 27}},
261 (HEAP, DIRTY, MALLOC, TRACING_1, TRACING_2) = ALL
265 mmaps={'/dev/ashmem/libc malloc': {'pss': HEAP + TRACING_2,
269 'malloc': {'size': MALLOC + TRACING_1}})])
277 'allocator_malloc': MALLOC},
  /ndk/sources/host-tools/make-3.81/
hash.c 23 #define MALLOC(t, n) ((t *) xmalloc (sizeof (t) * (n)))
25 #define CLONE(o, t, n) ((t *) memcpy (MALLOC (t, (n)), (o), sizeof (t) * (n)))
292 user-supplied vector, or malloc one. */
302 vector_0 = MALLOC (void *, ht->ht_fill + 1);
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_vertex.c 95 velems = (struct svga_velems_state *) MALLOC(sizeof(struct svga_velems_state));
  /external/mesa3d/src/gallium/state_trackers/egl/null/
native_null.c 62 configs = MALLOC(sizeof(*configs) * null->num_configs);
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_batchbuffer.c 47 batch->base.map = MALLOC(batch->actual_size);
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/
VPPTest.h 135 #define MALLOC(_ptr,_castType,_type,_eError) \
137 _ptr = (_castType *)malloc(sizeof(_type)); \
  /external/mesa3d/src/mesa/main/
eval.c 221 buffer = (GLfloat *) MALLOC(uorder * size * sizeof(GLfloat));
245 buffer = (GLfloat *) MALLOC(uorder * size * sizeof(GLfloat));
289 buffer = (GLfloat *) MALLOC((uorder*vorder*size+hsize)*sizeof(GLfloat));
291 buffer = (GLfloat *) MALLOC((uorder*vorder*size+dsize)*sizeof(GLfloat));
332 buffer = (GLfloat *) MALLOC((uorder*vorder*size+hsize)*sizeof(GLfloat));
334 buffer = (GLfloat *) MALLOC((uorder*vorder*size+dsize)*sizeof(GLfloat));
943 map->Points = (GLfloat *) MALLOC(n * sizeof(GLfloat));
964 map->Points = (GLfloat *) MALLOC(n * sizeof(GLfloat));

Completed in 498 milliseconds

1 2 3 4 5