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

1 2 3 4 5

  /external/ltp/tools/top-LTP/proc/
alloc.h 8 extern void *xrealloc(void *oldp, unsigned int size) MALLOC;
9 extern void *xmalloc(unsigned int size) MALLOC;
10 extern void *xcalloc(void *pointer, int size) MALLOC;
procps.h 26 #define MALLOC __attribute__ ((__malloc__))
32 #define MALLOC
  /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);
  /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 );
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StrGather.h 25 #define MALLOC(size) malloc (size)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StrGather.h 25 #define MALLOC(size) malloc (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},
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
gdtoaimp.h 121 * #define MALLOC your_malloc, where your_malloc(n) acts like malloc(n)
123 * appropriate. If MALLOC is undefined, malloc will be invoked
129 * suffices to get rid of MALLOC calls except for unusual cases,
208 #ifdef MALLOC
209 extern Char *MALLOC ANSI((size_t));
211 #define MALLOC malloc
  /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);

Completed in 3167 milliseconds

1 2 3 4 5