Searched refs:allocate (Results 1 - 25 of 325) sorted by relevance

1234567891011>>

/macosx-10.9.5/cctools-845/include/stuff/
H A Dallocate.h27 /* defined in allocate.c */
29 __private_extern__ void *allocate(
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DStrongInlines.h35 : Handle<T>(vm.heap.handleSet()->allocate())
42 : Handle<T>(vm.heap.handleSet()->allocate())
51 setSlot(vm.heap.handleSet()->allocate());
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGNodeAllocator.h45 return allocator.allocate();
/macosx-10.9.5/cctools-845/libstuff/
H A Dallocate.c28 #include "stuff/allocate.h"
31 * allocate() is just a wrapper around malloc that prints an error message and
36 allocate( function
59 return(allocate(size));
78 r = (char *)allocate(len);
109 s = allocate(size + 1);
H A Dguess_short_name.c27 #include "stuff/allocate.h"
91 *return_suffix = allocate(s + 1);
102 guess = allocate(l + 1);
114 guess = allocate(l + 1);
134 guess = allocate(l + 1);
146 guess = allocate(l + 1);
182 *return_suffix = allocate(s + 1);
192 guess = allocate(l + 1);
206 *return_suffix = allocate(s + 1);
216 guess = allocate(
[all...]
H A Dmacosx_deployment_target.c31 #include "stuff/allocate.h"
106 value->name = allocate(strlen(p) + 1);
140 value->name = allocate(32);
151 value->name = allocate(strlen("10.6") + 1);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/
H A Ddebug_allocator.h91 allocate(size_type __n) function in class:debug_allocator
93 pointer __res = _M_allocator.allocate(__n + _M_extra);
100 allocate(size_type __n, const void* __hint) function in class:debug_allocator
102 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DPODFreeListArena.h44 void* ptr = allocate(roundedSize);
46 // Use placement operator new to allocate a T at this location.
74 void* allocate(size_t size) function in class:WebCore::PODFreeListArena
78 // First allocate from the current chunk.
79 ptr = m_current->allocate(size);
81 // Check if we can allocate from other chunks' free list.
85 ptr = chunk->allocate(size);
98 ptr = m_current->allocate(size);
128 void* allocate(size_t size) function in class:WebCore::PODFreeListArena::FreeListChunk
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_/
H A Dentry_list_fn_imps.hpp66 entry_pointer p_e = s_entry_allocator.allocate(1);
79 entry_pointer p_e = s_entry_allocator.allocate(1);
H A Dconstructor_destructor_fn_imps.hpp71 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
82 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
94 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
109 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
123 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
138 m_entries(m_entries = s_entry_pointer_allocator.allocate(m_num_e))
/macosx-10.9.5/libauto-185.5/auto_tester/
H A DMainThreadFinalization.m52 - (void)allocate
63 [self allocate];
H A DResourceTracking.m60 - (void)allocate
75 [self allocate];
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/ov_tree_map_/
H A Dinsert_fn_imps.hpp59 metadata_pointer a_new_metadata_vec =(new_size == 0) ? NULL : s_metadata_alloc.allocate(new_size);
/macosx-10.9.5/smb-697.95.1/lib/librpc/
H A Dmemory.cpp46 allocate( function in namespace:platform
H A Drpc_helpers.hpp47 static rpc_mempool * allocate(size_t);
60 ret.first = rpc_mempool::allocate(sizeof(T));
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/backward/
H A Ddefalloc.h68 inline _Tp* allocate(ptrdiff_t __size, _Tp*) { function
94 pointer allocate(size_type __n) { function in class:allocator
95 return ::allocate((difference_type)__n, (pointer)0);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DBidiRun.cpp61 return renderArena->allocate(sz);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/pat_trie_/
H A Dsplit_join_branch_bag.hpp62 internal_node_pointer p_nd = s_internal_node_allocator.allocate(1);
H A Dconstructors_destructor_fn_imps.hpp62 m_p_head(s_head_allocator.allocate(1)),
73 m_p_head(s_head_allocator.allocate(1)),
88 m_p_head(s_head_allocator.allocate(1)),
178 leaf_pointer p_new_lf = s_leaf_allocator.allocate(1);
200 p_ret = s_internal_node_allocator.allocate(1);
/macosx-10.9.5/ruby-104/ruby/bootstraptest/
H A Dpending.rb35 r = Range.allocate
/macosx-10.9.5/cctools-845/ld/
H A Ddylibs.c95 dl = allocate(cmdsize);
105 mdl = allocate(sizeof(struct merged_dylib));
167 merged_dylinker = allocate(sizeof(struct merged_dylinker));
243 *p = allocate(sizeof(struct merged_dylib));
275 dyld = allocate(cmdsize);
282 mdyld = allocate(sizeof(struct merged_dylinker));
308 sub = allocate(cmdsize);
315 msub = allocate(sizeof(struct merged_sub_frameworks));
341 merged_sub_umbrellas = allocate(sizeof(struct merged_sub_umbrella) *
366 sub = allocate(cmdsiz
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/list_update_map_/
H A Dinsert_fn_imps.hpp77 entry_pointer p_l = s_entry_allocator.allocate(1);
93 entry_pointer p_l = s_entry_allocator.allocate(1);
/macosx-10.9.5/bootp-268.1/IPConfiguration.bproj/
H A Dlinklocal.c103 boolean_t allocate; member in struct:__anon6754
436 if (linklocal->allocate) {
495 linklocal->allocate = TRUE;
499 && method_data->linklocal.allocate == FALSE) {
500 /* don't allocate an IP address, just set the subnet */
501 linklocal->allocate = FALSE;
541 boolean_t allocate = TRUE; local
548 && method_data->linklocal.allocate == FALSE) {
549 /* don't allocate an IP address, just set the subnet */
550 allocate
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/bin_search_tree_/
H A Dconstructors_destructor_fn_imps.hpp53 PB_DS_CLASS_NAME() : m_p_head(s_node_allocator.allocate(1)), m_size(0)
62 Cmp_Fn(r_cmp_fn), m_p_head(s_node_allocator.allocate(1)), m_size(0)
73 m_p_head(s_node_allocator.allocate(1)),
91 m_p_head(s_node_allocator.allocate(1)),
165 node_pointer p_ret = s_node_allocator.allocate(1);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/gp_hash_table_map_/
H A Dconstructor_destructor_fn_imps.hpp67 m_entries(s_entry_allocator.allocate(m_num_e))
78 m_entries(s_entry_allocator.allocate(m_num_e))
90 m_entries(s_entry_allocator.allocate(m_num_e))
104 m_entries(s_entry_allocator.allocate(m_num_e))
118 m_entries(s_entry_allocator.allocate(m_num_e))
133 m_entries(s_entry_allocator.allocate(m_num_e))
150 m_entries(s_entry_allocator.allocate(m_num_e))

Completed in 255 milliseconds

1234567891011>>