Home
last modified time | relevance | path

Searched refs:malloc (Results 4551 - 4575 of 4594) sorted by relevance

1...<<181182183184

/third_party/skia/third_party/externals/microhttpd/
H A Dltmain.sh4169 #include <malloc.h>
4553 void *p = (void *) malloc (num);
/third_party/skia/third_party/externals/d3d12allocator/src/
H A DD3D12MemAlloc.cpp38 #include <malloc.h> // for _aligned_malloc, _aligned_free
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2192 auto* Tmp = static_cast<T*>(std::malloc(NewCap * sizeof(T))); in reserve()
/third_party/python/Modules/_ctypes/
H A D_ctypes.c120 #include <malloc.h>
2956 /* No need to call malloc, can use the default buffer */ in PyCData_MallocBuffer()
2966 /* In python 2.4, and ctypes 0.9.6, the malloc call took about in PyCData_MallocBuffer()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dtls_openssl.c3381 certificate.credData.data = (uint8_t *)malloc(MAX_LEN_CERTIFICATE_CHAIN); in tls_connection_client_cert()
3383 wpa_printf(MSG_ERROR, "%s malloc certificate.credData.data fail", __func__); in tls_connection_client_cert()
/third_party/ffmpeg/libavformat/
H A Dmov.c3202 st->stts_data = malloc(st->stts_count * sizeof(AVMOVStts));
3206 av_log(c->fc, AV_LOG_WARNING, "st->stts_data malloc failed\n");
3335 st->ctts_data = malloc(st->ctts_count * sizeof(AVMOVCtts));
3339 av_log(c->fc, AV_LOG_WARNING, "st->ctts_data malloc failed\n");
6947 av_freep(&info->data); // malloc(0) may still allocate something.
/third_party/glfw/deps/glad/
H A Dgl.h5825 exts_i = (char **) malloc(num_exts_i * (sizeof *exts_i)); in glad_gl_get_extensions()
5834 char *local_str = (char*) malloc(len * sizeof(char)); in glad_gl_get_extensions()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp6440 extern void *malloc (size_t __size) throw () __attribute__ ((__malloc__)) ;
6833 using ::malloc;
7460 __attribute__ ((malloc, warn_unused_result));
7463 __attribute__ ((malloc, warn_unused_result));
7466 __attribute__ ((malloc, warn_unused_result));
7469 __attribute__ ((malloc, warn_unused_result));
7477 __attribute__ ((malloc, warn_unused_result));
7492 __attribute__ ((malloc, warn_unused_result));
7498 __attribute__ ((malloc, warn_unused_result));
7515 return malloc(siz
[all...]
/foundation/arkui/napi/sample/native_module_systemtest/
H A Dtest_napi.cpp7926 struct AsyncData* data = (struct AsyncData*)malloc(sizeof(struct AsyncData)); in CreateAsyncData()
/foundation/multimedia/image_framework/frameworks/kits/js/common/
H A Dpixel_map_napi.cpp1292 char *buffer = reinterpret_cast<char *>(malloc((bufLength + NUM_1) * sizeof(char))); in GetStringArgument()
/foundation/multimedia/media_library/frameworks/js/src/
H A Dfile_asset_napi.cpp4569 context->editDataBuffer = static_cast<char*>(malloc(fileSize + 1)); in PhotoAccessHelperRequestEditDataExecute()
/third_party/eudev/
H A Dltmain.sh5592 #include <malloc.h>
5979 void *p = (void *) malloc (num);
/third_party/curl/
H A Dltmain.sh5793 #include <malloc.h>
6180 void *p = (void *) malloc (num);
/third_party/astc-encoder/Source/
H A Dstb_image.h16 And #define STBI_MALLOC, STBI_REALLOC, and STBI_FREE to avoid using malloc,realloc,free
680 #define STBI_MALLOC(sz) malloc(sz)
1741 // assume data buffer is malloced, so malloc a new one and free that one
1742 // only failure mode is malloc failing
4082 // - all output is written to a single output buffer (can malloc/realloc)
7833 fix MSVC-ARM internal compiler error by wrapping malloc
7928 0.97 jpeg errors on too large a file; also catch another malloc failure
/third_party/icu/icu4c/source/test/intltest/
H A Dregextst.cpp148 char *ebuf = (char*)malloc(bufLen); in utextToPrintable()
5384 // The following should exceed the default operator stack depth in the matcher, i.e. force the matcher to malloc instead of using fSmallData. in Bug7651()
5385 // It will cause a segfault if RegexMatcher tries to use fSmallData instead of malloc'ing the memory needed (see init2) for the pattern operator stack allocation. in Bug7651()
/third_party/mesa3d/include/CL/
H A Dcl2.hpp513 #include <malloc.h>
/third_party/lame/
H A Dltmain.sh5544 #include <malloc.h>
5931 void *p = (void *) malloc (num);
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_device.c5168 struct radeon_cmdbuf **cs_array = malloc(sizeof(struct radeon_cmdbuf *) * cmd_buffer_count); in radv_queue_submit_normal()
/third_party/node/deps/cares/
H A Dltmain.sh5793 #include <malloc.h>
6180 void *p = (void *) malloc (num);
/third_party/node/deps/cares/config/
H A Dltmain.sh5793 #include <malloc.h>
6180 void *p = (void *) malloc (num);
/third_party/mesa3d/src/mesa/main/
H A Dteximage.c738 GLubyte *data = (GLubyte *) malloc(numPixels * components * sizeof(GLubyte));
/third_party/libevdev/build-aux/
H A Dltmain.sh5794 #include <malloc.h>
6181 void *p = (void *) malloc (num);
/third_party/node/deps/v8/src/execution/riscv64/
H A Dsimulator-riscv64.cc2191 stack_ = reinterpret_cast<char*>(malloc(stack_size_)); in Simulator()
/third_party/node/deps/undici/
H A Dundici.js8843 currentBufferPtr = llhttp.malloc(currentBufferSize);
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp86 #include <stdlib.h> // NULL, malloc, free, atoi
6259 static char* Strdup(const char* s) { IM_ASSERT(s); size_t len = strlen(s) + 1; void* buf = malloc(len); IM_ASSERT(buf); return (char*)memcpy(buf, (const void*)s, len); }

Completed in 227 milliseconds

1...<<181182183184