Home
last modified time | relevance | path

Searched refs:allocated_data (Results 1 – 15 of 15) sorted by relevance

/dports/net/openmpi/openmpi-4.1.1/ompi/mca/fbtl/ime/
H A Dfbtl_ime_nonblocking_op.c49 data->allocated_data = (void*) malloc( fh->f_num_of_io_entries * in mca_fbtl_ime_nonblocking_op()
53 if (NULL == data->allocated_data) { in mca_fbtl_ime_nonblocking_op()
58 data->aio_iovecs = (struct iovec *) data->allocated_data; in mca_fbtl_ime_nonblocking_op()
172 free(data->allocated_data); in mca_fbtl_ime_nonblocking_op()
H A Dfbtl_ime.h78 void *allocated_data; /* pointer to the allocated space member
H A Dfbtl_ime.c172 free (data->allocated_data); in mca_fbtl_ime_request_free()
/dports/textproc/sary/sary-1.2.0/sary/
H A Dsearcher.c50 SaryInt *allocated_data; member
176 g_free(searcher->allocated_data); in sary_searcher_destroy()
237 searcher->allocated_data = (SaryInt *)occurences->data; in sary_searcher_multi_search()
306 searcher->allocated_data = (SaryInt *)occurences->data; in sary_searcher_icase_search2()
307 assign_range(searcher, searcher->allocated_data, occurences->len); in sary_searcher_icase_search2()
494 searcher->allocated_data = g_new(SaryInt, len); in sary_searcher_sort_occurrences()
495 g_memmove(searcher->allocated_data, in sary_searcher_sort_occurrences()
500 qsort(searcher->allocated_data, len, sizeof(SaryInt), qsortcmp); in sary_searcher_sort_occurrences()
501 assign_range(searcher, searcher->allocated_data, len); in sary_searcher_sort_occurrences()
529 g_free(searcher->allocated_data); in init_searcher_states()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/allocator/partition_allocator/
H A Dthread_cache_unittest.cc70 std::vector<void*> allocated_data; in FillThreadCacheAndReturnIndex() local
73 allocated_data.push_back(g_root->Alloc(size, "")); in FillThreadCacheAndReturnIndex()
75 for (void* ptr : allocated_data) { in FillThreadCacheAndReturnIndex()
/dports/www/ulfius/ulfius-2.7.3/test/
H A Dwebsocket.c620 char url[64], * allocated_data = o_strdup("plop"); in START_TEST() local
623 …nt_by_val(&instance, "GET", PREFIX_WEBSOCKET, NULL, 0, &callback_websocket, allocated_data), U_OK); in START_TEST()
632 …ng_message_callback_client, NULL, websocket_onclose_callback_client, allocated_data, &websocket_cl… in START_TEST()
650 …ng_message_callback_client, NULL, websocket_onclose_callback_client, allocated_data, &websocket_cl… in START_TEST()
659 o_free(allocated_data); in START_TEST()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h325 pointer GetAllocatedData() { return data_.allocated.allocated_data; } in GetAllocatedData()
328 return data_.allocated.allocated_data; in GetAllocatedData()
422 data_.allocated.allocated_data = data; in SetAllocatedData()
452 pointer allocated_data; member
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h325 pointer GetAllocatedData() { return data_.allocated.allocated_data; } in GetAllocatedData()
328 return data_.allocated.allocated_data; in GetAllocatedData()
422 data_.allocated.allocated_data = data; in SetAllocatedData()
452 pointer allocated_data; member
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h325 pointer GetAllocatedData() { return data_.allocated.allocated_data; } in GetAllocatedData()
328 return data_.allocated.allocated_data; in GetAllocatedData()
422 data_.allocated.allocated_data = data; in SetAllocatedData()
452 pointer allocated_data; member
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h325 pointer GetAllocatedData() { return data_.allocated.allocated_data; } in GetAllocatedData()
328 return data_.allocated.allocated_data; in GetAllocatedData()
422 data_.allocated.allocated_data = data; in SetAllocatedData()
452 pointer allocated_data; member
/dports/graphics/R-cran-s2/s2/src/absl/container/internal/
H A Dinlined_vector.h354 pointer GetAllocatedData() { return data_.allocated.allocated_data; } in GetAllocatedData()
357 return data_.allocated.allocated_data; in GetAllocatedData()
453 data_.allocated.allocated_data = data; in SetAllocatedData()
485 pointer allocated_data; member
/dports/devel/pecl-grpc/grpc-1.42.0/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h354 pointer GetAllocatedData() { return data_.allocated.allocated_data; } in GetAllocatedData()
357 return data_.allocated.allocated_data; in GetAllocatedData()
453 data_.allocated.allocated_data = data; in SetAllocatedData()
485 pointer allocated_data; member
/dports/devel/abseil/abseil-cpp-20211102.0/absl/container/internal/
H A Dinlined_vector.h330 Pointer<A> GetAllocatedData() { return data_.allocated.allocated_data; } in GetAllocatedData()
333 return data_.allocated.allocated_data; in GetAllocatedData()
425 data_.allocated.allocated_data = allocation.data; in SetAllocation()
449 Pointer<A> allocated_data; member
/dports/devel/py-grpcio/grpcio-1.43.0/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h330 Pointer<A> GetAllocatedData() { return data_.allocated.allocated_data; } in GetAllocatedData()
333 return data_.allocated.allocated_data; in GetAllocatedData()
425 data_.allocated.allocated_data = allocation.data; in SetAllocation()
449 Pointer<A> allocated_data; member
/dports/math/gambit/gambit-16.0.1/src/labenski/src/
H A Dplotdata.cpp706 int allocated_data = 400; in LoadFile() local
707 double *x_data = (double*)malloc(allocated_data*sizeof(double)); in LoadFile()
708 double *y_data = (double*)malloc(allocated_data*sizeof(double)); in LoadFile()
834 if ( points >= allocated_data - 1) in LoadFile()
836 allocated_data += 400; in LoadFile()
837 x_data = (double*)realloc( x_data, allocated_data*sizeof(double) ); in LoadFile()
838 y_data = (double*)realloc( y_data, allocated_data*sizeof(double) ); in LoadFile()