Home
last modified time | relevance | path

Searched refs:memory_alloc (Results 1 – 25 of 107) sorted by relevance

12345

/dports/sysutils/powerman/powerman-2.3.20/libcommon/
H A Dxmalloc.c38 static int memory_alloc = 0; variable
49 return memory_alloc; in xmemory()
74 memory_alloc += size; in xmalloc()
100 memory_alloc += (newsize - oldsize); in xrealloc()
120 memory_alloc -= size; in xfree()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/temptable/src/
H A Dblock.cc86 PSI_MEMORY_CALL(memory_alloc)(mem_key_logical, size, &owner_thread); in Block_PSI_track_logical_allocation()
108 PSI_MEMORY_CALL(memory_alloc)(psi_key, size, &owner_thread); in Block_PSI_track_physical_ram_allocation()
128 PSI_MEMORY_CALL(memory_alloc)(psi_key, size, &owner_thread); in Block_PSI_track_physical_disk_allocation()
/dports/textproc/py-pyahocorasick/pyahocorasick-1.4.1/
H A Dutils.c63 void* memory_alloc(ssize_t size) { in memory_alloc() function
193 *word = (TRIE_LETTER_TYPE*)memory_alloc(*wordlen * TRIE_LETTER_SIZE); in pymod_get_string()
217 *word = (TRIE_LETTER_TYPE*)memory_alloc(*wordlen * TRIE_LETTER_SIZE); in pymod_get_string()
244 tmpword = (TRIE_LETTER_TYPE*)memory_alloc(size * TRIE_LETTER_SIZE); in __read_sequence__from_tuple()
H A DAutomaton_pickle.c78 repl = (NodeID*)memory_alloc(sizeof(NodeID)); in pickle_dump_replace_fail_with_id()
356 id2node = (TrieNode**)memory_alloc((count+1) * sizeof(TrieNode*)); in automaton_unpickle()
381 node = (TrieNode*)memory_alloc(sizeof(TrieNode)); in automaton_unpickle()
406 node->next = (Pair*)memory_alloc(node->n * sizeof(Pair)); in automaton_unpickle()
H A DAutomatonItemsIter.c58 iter->buffer = memory_alloc((automaton->longest_word + 1) * TRIE_LETTER_SIZE); in automaton_items_iter_new()
64 iter->char_buffer = memory_alloc(automaton->longest_word + 1); in automaton_items_iter_new()
71 iter->pattern = (TRIE_LETTER_TYPE*)memory_alloc(wordlen * TRIE_LETTER_SIZE); in automaton_items_iter_new()
H A Dtrienode.c15 TrieNode* node = (TrieNode*)memory_alloc(sizeof(TrieNode)); in trienode_new()
88 next = (Pair*)memory_alloc((node->n - 1) * sizeof(Pair)); in trienode_unset_next_pointer()
H A Dslist.c20 ListItem* item = (ListItem*)memory_alloc(size); in list_item_new()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/relay/transform/
H A D__init__.py21 from . import memory_alloc
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/include/mysql/components/services/
H A Dpsi_memory_service.h33 memory_alloc_v1_t memory_alloc;
/dports/databases/mysql-connector-odbc/mysql-connector-odbc-5.3.13-src/include/mysql-8.0/mysql/components/services/
H A Dpsi_memory_service.h39 memory_alloc_v1_t memory_alloc;
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/include/mysql/psi/
H A Dpsi_memory.h98 memory_alloc_v1_t memory_alloc; member
H A Dpsi_abi_memory_v1.h.pp36 memory_alloc_v1_t memory_alloc;
/dports/databases/mysql-connector-odbc/mysql-connector-odbc-5.3.13-src/include/mysql-8.0/mysql/psi/
H A Dpsi_memory.h104 memory_alloc_v1_t memory_alloc; member
H A Dpsi_abi_memory_v1.h.pp36 memory_alloc_v1_t memory_alloc;
/dports/cad/xcircuit/xcircuit-3.10.30/spiceparser/
H A Dmemory.h55 void *memory_alloc(memory_t *ma, int size);
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/ffs/ffs/ffs/
H A Dffs_malloc.c27 if ((result = memory_alloc((memory_t *) & tmp, size,
/dports/textproc/py-pyahocorasick/pyahocorasick-1.4.1/src/custompickle/load/
H A Dmodule_automaton_load.c119 node = (TrieNode*)memory_alloc(sizeof(TrieNode)); in automaton_load_node()
136 node->next = (Pair*)memory_alloc(size); in automaton_load_node()
/dports/databases/mariadb105-client/mariadb-10.5.15/include/mysql/psi/
H A Dmysql_memory.h34 #define PSI_CALL_memory_alloc(A1,A2,A3) PSI_MEMORY_CALL(memory_alloc)(A1,A2,A3)
/dports/math/giacxcas/giac-1.6.0/src/
H A Dgen_user5 virtual my_gen * memory_alloc() const { return (my_gen *) malloc(sizeof(*this)); }
/dports/databases/mariadb105-server/mariadb-10.5.15/include/mysql/psi/
H A Dmysql_memory.h34 #define PSI_CALL_memory_alloc(A1,A2,A3) PSI_MEMORY_CALL(memory_alloc)(A1,A2,A3)
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/components/library_mysys/
H A Dmy_memory.cc73 mh->m_key = PSI_MEMORY_CALL(memory_alloc)(key, size, &mh->m_owner); in my_malloc()
/dports/misc/tvm/incubator-tvm-0.6.1/tests/python/relay/
H A Dtest_memory_alloc.py20 from tvm.relay import memory_alloc
/dports/misc/py-tvm/incubator-tvm-0.6.1/tests/python/relay/
H A Dtest_memory_alloc.py20 from tvm.relay import memory_alloc
/dports/textproc/py-pyahocorasick/pyahocorasick-1.4.1/src/custompickle/save/
H A Dsavebuffer.c25 output->buffer = (char*)memory_alloc(capacity); in savebuffer_init()
/dports/emulators/mess/mame-mame0226/3rdparty/bgfx/3rdparty/meshoptimizer/tools/
H A Dcgltf.h112 void* (*memory_alloc)(void* user, cgltf_size size); member
699 void* result = options->memory_alloc(options->memory_user_data, element_size * count); in cgltf_calloc()
723 if (fixed_options.memory_alloc == NULL) in cgltf_parse()
725 fixed_options.memory_alloc = &cgltf_default_alloc; in cgltf_parse()
849 …void* (*memory_alloc)(void*, cgltf_size) = options->memory_alloc ? options->memory_alloc : &cgltf_… in cgltf_parse_file() local
869 char* file_data = (char*)memory_alloc(options->memory_user_data, length); in cgltf_parse_file()
921 …void* (*memory_alloc)(void*, cgltf_size) = options->memory_alloc ? options->memory_alloc : &cgltf_… in cgltf_load_buffer_file() local
941 char* file_data = (char*)memory_alloc(options->memory_user_data, size); in cgltf_load_buffer_file()
965 …void* (*memory_alloc)(void*, cgltf_size) = options->memory_alloc ? options->memory_alloc : &cgltf_… in cgltf_load_buffer_base64() local
968 unsigned char* data = (unsigned char*)memory_alloc(options->memory_user_data, size); in cgltf_load_buffer_base64()
[all …]

12345