HomeSort by relevance Sort by last modified time
    Searched refs:malloc (Results 901 - 925 of 2813) sorted by null

<<31323334353637383940>>

  /external/webrtc/src/common_audio/vad/
webrtc_vad.c 79 vad_ptr = (VadInstT *)malloc(sizeof(VadInstT));
  /external/webrtc/src/system_wrappers/source/
data_log_c_helpers_unittest.c 35 char* combined_name = malloc(kOutLen * sizeof(char));
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
sp_dec.cpp 63 Description: Removed all references to malloc/free, except for the top-level
64 malloc in GSMInitDecode, and corresponding free in GSMDecodeFrameExit.
68 malloc, but full-blown structures. (Changes of the type D_plsfState *lsfState
198 malloc(sizeof(Speech_Decode_FrameState))) == NULL) {
199 fprintf(stderr, "Speech_Decode_Frame_init: can not malloc state "
261 malloc(sizeof(Speech_Decode_FrameState))) == NULL)
263 /* fprintf(stderr, "Speech_Decode_Frame_init: can not malloc state "
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_adapt.cpp 171 if ((s = (GainAdaptState *) malloc(sizeof(GainAdaptState))) == NULL)
173 /* fprintf(stderr, "gain_adapt_init: can't malloc state structure\n"); */
lpc.cpp 142 if ((s= (lpcState *) malloc(sizeof(lpcState))) == NULL){
143 // fprintf(stderr, "lpc_init: can not malloc state structure\n");
195 if ((s = (lpcState *) malloc(sizeof(lpcState))) == NULL)
197 /* fprintf(stderr, "lpc_init: can not malloc state structure\n"); */
pre_proc.cpp 178 if ((s= (Pre_ProcessState *) malloc(sizeof(Pre_ProcessState))) == NULL){
179 fprintf(stderr, "Pre_Process_init: can not malloc state structure\n");
224 if ((s = (Pre_ProcessState *) malloc(sizeof(Pre_ProcessState))) == NULL)
227 can not malloc state structure\n"); */
sp_enc.cpp 167 if ((s= (Speech_Encode_FrameState *) malloc(sizeof(Speech_Encode_FrameState))) == NULL){
168 fprintf(stderr, "Speech_Encode_Frame_init: can not malloc state "
231 if ((s = (Speech_Encode_FrameState *) malloc(sizeof(Speech_Encode_FrameState))) == NULL)
233 /* fprintf(stderr, "Speech_Encode_Frame_init: can not malloc state "
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 64 data = (DataType*)malloc(sizeof(DataType)*m_Size);
365 std::malloc(pNumOfElements*sizeof(DataType)));
422 std::malloc(pNumOfElements*sizeof(DataType)));
426 return std::malloc(pNumOfElements);
  /frameworks/compile/mclinker/lib/Target/X86/
X86PLT.cpp 184 data = static_cast<unsigned char*>(malloc(plt0->size()));
228 data = static_cast<unsigned char*>(malloc(plt1->size()));
270 data = static_cast<unsigned char*>(malloc(plt0->size()));
318 data = static_cast<unsigned char*>(malloc(plt1->size()));
  /frameworks/native/libs/utils/
SharedBuffer.cpp 29 SharedBuffer* sb = static_cast<SharedBuffer *>(malloc(sizeof(SharedBuffer) + size));
  /frameworks/native/opengl/libagl/
BufferObjectManager.cpp 74 uint8_t* data = (uint8_t*)malloc(size);
  /frameworks/native/opengl/tests/include/
EGLUtils.h 94 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs);
  /frameworks/rs/cpp/
Script.cpp 17 #include <malloc.h>
  /frameworks/rs/tests/cppstrided/
compute.cpp 40 uint32_t* buf = (uint32_t*) malloc(stride * numElems * sizeof(uint32_t));
42 printf("malloc failed\n");
  /frameworks/wilhelm/tools/permute/
permute.c 221 s.mSegmentArray = (Segment *) malloc(sizeof(Segment) * s.mSegmentMax);
241 void *ptr = malloc(sfinfo_in.frames * frameSizeRead);
252 char *path_out = malloc(strlen(path_in) + 8);
284 char *path_map = malloc(strlen(path_in) + 8);
  /hardware/ti/omap3/dspbridge/inc/
mem.h 101 #define MEM_Alloc(size, type) malloc (size)
  /hardware/ti/omap3/dspbridge/libbridge/inc/
mem.h 101 #define MEM_Alloc(size, type) malloc (size)
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties_parser.c 293 pNameZ = malloc(nNameLength+1);
355 pValueZ = malloc(nValueLength+1);
364 pProperty=(PROPERTY*)malloc(sizeof(PROPERTY));
455 pBuff = malloc(nFilesize + 1);
  /ndk/sources/cxx-stl/llvm-libc++/src/
new.cpp 50 while ((p = ::malloc(size)) == 0)
52 // If malloc fails and there is a new_handler,
  /ndk/sources/cxx-stl/llvm-libc++/src/support/win32/
support.cpp 14 #include <stdlib.h> // malloc
30 if( (count >= 0) && ((*sptr = (char*)malloc(count+1)) != NULL) )
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.modifiers/
insert_iter_iter_iter.pass.cpp 28 return std::malloc(s);
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/
test_allocator.h 54 return (pointer)std::malloc(n * sizeof(T));
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.threads/thread.thread.class/thread.thread.constr/
F.pass.cpp 28 return std::malloc(s);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_function.pass.cpp 28 return std::malloc(s);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.shared/
test_allocator.h 61 return (pointer)std::malloc(n * sizeof(T));

Completed in 1611 milliseconds

<<31323334353637383940>>