Searched refs:allocated (Results 1 - 21 of 21) sorted by relevance

/osnet-11/usr/src/grub/grub2/include/grub/
H A Dmm.h78 grub_extend_alloc (grub_size_t sz, grub_size_t *allocated, void **ptr) argument
81 if (sz < *allocated)
84 *allocated = 2 * sz;
85 n = grub_realloc (*ptr, *allocated);
/osnet-11/usr/src/lib/libkstat/common/
H A Dkstat.c52 int allocated; member in struct:kstat_hashed_records
111 int *allocated)
135 *allocated = 1;
163 int allocated = 0; local
166 &tmp_name, &allocated);
168 * If the entry was allocated free it up we do not care
171 if (allocated)
217 int allocated = 0; local
236 ksp->ks_instance, &tmp_name, &allocated);
251 ks_entry->allocated
110 kstat_record_hash(char *name, char *module, int instance, char **tmp_name, int *allocated) argument
263 int allocated = 0; local
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derrmap.h62 size_t allocated;
73 arr->allocated = 10;
80 return arr->allocated;
98 size_t oldsize = sizeof(*arr->elts) * arr->allocated;
104 if (newcount < arr->allocated)
115 arr->allocated = newcount;
122 if (idx < 0 || (unsigned long) idx >= arr->allocated)
61 size_t allocated; member in struct:mecherrmap__pairarray__header
/osnet-11/usr/src/lib/libfuse/common/
H A Dfuse_opt.h73 * If the format is "%s", memory is allocated for the string unlike
115 /** Is 'argv' allocated? */
116 int allocated; member in struct:fuse_args
H A Doptions.c34 if (args->allocated)
43 if (args->allocated)
45 args->allocated = B_TRUE;
91 if (args->allocated)
95 } else if (args->allocated) {
101 if (args->allocated)
103 args->allocated = B_TRUE;
152 if ((args == NULL) || (! args->allocated))
/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A Dpriority_queue.c53 grub_size_t allocated; member in struct:grub_priority_queue
134 ret->allocated = 8;
146 if (pq->used == pq->allocated)
149 els = grub_realloc (pq->els, pq->elsize * 2 * pq->allocated);
152 pq->allocated *= 2;
/osnet-11/usr/src/grub/grub2/grub-core/lib/xzembed/
H A Dxz_dec_lzma2.c50 * size <= allocated
90 * Amount of memory allocated for the dictionary. A special
94 uint32_t allocated; member in struct:dictionary
285 if (dict->allocated == 0) {
394 if (dict->allocated != 0) {
419 if (dict->allocated != 0) {
1134 s->dict.allocated = dict_max;
1150 if (s->dict.allocated > 0 && s->dict.allocated < s->dict.size)
1159 s->dict.allocated
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/
H A DSubstrHash.pm24 duration of the tied hash>. The newly-allocated hash table may now have
30 memory than an equivalent freely-allocated hash table.
/osnet-11/usr/src/grub/grub2/grub-core/fs/
H A Dbtrfs.c174 unsigned allocated; member in struct:grub_btrfs_leaf_descriptor
304 if (desc->allocated < desc->depth)
307 desc->allocated *= 2;
309 * desc->allocated);
387 desc->allocated = 16;
389 desc->data = grub_malloc (sizeof (desc->data[0]) * desc->allocated);
1158 grub_size_t allocated = 0; local
1227 if (elemsize > allocated)
1229 allocated = 2 * elemsize;
1231 direl = grub_malloc (allocated
1409 grub_size_t allocated = 0; local
[all...]
/osnet-11/usr/src/lib/libsuri/common/
H A Dsuri_parser.c252 boolean_t allocated; /* regcomp(3LIB) REG_ESPACE indicator */ member in struct:suri_regexp
304 if (suri_regexps[i].allocated == B_TRUE)
309 suri_regexps[i].allocated = B_TRUE;
342 if (suri_regexps[i].allocated)
483 * We can here only if the handle is in an allocated state which means
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dvasnprintf.c335 mp_limb_t *limbs; /* Bits in little-endian order, allocated with malloc(). */
339 Return the allocated memory in case of success, NULL in case of memory
411 Return the allocated memory in case of success, NULL in case of memory
462 The room for q[j] can be allocated at the memory location of r[n+j].
812 Return the allocated memory - containing the decimal digits in low-to-high
867 Return the allocated memory in case of success, NULL in case of memory
955 Return the allocated memory in case of success, NULL in case of memory
1038 Return the allocated memory - containing the decimal digits in low-to-high
1260 Return the allocated memory - containing the decimal digits in low-to-high
1278 Return the allocated memor
1774 size_t allocated; local
[all...]
H A Dregex.h449 the pattern compiler, the fields `buffer', `allocated', `fastmap',
462 __re_long_size_t _REG_RE_NAME (allocated);
611 allocated with malloc, and must each be at least `NUM_REGS * sizeof
H A Dregcomp.c213 Assumes the `allocated' (and perhaps `buffer') and `translate' fields
453 `fastmap' to an allocated space for the fastmap;
488 preg->allocated = 0;
659 /* Free dynamically allocated space used by PREG. */
669 preg->allocated = 0;
775 if (BE (preg->allocated < sizeof (re_dfa_t), 0))
777 /* If zero allocated, but buffer is non-null, try to realloc
784 preg->allocated = sizeof (re_dfa_t);
794 preg->allocated = 0;
814 preg->allocated
[all...]
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_internal.h1002 int *allocated,
H A Dns_writes.c4188 int *allocated,
4195 *allocated = FALSE;
4218 *allocated = TRUE;
4185 __s_api_append_default_basedn( const char *dn, char **new_dn, int *allocated, ns_ldap_error_t **errp) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/Unicode/
H A DUnicode.pm208 Back then, the range 0xD800-0xDFFF was not allocated. Let's split
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/Peek/
H A DPeek.pm154 the information about the allocated size and usable size of chunks in
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Data/Dumper/
H A DDumper.pm883 instance, it contains data allocated from C), and even rebless it in a
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DC.pm1423 STRLEN xpv_len; /* allocated size */
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/
H A DStorable.pm854 temporary arrays to hold the keys for each hash have to be allocated,
/osnet-11/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c986 since cipher_dec_context was allocated at the same time. */
4005 /* allocated exactly this. safe */
4768 /* Get an allocated version of the realm into the structure */

Completed in 126 milliseconds