Searched refs:num_allocated (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/libauto-185.5/
H A Dauto_weak.cpp37 usword_t num_allocated; member in struct:weak_referrer_array_t
101 usword_t old_num_allocated = list->num_allocated;
106 list->num_allocated = aux_malloc_size(list->refs)/sizeof(weak_referrer_t);
107 bzero(list->refs, list->num_allocated * sizeof(weak_referrer_t));
109 if ((list->num_allocated > WEAK_TABLE_DOUBLE_SIZE) && !(list->num_allocated & 1)) list->num_allocated--;
128 if ((list->num_refs == list->num_allocated) || ((list->num_refs >= WEAK_TABLE_DOUBLE_SIZE) && (list->num_refs >= list->num_allocated * 2 / 3))) {
131 usword_t index = hash(new_referrer) % list->num_allocated, hash_displacemen
[all...]
/macosx-10.9.5/groff-38/groff/src/libs/libdriver/
H A Dinput.cpp268 size_t num_allocated; member in class:IntArray
306 size_t num_allocated; member in class:StringBuf
323 size_t num_allocated; member in class:EnvStack
442 num_allocated = 4;
443 // allocate pointer to array of num_allocated pointers to environment
444 data = (environment **)malloc(envp_size * num_allocated);
474 if (num_stored >= num_allocated) {
476 num_allocated *= 2;
477 data = (environment **)malloc(envp_size * num_allocated);
501 num_allocated
[all...]
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-class.mm986 unsigned num_allocated;
995 num_allocated =
1002 num_allocated =
1005 for (i = 0; i < num_allocated; i++) {
1015 for (i = 0; i < num_allocated; i++) {
1027 return num_allocated - shift;
/macosx-10.9.5/ruby-104/ruby/
H A Dtranscode.c128 int num_allocated; member in struct:rb_econv_t
876 ec->num_allocated = n_hint;
878 ec->elems = ALLOC_N(rb_econv_elem_t, ec->num_allocated);
900 if (ec->num_trans == ec->num_allocated) {
901 n = ec->num_allocated * 2;
903 ec->num_allocated = n;
1736 size += sizeof(rb_econv_elem_t) * ec->num_allocated;

Completed in 143 milliseconds