Searched defs:alloc (Results 1 - 25 of 188) sorted by last modified time

12345678

/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon33737
239 if (c->alloc < max + 1) {
317 if (c->alloc < max) {
393 a->alloc = MP_PREC;
417 a->alloc = a->used = 0;
967 if (a->alloc < 2) {
1122 for (n = 0; n < a->alloc; n++) {
1139 if (b->alloc < a->used) {
1269 /* if the alloc size is smaller alloc mor
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon33990
239 if (c->alloc < max + 1) {
317 if (c->alloc < max) {
393 a->alloc = MP_PREC;
417 a->alloc = a->used = 0;
967 if (a->alloc < 2) {
1122 for (n = 0; n < a->alloc; n++) {
1139 if (b->alloc < a->used) {
1269 /* if the alloc size is smaller alloc mor
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon34241
239 if (c->alloc < max + 1) {
317 if (c->alloc < max) {
393 a->alloc = MP_PREC;
417 a->alloc = a->used = 0;
967 if (a->alloc < 2) {
1122 for (n = 0; n < a->alloc; n++) {
1139 if (b->alloc < a->used) {
1269 /* if the alloc size is smaller alloc mor
[all...]
/external/valgrind/main/coregrind/
H A Dm_oset.c115 OSetAlloc_t alloc; // allocator member in struct:_OSet
305 t->alloc = _alloc;
335 t->alloc,
349 t = os->alloc(os->cc, sizeof(AvlTree));
352 t->alloc = os->alloc;
437 n = t->alloc( t->cc, nodeSize );
H A Dm_poolalloc.c39 void* (*alloc)(const HChar*, SizeT); /* pool allocator */ member in struct:_PoolAlloc
53 void* (*alloc)(const HChar*, SizeT),
61 vg_assert(alloc);
64 pa = alloc(cc, sizeof(*pa));
71 pa->alloc = alloc;
74 pa->pools = VG_(newXA)( alloc, cc, free_fn, sizeof(void*) );
99 pool = pa->alloc( pa->cc, pa->elemSzB * pa->nPerPool );
H A Dm_rangemap.c51 void* (*alloc) ( const HChar*, SizeT ); /* alloc fn (nofail) */ member in struct:_RangeMap
52 const HChar* cc; /* cost centre for alloc */
75 rm->alloc = alloc_fn;
H A Dm_xarray.c41 void* (*alloc) ( const HChar*, SizeT ); /* alloc fn (nofail) */ member in struct:_XArray
42 const HChar* cc; /* cost centre for alloc */
70 xa->alloc = alloc_fn;
88 vg_assert(xa->alloc);
92 nyu = xa->alloc( nyu_cc, sizeof(struct _XArray) );
107 nyu->arr = nyu->alloc( nyu->cc, nyu->totsizeE * nyu->elemSzB );
170 tmp = xa->alloc(xa->cc, newsz * xa->elemSzB);
/external/valgrind/main/helgrind/
H A Dhg_wordset.c151 void* (*alloc)(const HChar*,SizeT); member in struct:_WordSetU
190 wv = wsu->alloc( wsu->cc, sizeof(WordVec) );
195 wv->words = wsu->alloc( wsu->cc, (SizeT)sz * sizeof(UWord) );
248 new_vec = wsu->alloc( wsu->cc, new_sz * sizeof(WordVec*) );
366 wsu->alloc = alloc_nofail;
/external/sqlite/dist/orig/
H A Dsqlite3.c16630 char nBacktrace; /* Number of backtraces on this alloc */
62077 struct ValueNewStat4Ctx alloc; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c16630 char nBacktrace; /* Number of backtraces on this alloc */
62097 struct ValueNewStat4Ctx alloc; local
[all...]
/external/srtp/crypto/include/
H A Dauth.h75 ((at)->alloc((a), (klen), (outlen)))
122 auth_alloc_func alloc; member in struct:auth_type_t
H A Dcipher.h140 cipher_alloc_func_t alloc; member in struct:cipher_type_t
168 #define cipher_type_alloc(ct, c, klen) ((ct)->alloc((c), (klen)))
/external/skia/src/core/
H A DSkChunkAlloc.cpp94 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) { function in class:SkChunkAlloc
H A DSkEdgeBuilder.cpp15 template <typename T> static T* typedAllocThrow(SkChunkAlloc& alloc) { argument
16 return static_cast<T*>(alloc.allocThrow(sizeof(T)));
H A DSkRecord.h19 // Though an enterprising user may find calling alloc(), append(), visit(), and mutate() enough to
67 T* alloc(unsigned count = 1) { function in class:SkRecord
176 SK_WHEN(!SkTIsEmpty<T>, T*) allocCommand() { return this->alloc<T>(); }
/external/skia/src/gpu/
H A DGrAllocPool.cpp35 void* alloc(size_t bytes) { function in struct:GrAllocPool::Block
79 void* GrAllocPool::alloc(size_t size) { function in class:GrAllocPool
87 return fBlock->alloc(size);
H A DGrAllocPool.h19 * Frees all blocks that have been allocated with alloc().
28 void* alloc(size_t bytes);
54 T* alloc() { return (T*)fPool.alloc(sizeof(T)); } function in class:GrTAllocPool
/external/skia/src/images/
H A DSkImageDecoder.cpp113 SkBitmap::Allocator* SkImageDecoder::setAllocator(SkBitmap::Allocator* alloc) { argument
114 SkRefCnt_SafeAssign(fAllocator, alloc);
115 return alloc;
/external/skia/tests/
H A DReadPixelsTest.cpp98 SkDEBUGCODE(bool alloc =) bmp.allocN32Pixels(DEV_W, DEV_H);
99 SkASSERT(alloc);
224 bool alloc = true; local
227 alloc = false;
238 if (alloc) {
H A DSmallAllocatorTest.cpp32 SkSmallAllocator<kMaxObjects, kBytes> alloc; local
34 CountingClass* c = alloc.template createT<CountingClass>();
78 SkSmallAllocator<1, 8> alloc; local
80 DummyContainer* container = alloc.createT<DummyContainer>(&d);
/external/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.h34 TYPE* alloc(int size) { function in class:android::uirenderer::VertexBuffer
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeTokenizer.h109 void* alloc(size_t bytes) { function in class:SkPdfAllocator
/external/skia/include/core/
H A DSkTypes.h639 bool alloc = size != fSize && (SkAutoMalloc::kAlloc_OnShrink == shrink || size > fSize); local
641 *didChangeAlloc = alloc;
643 if (alloc) {
/external/qemu/distrib/ext4_utils/src/
H A Dallocate.c70 struct block_allocation *alloc = malloc(sizeof(struct block_allocation)); local
71 alloc->list.first = NULL;
72 alloc->list.last = NULL;
73 alloc->oob_list.first = NULL;
74 alloc->oob_list.last = NULL;
75 alloc->list.iter = NULL;
76 alloc->list.partial_iter = 0;
77 alloc->oob_list.iter = NULL;
78 alloc->oob_list.partial_iter = 0;
79 return alloc;
156 append_region(struct block_allocation *alloc, u32 block, u32 len, int bg_num) argument
256 reduce_allocation(struct block_allocation *alloc, u32 len) argument
452 struct block_allocation *alloc = create_allocation(); local
461 block_allocation_num_regions(struct block_allocation *alloc) argument
472 block_allocation_len(struct block_allocation *alloc) argument
484 get_block(struct block_allocation *alloc, u32 block) argument
497 get_oob_block(struct block_allocation *alloc, u32 block) argument
512 get_region(struct block_allocation *alloc, u32 *block, u32 *len) argument
519 get_next_region(struct block_allocation *alloc) argument
531 last_region(struct block_allocation *alloc) argument
536 rewind_alloc(struct block_allocation *alloc) argument
542 do_split_allocation(struct block_allocation *alloc, u32 len) argument
579 split_allocation(struct block_allocation *alloc, u32 len) argument
591 reserve_oob_blocks(struct block_allocation *alloc, int blocks) argument
631 advance_blocks(struct block_allocation *alloc, int blocks) argument
636 advance_oob_blocks(struct block_allocation *alloc, int blocks) argument
641 append_oob_allocation(struct block_allocation *alloc, u32 len) argument
761 free_alloc(struct block_allocation *alloc) argument
[all...]
H A Dextent.c29 static u8 *extent_create_backing(struct block_allocation *alloc, argument
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, argument
59 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
63 get_region(alloc, &region_block, &region_len);
78 struct block_allocation *alloc = allocate_blocks(block_len + 1); local
84 if (alloc
183 struct block_allocation *alloc; local
208 struct block_allocation *alloc; local
224 struct block_allocation *alloc; local
[all...]

Completed in 1966 milliseconds

12345678