Searched
full:malloc (Results
826 -
850 of
4430) sorted by null
<<31323334353637383940>>
/external/hyphenation/ |
example.c | 129 lcword = (char *) malloc(k+1); 130 hyphens = (char *)malloc(k+5); 168 hyphword = (char *) malloc(k+1+nHyphCount);
|
/external/icu4c/extra/uconv/ |
uwmsg.c | 207 gInfoMessages = (UChar **)malloc((U_ERROR_WARNING_LIMIT-U_ERROR_WARNING_START)*sizeof(UChar*)); 211 gErrMessages = (UChar **)malloc(U_ERROR_LIMIT*sizeof(UChar*)); 259 msg = (UChar*)malloc((strlen(textMsg)+1)*sizeof(msg[0]));
|
/external/icu4c/samples/ucnv/ |
flagcb.c | 20 ctx = (FromUFLAGContext*) malloc(sizeof(FromUFLAGContext)); 157 newCtx = malloc(sizeof(debugCBContext)); 272 ctx = malloc(sizeof(debugCBContext));
|
/external/icu4c/test/cintltst/ |
uenumtst.c | 70 cont->currUChar = (UChar *)malloc(1024*sizeof(UChar)); 199 UEnumeration *en = (UEnumeration *)malloc(sizeof(UEnumeration)); 270 UEnumeration *en = (UEnumeration *)malloc(sizeof(UEnumeration));
|
/external/icu4c/tools/icuinfo/ |
testplug.c | 22 #include <stdlib.h> /* for malloc */ 157 void *retPtr = (void *)malloc(size); 159 fprintf(stderr, "MEM: malloc(%d) = %p\n", (int32_t)size, retPtr);
|
/external/libsepol/src/ |
module.c | 96 *field = malloc(len); 350 /* Get the section offsets from a package file, offsets will be malloc'd to 361 buf = malloc(sizeof(uint32_t)*3); 388 off = (size_t *) malloc((nsec + 1) * sizeof(size_t)); 395 buf = malloc(sizeof(uint32_t) * nsec); 490 (char *)malloc(mod->file_contexts_len); 516 mod->seusers = (char *)malloc(mod->seusers_len); 539 mod->user_extra = (char *)malloc(mod->user_extra_len); 565 (char *)malloc(mod->netfilter_contexts_len); 726 id = malloc(len + 1) [all...] |
user_record.c | 35 (sepol_user_key_t *) malloc(sizeof(sepol_user_key_t)); 267 (const char **)malloc(sizeof(char *) * user->num_roles); 305 sepol_user_t *user = (sepol_user_t *) malloc(sizeof(sepol_user_t));
|
/external/libxml2/include/libxml/ |
xmlmemory.h | 62 * Signature for a malloc() implementation. 175 * Wrapper for the malloc() function used in the XML library. 184 * Wrapper for the malloc() function used in the XML library for allocation
|
/external/linux-tools-perf/ |
builtin-timechart.c | 177 cursor = malloc(sizeof(struct per_pid)); 204 c = malloc(sizeof(struct per_pidcomm)); 248 c = malloc(sizeof(struct per_pidcomm)); 256 sample = malloc(sizeof(struct cpu_sample)); 380 pwr = malloc(sizeof(struct power_event)); 398 pwr = malloc(sizeof(struct power_event)); 439 we = malloc(sizeof(struct wake_event)); 584 pwr = malloc(sizeof(struct power_event)); 602 pwr = malloc(sizeof(struct power_event)); 742 task_from = malloc(40) [all...] |
/external/llvm/test/Feature/ |
recursivetype.ll | 15 ; *L = (list*)malloc(sizeof(list)); 42 declare i8* @malloc(i32) 63 %reg111 = call i8* @malloc( i32 16 ) ; <i8*> [#uses=3]
|
/external/mdnsresponder/mDNSCore/ |
mDNSDebug.h | 51 // Set this symbol to 1 to do extra debug checks on malloc() and free() 52 // Set this symbol to 2 to write a log message for every malloc() and free() 156 #define mallocL(X,Y) malloc(Y)
|
/external/qemu/ |
envlist.c | 32 if ((envlist = malloc(sizeof (*envlist))) == NULL) 168 if ((entry = malloc(sizeof (*entry))) == NULL) 232 penv = env = malloc((envlist->el_count + 1) * sizeof (char *));
|
/external/valgrind/main/coregrind/m_replacemalloc/ |
replacemalloc_core.c | 3 /*--- Malloc replacement. replacemalloc_core.c ---*/ 46 /* DEBUG: print malloc details? default: NO */ 67 else if VG_BOOL_CLO(arg, "--trace-malloc", VG_(clo_trace_malloc)) {}
|
/external/valgrind/main/drd/ |
drd_bitmap2_node.c | 39 #include "pub_tool_mallocfree.h" /* VG_(malloc), VG_(free) */ 77 p = VG_(malloc)("drd.bitmap.bac", 127 return VG_(malloc)(ec, szB);
|
/external/valgrind/main/memcheck/tests/ |
memalign2.c | 17 #include "tests/malloc.h" 50 piece = malloc(1024 * 1000); assert (piece); 56 piece = malloc(1024 * 100); assert (piece);
|
mempool.stderr.exp | 21 at 0x........: malloc (vg_replace_malloc.c:...) 30 at 0x........: malloc (vg_replace_malloc.c:...) 51 at 0x........: malloc (vg_replace_malloc.c:...)
|
/external/webkit/Source/WebKit/android/plugins/ |
ANPSystemInterface.cpp | 68 char* storage = (char*) malloc(length + 1); 76 char* incognitoStorage = (char*) malloc(length + strlen(incognitoPath) + 1); 190 char* file = (char*) malloc(strlen(path) + strlen(separator) + strlen(entry->d_name) + 1);
|
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
os_unix.c | 184 buf = malloc(len); 205 ret = malloc(ret_len); 281 buf = malloc(*len);
|
/external/zlib/contrib/testzlib/ |
testzlib.c | 132 ptr=malloc((*plFileSize)+1);
186 CprPtr=(unsigned char*)malloc(lBufferSizeCpr + BlockSizeCompress);
227 UncprPtr=(unsigned char*)malloc(lBufferSizeUncpr + BlockSizeUncompress);
|
/frameworks/av/media/libmedia/ |
ICrypto.cpp | 192 opaqueData = malloc(opaqueSize); 238 void *srcData = malloc(totalSize); 254 dstPtr = malloc(totalSize);
|
MediaScanner.cpp | 55 mSkipList = (char *)malloc(PROPERTY_VALUE_MAX * sizeof(char)); 64 mSkipIndex = (int *)malloc(PROPERTY_VALUE_MAX * sizeof(int)); 87 char* pathBuffer = (char *)malloc(PATH_MAX + 1);
|
/frameworks/native/opengl/libs/GLES_trace/src/ |
gltrace_context.cpp | 160 fbcontents = malloc(minSize); 161 fbcompressed = malloc(minSize); 250 mBuf = malloc(size);
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/ |
perf_log.c | 103 perf->pLog = (PERF_LOG_Private *) malloc (sizeof (PERF_LOG_Private)); 118 (unsigned long *) malloc (sizeof (unsigned long) * me->uBufSize); 119 me->fOutFile = (char *) malloc (strlen(config->trace_file) + 34);
|
/hardware/ti/wlan/lib/ |
shlist.c | 98 item = (SHLIST *)malloc( sizeof(SHLIST) ); 116 item = (SHLIST *)malloc( sizeof(SHLIST) ); 138 item = (SHLIST *)malloc( sizeof(SHLIST) );
|
/system/extras/libpagemap/ |
pm_process.c | 108 range = malloc(numpages * sizeof(uint64_t)); 144 maps = malloc(proc->num_maps * sizeof(pm_map_t*)); 267 map->name = malloc(strlen(name) + 1);
|
Completed in 1296 milliseconds
<<31323334353637383940>>