HomeSort by relevance Sort by last modified time
    Searched full:malloc (Results 876 - 900 of 4430) sorted by null

<<31323334353637383940>>

  /frameworks/av/media/libeffects/factory/
EffectsFactory.c 301 fx = (effect_entry_t *)malloc(sizeof(effect_entry_t));
312 e = (list_elem_t *)malloc(sizeof(list_elem_t));
481 l = malloc(sizeof(lib_entry_t));
489 e = malloc(sizeof(list_elem_t));
550 d = malloc(sizeof(effect_descriptor_t));
569 e = malloc(sizeof(list_elem_t));
  /system/extras/cpustats/
cpustats.c 108 old_cpus = malloc(sizeof(struct cpu_info) * cpu_count);
110 new_cpus = malloc(sizeof(struct cpu_info) * cpu_count);
115 new_cpus[i].freqs = malloc(sizeof(struct freq_info) * new_cpus[i].freq_count);
117 old_cpus[i].freqs = malloc(sizeof(struct freq_info) * old_cpus[i].freq_count);
127 new_total_cpu.freqs = malloc(sizeof(struct freq_info) * new_total_cpu.freq_count);
129 old_total_cpu.freqs = malloc(sizeof(struct freq_info) * old_total_cpu.freq_count);
  /system/extras/ext4_utils/
output_file.c 358 struct output_file *out = malloc(sizeof(struct output_file));
360 error_errno("malloc struct out");
363 zero_buf = malloc(info.block_size);
365 error_errno("malloc zero_buf");
569 u8 *data = malloc(buffer_size);
571 error_errno("malloc");
  /bootable/recovery/applypatch/
imgdiff.c 186 unsigned char* img = malloc(st.st_size);
213 ZipFileEntry* temp_entries = malloc(cdcount * sizeof(ZipFileEntry));
230 char* filename = malloc(nlen+1);
279 *chunks = malloc((entrycount*2+2) * sizeof(ImageChunk));
306 curr->data = malloc(curr->len);
362 * respectively. Returns a malloc'd block of memory containing the
376 unsigned char* img = malloc(st.st_size + 4);
429 curr->data = malloc(allocated);
573 unsigned char* out = malloc(BUFFER_SIZE);
624 unsigned char* data = malloc(st.st_size)
    [all...]
  /external/bison/lib/
xmalloc.c 1 /* xmalloc.c -- malloc with out of memory checking
49 if (xalloc_oversized (n, s) || (! (p = malloc (n * s)) && n != 0))
162 GNU C library malloc. */
  /external/dhcpcd/
showlease.c 135 dhcp = malloc(sizeof(*dhcp));
208 dhcp_opt_buffer = malloc(sizeof(struct dhcp_message));
333 lease = malloc(sizeof(*lease));
  /external/e2fsprogs/misc/
e2initrd_helper.c 97 buf = malloc(inode.i_size + 1);
132 ret = malloc(s+1);
159 ret = malloc(strlen(s)+1);
  /external/iproute2/tc/
tc.c 146 q = malloc(sizeof(*q));
150 q->id = strcpy(malloc(strlen(str)+1), str);
198 q = malloc(sizeof(*q));
  /external/libpcap/
pcap-septel.c 212 handle = malloc(sizeof(*handle));
214 snprintf(ebuf, PCAP_ERRBUF_SIZE, "malloc %s: %s", device, pcap_strerror(errno));
293 "malloc: %s", pcap_strerror(errno));
  /external/libsepol/src/
context.c 109 scontext = malloc(scontext_len);
160 scontext = (context_struct_t *) malloc(sizeof(context_struct_t));
301 con_cpy = malloc(con_str_len + 1);
  /external/llvm/test/CodeGen/X86/
pic.ll 48 declare i8* @malloc(i32)
52 %ptr = call i8* @malloc(i32 40)
62 ; LINUX: calll malloc@PLT
  /external/llvm/test/Transforms/MemCpyOpt/
memcpy.ll 140 %A = tail call i8* @malloc(i32 10)
143 %C = tail call i8* @malloc(i32 10)
150 declare noalias i8* @malloc(i32)
  /external/qemu/distrib/zlib-1.2.3/
zutil.c 192 /* Turbo C malloc() does not allow dynamic allocation of 64K bytes
295 extern voidp malloc OF((uInt size));
306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
  /external/srec/seti/sltsEngine/src/
SWIslts.c 81 *ppLtsWrap = MALLOC(sizeof(SWIsltsWrapper), MTAG);
222 new_text = MALLOC((strlen(text)+1)*sizeof(char), MTAG);
316 pTranscription->pBuffer = MALLOC(MAX_PHONE_LEN * (num_phones + 1+1), MTAG);
  /external/valgrind/main/VEX/useful/
smchash.c 36 GuestBytes* gb = malloc(sizeof(GuestBytes));
52 gb->bytes = malloc( gb->nbytes + nToAlloc);
266 UInt* hashes = malloc( nHashes * sizeof(UInt) );
x87_to_vex_and_back.c 152 UChar* x87_state0 = malloc(sizeof(Fpu_State));
153 UChar* x87_state1 = malloc(sizeof(Fpu_State));
154 UChar* vex_state = malloc(1000);
  /external/valgrind/main/coregrind/
pub_core_mallocfree.h 37 // PURPOSE: high-level memory allocation (malloc/free), for the core and
47 malloc() et al -- redzone size is chosen by the tool.
69 // This is both the minimum payload size of a malloc'd block, and its
  /external/valgrind/main/
darwin9.supp 144 fun:malloc
157 fun:malloc
177 fun:malloc
  /external/valgrind/main/massif/tests/
ignoring.post.exp 40 99.22% (1,024B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
48 98.46% (512B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
61 98.46% (512B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
87 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
102 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
117 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
132 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
147 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
163 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
183 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
Assertions.cpp 111 char* buffer = (char*)malloc(length + 1);
139 char* buffer = (char*)malloc(size);
147 wchar_t* wideBuffer = (wchar_t*)malloc(size * sizeof(wchar_t));
  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator_wrapper.c 183 self = malloc(sizeof(DelayEstimator));
201 self->mean_far_spectrum = malloc(spectrum_size * sizeof(SpectrumType));
207 self->mean_near_spectrum = malloc(spectrum_size * sizeof(SpectrumType));
  /external/zlib/
zutil.c 173 /* Turbo C malloc() does not allow dynamic allocation of 64K bytes
276 extern voidp malloc OF((uInt size));
287 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
  /frameworks/native/opengl/tests/gl2_basic/
gl2_basic.cpp 87 char* buf = (char*) malloc(infoLen);
126 char* buf = (char*) malloc(bufLength);
239 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig);
  /frameworks/native/opengl/tests/gl_perf/
fill_common.cpp 44 char* buf = (char*) malloc(infoLen);
94 char* buf = (char*) malloc(bufLength);
240 uint32_t *m = (uint32_t *)malloc(1024*1024*4);
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
libOMX.TI.AMR.encode.so 

Completed in 1580 milliseconds

<<31323334353637383940>>