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

12345678

/xsrc/external/mit/xmessage/dist/
H A Dreadfile.c82 cp[count] = '\0'; /* since we allocated one extra */
96 int allocated; local in function:get_data_from_stdin
99 allocated = BUFSIZ;
100 cp = malloc (allocated + 1);
109 /* Here count <= allocated. Prepare for next round. */
110 if (count + BUFSIZ > allocated) {
112 allocated = 2 * allocated;
113 cp = realloc (cp, allocated + 1);
122 cp[count] = '\0'; /* since we allocated on
[all...]
/xsrc/external/mit/freetype/dist/src/psaux/
H A Dpsarrst.c67 arrstack->allocated = 0;
83 arrstack->allocated = 0;
115 arrstack->allocated = numElements;
145 if ( numElements > arrstack->allocated )
217 if ( arrstack->count == arrstack->allocated )
221 arrstack, arrstack->allocated + arrstack->chunk ) )
H A Dpsarrst.h49 /* need to define the struct here (not opaque) so it can be allocated by */
57 size_t allocated; /* items allocated */ member in struct:CF2_ArrStackRec_
59 size_t count; /* number of elements allocated */
60 size_t totalSize; /* total bytes allocated */
/xsrc/external/mit/MesaLib.old/dist/src/compiler/
H A Dblob.c52 if (blob->size + additional <= blob->allocated)
60 if (blob->allocated == 0)
63 to_allocate = blob->allocated * 2;
65 to_allocate = MAX2(to_allocate, blob->allocated + additional);
74 blob->allocated = to_allocate;
112 blob->allocated = 0;
122 blob->allocated = size;
H A Dblob.h53 /** Number of bytes that have been allocated for \c data. */
54 size_t allocated; member in struct:blob
131 * Space will be allocated within the blob for these byes, but the bytes will
135 * \return An offset to space allocated within \blob to which \to_write bytes
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dblob.c52 if (blob->size + additional <= blob->allocated)
60 if (blob->allocated == 0)
63 to_allocate = blob->allocated * 2;
65 to_allocate = MAX2(to_allocate, blob->allocated + additional);
74 blob->allocated = to_allocate;
112 blob->allocated = 0;
122 blob->allocated = size;
H A Dblob.h53 /** Number of bytes that have been allocated for \c data. */
54 size_t allocated; member in struct:blob
134 * Space will be allocated within the blob for these byes, but the bytes will
138 * \return An offset to space allocated within \blob to which \to_write bytes
/xsrc/external/mit/xorg-server.old/dist/dix/
H A Dprivates.c70 int allocated; member in struct:__anon020ad90c0108
166 * non-zero, then the specified amount of space will be allocated in
168 * be allocated which can be set with dixSetPrivate
194 /* Resize if we can, or make sure nothing's allocated if we can't
219 /* Resize if we can, or make sure nothing's allocated if we can't */
233 key->allocated = FALSE;
260 key->allocated = TRUE;
350 ++keys[type].allocated;
375 --keys[type].allocated;
465 keys[t].allocated);
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
H A Dnouveau_mm.c39 uint64_t allocated; member in struct:nouveau_mman
153 cache->allocated += size;
157 cache->allocated / 1024);
162 /* @return token to identify slab or NULL if we just allocated a new bo */
255 cache->allocated = 0;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
H A Dnouveau_mm.c39 uint64_t allocated; member in struct:nouveau_mman
154 cache->allocated += size;
158 cache->allocated / 1024);
163 /* @return token to identify slab or NULL if we just allocated a new bo */
255 cache->allocated = 0;
/xsrc/external/mit/bitmap/dist/
H A Datobm.c189 int allocated; member in struct:_scan_list
202 slist->allocated = NTOALLOC * bytes_per_scanline;
203 slist->scanlines = (unsigned char *) calloc(slist->allocated, 1);
281 if (slist->used + 1 >= slist->allocated) {
/xsrc/external/mit/xorg-server/dist/dix/
H A Dprivates.c327 * non-zero, then the specified amount of space will be allocated in
329 * be allocated which can be set with dixSetPrivate
354 /* Resize if we can, or make sure nothing's allocated if we can't
380 /* Resize if we can, or make sure nothing's allocated if we can't */
395 key->allocated = FALSE;
423 key->allocated = TRUE;
522 ++global_keys[type].allocated;
548 --global_keys[type].allocated;
633 key->allocated = FALSE;
751 global_keys[t].created * global_keys[t].offset, global_keys[t].allocated);
[all...]
/xsrc/external/mit/MesaLib.old/dist/docs/specs/OLD/
H A DMESA_agp_offset.spec66 On "PC" computers, AGP memory can be allocated with glXAllocateMemoryNV
/xsrc/external/mit/MesaLib/dist/docs/_extra/specs/OLD/
H A DMESA_agp_offset.spec66 On "PC" computers, AGP memory can be allocated with glXAllocateMemoryNV
/xsrc/external/mit/fontconfig/dist/src/
H A Dfccache.c484 * in the structure, it will be allocated large enough to hold all
494 void *allocated; member in struct:_FcCacheSkip
623 s->allocated = NULL;
698 void *allocated; local in function:FcCacheRemoveUnlocked
719 allocated = s->allocated;
720 while (allocated)
722 /* First element in allocated chunk is the free list */
723 next = *(void **)allocated;
724 free (allocated);
801 void *allocated = NULL; local in function:FcCacheAllocate
969 FcBool allocated = FcFalse; local in function:FcDirCacheMapFd
[all...]
/xsrc/external/mit/xfontsel/dist/
H A Dxfontsel.c214 int allocated; member in struct:FieldValue
223 int allocated; member in struct:FieldValueList
225 FieldValue value[1]; /* really [allocated] */
553 fieldValues[field]->allocated = 1;
660 if (count == fValues[f]->allocated) {
661 int allocated = (fValues[f]->allocated += 10); local in function:ParseFontNames
665 (allocated-1) * sizeof(FieldValue) );
678 v->allocated = 10;
684 if ((i = v->count++) == v->allocated) {
685 int allocated = (v->allocated += 10); local in function:ParseFontNames
779 int allocated = (fieldValues[f]->allocated += 10); local in function:NewScalables
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
H A Dcompute_memory_pool.c57 int64_t allocated);
220 int64_t allocated = 0; local in function:compute_memory_finalize_pending
234 /* Calculate the total allocated size */
236 allocated += align(item->size_in_dw, ITEM_ALIGNMENT);
250 if (pool->size_in_dw < allocated + unallocated) {
251 err = compute_memory_grow_defrag_pool(pool, pipe, allocated + unallocated);
260 /* After defragmenting the pool, allocated is equal to the first available
262 last_pos = allocated;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
H A Dcompute_memory_pool.c57 int64_t allocated);
220 int64_t allocated = 0; local in function:compute_memory_finalize_pending
234 /* Calculate the total allocated size */
236 allocated += align(item->size_in_dw, ITEM_ALIGNMENT);
250 if (pool->size_in_dw < allocated + unallocated) {
251 err = compute_memory_grow_defrag_pool(pool, pipe, allocated + unallocated);
260 /* After defragmenting the pool, allocated is equal to the first available
262 last_pos = allocated;
/xsrc/external/mit/MesaLib/dist/docs/
H A Dosmesa.rst4 Mesa's off-screen interface is used for rendering into user-allocated
/xsrc/external/mit/xorg-server/dist/include/
H A Dprivates.h63 Bool allocated; member in struct:_DevPrivateKeyRec
72 int allocated; member in struct:_DevPrivateSetRec
89 * This initializes the specified key and optionally requests pre-allocated
229 * space will only be available for objects allocated for use on that
279 * privates to be re-allocated as new private keys are registered.
288 * Frees separately allocated private data
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D18.3.6.rst96 - Revert "anv/radv: release memory allocated by glsl types during
129 - anv/radv: release memory allocated by glsl types during spirv_to_nir
H A D19.0.2.rst67 - Revert "anv/radv: release memory allocated by glsl types during
H A D11.1.1.rst161 - nvc0: free memory allocated by the prog which reads MP perf counters
162 - nv50,nvc0: free memory allocated by performance metrics
163 - nv50: free memory allocated by the prog which reads MP perf counters
/xsrc/external/mit/xorg-server.old/dist/include/
H A Dprivates.h64 Bool allocated; member in struct:_DevPrivateKeyRec
83 * This initializes the specified key and optionally requests pre-allocated
217 * privates to be re-allocated as new private keys are registered.
226 * Frees separately allocated private data
/xsrc/external/mit/libdrm/dist/man/
H A DdrmModeGetResources.3.rst48 The *count_fbs* and *fbs* fields indicate the number of currently allocated

Completed in 30 milliseconds

12345678