HomeSort by relevance Sort by last modified time
    Searched refs:alloc (Results 1 - 25 of 367) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/extras/ext4_utils/
allocate.h 28 int block_allocation_num_regions(struct block_allocation *alloc);
29 int block_allocation_len(struct block_allocation *alloc);
31 void reduce_allocation(struct block_allocation *alloc, u32 len);
32 u32 get_block(struct block_allocation *alloc, u32 block);
33 u32 get_oob_block(struct block_allocation *alloc, u32 block);
34 void get_next_region(struct block_allocation *alloc);
35 void get_region(struct block_allocation *alloc, u32 *block, u32 *len);
42 void free_alloc(struct block_allocation *alloc);
43 int reserve_oob_blocks(struct block_allocation *alloc, int blocks);
44 int advance_blocks(struct block_allocation *alloc, int blocks)
    [all...]
indirect.c 29 static u8 *create_backing(struct block_allocation *alloc,
40 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
44 get_region(alloc, &region_block, &region_len);
56 static void reserve_indirect_block(struct block_allocation *alloc, int len)
58 if (reserve_oob_blocks(alloc, 1)) {
63 if (advance_blocks(alloc, len)) {
69 static void reserve_dindirect_block(struct block_allocation *alloc, int len)
71 if (reserve_oob_blocks(alloc, 1)) {
79 reserve_indirect_block(alloc, ind_block_len)
388 struct block_allocation *alloc = allocate_blocks(block_len + indirect_len); local
401 struct block_allocation *alloc; local
486 struct block_allocation *alloc; local
    [all...]
extent.c 29 static u8 *extent_create_backing(struct block_allocation *alloc,
37 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
41 get_region(alloc, &region_block, &region_len);
55 static void extent_create_backing_file(struct block_allocation *alloc,
59 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
63 get_region(alloc, &region_block, &region_len);
77 struct block_allocation *alloc = allocate_blocks(block_len + 1); local
83 if (alloc == NULL)
181 struct block_allocation *alloc; local
206 struct block_allocation *alloc; local
222 struct block_allocation *alloc; local
    [all...]
allocate.c 63 struct block_allocation *alloc = malloc(sizeof(struct block_allocation)); local
64 alloc->list.first = NULL;
65 alloc->list.last = NULL;
66 alloc->oob_list.first = NULL;
67 alloc->oob_list.last = NULL;
68 alloc->list.iter = NULL;
69 alloc->list.partial_iter = 0;
70 alloc->oob_list.iter = NULL;
71 alloc->oob_list.partial_iter = 0;
72 return alloc;
454 struct block_allocation *alloc = create_allocation(); local
    [all...]
indirect.h 26 struct block_allocation *alloc);
  /external/dropbear/libtommath/
bn_mp_grow.c 24 /* if the alloc size is smaller alloc more ram */
25 if (a->alloc < size) {
45 i = a->alloc;
46 a->alloc = size;
47 for (; i < a->alloc; i++) {
bn_mp_clear.c 28 len = a->alloc;
39 a->alloc = a->used = 0;
bn_mp_shrink.c 22 if (a->alloc != a->used && a->used > 0) {
27 a->alloc = a->used;
bn_mp_zero.c 28 for (n = 0; n < a->alloc; n++) {
  /external/webkit/JavaScriptCore/jit/
ExecutableAllocatorWin.cpp 48 ExecutablePool::Allocation alloc = {reinterpret_cast<char*>(allocation), n}; local
49 return alloc;
52 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& alloc)
54 VirtualFree(alloc.pages, 0, MEM_RELEASE);
ExecutableAllocatorSymbian.cpp 59 ExecutablePool::Allocation alloc = { allocation, n, codeChunk }; local
60 return alloc;
63 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& alloc)
65 alloc.chunk->Close();
66 delete alloc.chunk;
ExecutableAllocatorPosix.cpp 50 ExecutablePool::Allocation alloc = { reinterpret_cast<char*>(allocation), n }; local
51 return alloc;
54 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& alloc)
56 int result = munmap(alloc.pages, alloc.size);
  /external/webkit/WebCore/platform/mac/
AutodrainedPool.mm 37 , m_pool([[NSAutoreleasePool alloc] init])
50 m_pool = [[NSAutoreleasePool alloc] init];
  /bootable/bootloader/legacy/libc/
malloc.c 33 void *alloc(unsigned sz) function
47 return alloc(sz);
  /external/grub/stage2/
vstafs.h 43 struct alloc struct
55 struct alloc fs_freesecs[0];
76 struct alloc blocks[32];
  /external/webkit/JavaScriptCore/API/
JSStringRefCF.h 50 @param alloc The alloc parameter to pass to CFStringCreate.
54 JS_EXPORT CFStringRef JSStringCopyCFString(CFAllocatorRef alloc, JSStringRef string);
  /external/webkit/WebKit/mac/Storage/
WebDatabaseTrackerClient.mm 56 RetainPtr<WebSecurityOrigin> webSecurityOrigin(AdoptNS, [[WebSecurityOrigin alloc] _initWithWebCoreSecurityOrigin:origin]);
64 RetainPtr<WebSecurityOrigin> webSecurityOrigin(AdoptNS, [[WebSecurityOrigin alloc] _initWithWebCoreSecurityOrigin:origin]);
65 RetainPtr<NSDictionary> userInfo(AdoptNS, [[NSDictionary alloc]
  /external/skia/include/core/
SkChunkAlloc.h 44 void* alloc(size_t bytes, AllocFailType);
46 return this->alloc(bytes, kThrow_AllocFailType);
49 /** Call this to unalloc the most-recently allocated ptr by alloc(). On
SkMaskFilter.h 85 SkAutoMaskImage(SkMask* mask, bool alloc)
87 if (alloc)
  /external/webkit/WebCore/platform/text/mac/
TextBoundaries.mm 35 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(chars)
37 NSAttributedString* attr = [[NSAttributedString alloc] initWithString:string];
47 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(chars)
49 NSAttributedString* attr = [[NSAttributedString alloc] initWithString:string];
  /bionic/libc/kernel/common/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /development/ndk/platforms/android-3/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /external/webkit/WebKit/mac/WebCoreSupport/
WebIconDatabaseClient.mm 38 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
46 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s

Completed in 677 milliseconds

1 2 3 4 5 6 7 8 91011>>