Searched refs:allocated (Results 51 - 75 of 266) sorted by relevance

1234567891011

/external/e2fsprogs/e2fsck/
H A Dregion.c31 struct region_el *allocated; member in struct:region_struct
51 for (r = region->allocated; r; r = next) {
72 * conflicts witih something that's already allocated, return
77 for (r = region->allocated, prev=NULL; r; prev = r, r = r->next) {
115 region->allocated = new_region;
163 for (r = region->allocated; r; r = r->next) {
/external/elfutils/libdw/
H A Ddwarf_getpubnames.c70 size_t allocated = 0; local
81 if (cnt >= allocated)
83 allocated = MAX (10, 2 * allocated);
85 = (struct pubnames_s *) realloc (mem, allocated * entsize);
/external/srec/portable/src/
H A Dpmemfixed.c50 How is the memory space allocated to the fixed block pools?
62 How is the large memory block from the system allocated?
63 It can be allocated in one of three ways depending on compile time definitions. If you define
64 STATIC_MEMORY_POOL, it's allocated as a static array. If you define RTXC_PARTITION_MEMORY,
65 it's allocated from the HEAP_MAP memory partition. If you don't define anything, it's allocated
140 unsigned int allocated; member in struct:__anon26770
311 /* pHead has already been allocated, statically. Don't need to do anything. */
486 memStats[ii].allocated++;
493 if (memStats[ii].allocated > memStat
[all...]
/external/e2fsprogs/intl/
H A Dvasnprintf.c142 size_t allocated; local
170 allocated = *lengthp;
175 allocated = 0;
179 result is either == resultbuf or == NULL or malloc-allocated.
182 /* Ensures that allocated >= needed. Aborts through a jump to
185 if ((needed) > allocated) \
190 allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \
191 if ((needed) > allocated) \
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dstunserver.cc101 // allocated yet.
102 bool allocated; local
103 talk_base::SocketAddress local_addr = socket_->GetLocalAddress(&allocated);
104 ASSERT(allocated);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dasyncudpsocket.h48 virtual SocketAddress GetLocalAddress(bool* allocated) const;
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2arrst.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 */
/external/freetype/src/cff/
H A Dcf2arrst.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 */
/external/valgrind/main/coregrind/m_demangle/
H A Ddyn-string.h32 int allocated; /* The amount of space allocated for the string. */ member in struct:dyn_string
H A Ddyn-string.c64 are still dynamically allocated. The string initially is capable
85 ds_struct_ptr->allocated = space;
96 returns the newly allocated string. */
127 /* Returns the contents of DS in a buffer allocated with malloc. It
154 int new_allocated = ds->allocated;
163 if (new_allocated != ds->allocated)
165 ds->allocated = new_allocated;
168 ds->s = (char *) realloc (ds->s, ds->allocated);
175 ds->s = XRESIZEVEC (char, ds->s, ds->allocated);
/external/valgrind/main/memcheck/tests/
H A Ddescribe-block.stderr.exp10 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Daddressable.stderr.exp5 total heap usage: ... allocs, ... frees, ... bytes allocated
34 total heap usage: ... allocs, ... frees, ... bytes allocated
43 total heap usage: ... allocs, ... frees, ... bytes allocated
57 total heap usage: ... allocs, ... frees, ... bytes allocated
76 total heap usage: ... allocs, ... frees, ... bytes allocated
86 total heap usage: ... allocs, ... frees, ... bytes allocated
/external/qemu/slirp/
H A Dbootp.c35 uint8_t allocated; member in struct:__anon25860
60 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
66 bc->allocated = 1;
81 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) {
82 bc->allocated = 1;
101 bc->allocated = 1;
/external/qemu/slirp-android/
H A Dbootp.c36 uint8_t allocated; member in struct:__anon25868
61 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
67 bc->allocated = 1;
84 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) {
85 bc->allocated = 1;
104 bc->allocated = 1;
/external/bluetooth/bluedroid/stack/avct/
H A Davct_api.c252 if ((p_ccb->allocated & AVCT_ALOC_BCB) == 0)
254 p_ccb->allocated |= AVCT_ALOC_BCB;
269 index = p_ccb->p_lcb->allocated;
277 p_bcb->allocated = index;
444 if (p_ccb->p_bcb == NULL && (p_ccb->allocated & AVCT_ALOC_BCB) == 0)
446 /* BCB channel is not open and not allocated */
/external/chromium_org/v8/test/cctest/
H A Dtest-alloc.cc177 // Plain old data class. Represents a block of allocated memory.
207 size_t allocated = 0; local
210 &allocated);
212 blocks.Add(Block(base, static_cast<int>(allocated)));
213 current_allocated += static_cast<int>(allocated);
214 total_allocated += static_cast<int>(allocated);
/external/harfbuzz/src/
H A Dharfbuzz-buffer.c36 * always have same allocated size, but different length and positions.
53 * in_string and alt_string. alt_string is not allocated until its needed,
66 HB_UInt new_allocated = buffer->allocated;
102 buffer->allocated = new_allocated;
115 if ( ALLOC_ARRAY( buffer->alt_string, buffer->allocated, HB_GlyphItemRec ) )
137 buffer->allocated = 0;
215 if ( ALLOC_ARRAY( buffer->positions, buffer->allocated, HB_PositionRec ) )
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-buffer.c36 * always have same allocated size, but different length and positions.
53 * in_string and alt_string. alt_string is not allocated until its needed,
66 HB_UInt new_allocated = buffer->allocated;
102 buffer->allocated = new_allocated;
115 if ( ALLOC_ARRAY( buffer->alt_string, buffer->allocated, HB_GlyphItemRec ) )
137 buffer->allocated = 0;
215 if ( ALLOC_ARRAY( buffer->positions, buffer->allocated, HB_PositionRec ) )
/external/srtp/
H A DMakefile138 @grep allocated tmp | wc -l > allocated
140 cmp -s allocated freed
142 @rm freed allocated tmp
201 rm -rf freed allocated tmp
/external/v8/test/cctest/
H A Dtest-alloc.cc193 // Plain old data class. Represents a block of allocated memory.
224 size_t allocated = 0; local
225 Address base = code_range->AllocateRawMemory(requested, &allocated);
227 blocks.Add(Block(base, static_cast<int>(allocated)));
228 current_allocated += static_cast<int>(allocated);
229 total_allocated += static_cast<int>(allocated);
/external/expat/tests/
H A Dminicheck.c60 if (tc->allocated == tc->ntests) {
61 int nalloc = tc->allocated + 100;
69 tc->allocated = nalloc;
/external/v8/src/
H A Dincremental-marking.h96 // Do some marking every time this much memory has been allocated.
98 // Start off by marking this many times more memory than has been allocated.
109 void OldSpaceStep(intptr_t allocated) { argument
110 Step(allocated * kFastMarking / kInitialAllocationMarkingFactor,
114 void Step(intptr_t allocated, CompletionAction action);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dcompute_memory_pool.c253 int64_t allocated = 0; local
292 allocated += item->size_in_dw;
296 if (pool->size_in_dw < allocated+unallocated) {
297 compute_memory_grow_pool(pool, pipe, allocated+unallocated);
308 (pool->size_in_dw - allocated);
346 allocated += item->size_in_dw;
/external/mesa3d/src/gallium/drivers/r600/
H A Dcompute_memory_pool.c253 int64_t allocated = 0; local
292 allocated += item->size_in_dw;
296 if (pool->size_in_dw < allocated+unallocated) {
297 compute_memory_grow_pool(pool, pipe, allocated+unallocated);
308 (pool->size_in_dw - allocated);
346 allocated += item->size_in_dw;
/external/chromium_org/content/common/gpu/
H A Dtexture_image_transport_surface.h43 virtual bool SetBackbufferAllocation(bool allocated) OVERRIDE;
44 virtual void SetFrontbufferAllocation(bool allocated) OVERRIDE;

Completed in 4720 milliseconds

1234567891011