Searched defs:allocated (Results 1 - 10 of 10) 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/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
/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/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/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/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/lib/libsldap/common/
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/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/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...]

Completed in 127 milliseconds