Home
last modified time | relevance | path

Searched refs:block (Results 1 – 25 of 123) sorted by relevance

12345

/l4re-core-master/lua/lib/contrib/src/
A Dlmem.c35 return (*g->frealloc)(g->ud, block, os, ns); in firsttry()
38 #define firsttry(g,block,os,ns) ((*g->frealloc)(g->ud, block, os, ns)) argument
84 return block; /* nothing to be done */ in luaM_growaux_()
116 newblock = luaM_saferealloc_(L, block, oldsize, newsize); in luaM_shrinkvector_()
134 lua_assert((osize == 0) == (block == NULL)); in luaM_free_()
135 (*g->frealloc)(g->ud, block, osize, 0); in luaM_free_()
148 static void *tryagain (lua_State *L, void *block, in tryagain() argument
165 lua_assert((osize == 0) == (block == NULL)); in luaM_realloc_()
166 newblock = firsttry(g, block, osize, nsize); in luaM_realloc_()
168 newblock = tryagain(L, block, osize, nsize); in luaM_realloc_()
[all …]
A Dlmem.h80 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
82 LUAI_FUNC void *luaM_saferealloc_ (lua_State *L, void *block, size_t oldsize,
84 LUAI_FUNC void luaM_free_ (lua_State *L, void *block, size_t osize);
85 LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int nelems,
88 LUAI_FUNC void *luaM_shrinkvector_ (lua_State *L, void *block, int *nelem,
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/malloc/
A Dmalloc.c86 void *block; in __malloc_from_heap() local
99 block = sbrk (block_size); in __malloc_from_heap()
100 if (likely (block != (void *)-1)) in __malloc_from_heap()
105 if (block != (void *)aligned_block) in __malloc_from_heap()
112 sbrk (aligned_block - (long)block); in __malloc_from_heap()
113 block = (void *)aligned_block; in __malloc_from_heap()
132 if (likely (block != (void *)-1)) in __malloc_from_heap()
139 (long)block, (long)block + block_size, block_size); in __malloc_from_heap()
145 __heap_free (heap, block, block_size); in __malloc_from_heap()
162 if (block < mmb->mem) in __malloc_from_heap()
[all …]
/l4re-core-master/cxx/lib/tl/include/
A Dlist_alloc61 * \param block Pointer to memory block.
73 * Allocate a memory block.
238 block = (void*)nblock;
244 check_overlap(block, size);
251 while (*c && *c < block)
257 *c = (Mem_block*)block;
316 // block too small
401 // block too small
409 // block
415 // previous block
[all …]
/l4re-core-master/moe/server/src/
A Dmalloc.cc70 void free(void *block) throw() in free() argument
72 assert(block >= start_data() && block < end_data()); in free()
74 unsigned char freeidx = index_of(block); in free()
153 Moe::Malloc_container::free(void *block) throw() in free() argument
156 printf("Malloc[%p]: free(%p)\n", this, block); in free()
158 auto *pg = Malloc_page::from_ptr(block); in free()
166 pg->free(block); in free()
A Dmalloc.h62 void free(void *block) throw();
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Dptfork.c72 struct handler_list_block * block = in pthread_atfork() local
74 if (block == NULL) return ENOMEM; in pthread_atfork()
77 pthread_insert_list(&pthread_atfork_prepare, prepare, &block->prepare, 0); in pthread_atfork()
79 pthread_insert_list(&pthread_atfork_parent, parent, &block->parent, 1); in pthread_atfork()
81 pthread_insert_list(&pthread_atfork_child, child, &block->child, 1); in pthread_atfork()
/l4re-core-master/l4util/lib/src/
A Dlist_alloc.c114 l4la_free(l4la_free_t **first, void *block, l4_size_t size) in l4la_free() argument
120 __check_overlap(first, block, size); in l4la_free()
126 while (*c && *c < (l4la_free_t*)block) in l4la_free()
132 assert(*c != block); in l4la_free()
133 *c = (l4la_free_t*)block; in l4la_free()
A Dllulc.cc71 void block() throw() in block() function in Lock
265 tl->block(); in l4ullulock_lock()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/bits/
A Dstab.def138 /* Beginning of lexical block.
140 The value is the address of the start of the text for the block.
141 The variables declared inside the block *precede* the N_LBRAC symbol. */
153 /* End of a lexical block. Desc matches the N_LBRAC's desc.
154 The value is the address of the end of the text for the block. */
157 /* Begin named common block. Only the name is significant. */
160 /* End named common block. Only the name is significant
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/malloc-standard/
A Dmalloc.c819 unsigned int block; /* bit map traverser */ in malloc() local
1054 block = idx2block(idx); in malloc()
1055 map = av->binmap[block]; in malloc()
1063 if (++block >= BINMAPSIZE) /* out of bins */ in malloc()
1065 } while ( (map = av->binmap[block]) == 0); in malloc()
1067 bin = bin_at(av, (block << BINMAPSHIFT)); in malloc()
1083 av->binmap[block] = map &= ~bit; /* Write through */ in malloc()
/l4re-core-master/uclibc/lib/contrib/uclibc/libcrypt/
A Dcrypt_stub.c26 encrypt(char *block attribute_unused, int flag attribute_unused) in encrypt()
A Ddes.c603 encrypt(char *block, int flag) in encrypt() argument
612 p = (u_char*)block; in encrypt()
622 block[(i << 5) | j] = (io[i] & bits32[j]) ? 1 : 0; in encrypt()
/l4re-core-master/lua/lib/contrib/doc/
A Dlua.css89 display: block ;
151 display: block ;
/l4re-core-master/l4util/include/
A Dlist_alloc.h37 L4_CV void l4la_free(l4la_free_t **first, void *block, l4_size_t size);
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/std/
A Dshared_mutex69 // To take a reader lock, block on gate1 while the write-entered flag is
77 // To take a writer lock, block on gate1 while the write-entered flag is
78 // set, then set the write-entered flag to start queueing, then block on
90 // Used to block while write-entered is set or reader count at maximum.
92 // Used to block queued writers while reader count is non-zero.
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/std/
A Dshared_mutex233 // intentionally block and timeout so that an early return isn't
276 // To take a reader lock, block on gate1 while the write-entered flag is
284 // To take a writer lock, block on gate1 while the write-entered flag is
285 // set, then set the write-entered flag to start queueing, then block on
297 // Used to block while write-entered is set or reader count at maximum.
299 // Used to block queued writers while reader count is non-zero.
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/
A Dkconfig-language.txt118 false, the menu block is not displayed to the user (the symbols
215 All entries within the "menu" ... "endmenu" block become a submenu of
279 <choice block>
309 <menu block>
312 This defines a menu block, see "Menu structure" above for more
319 <if block>
322 This defines an if block. The dependency expression <expr> is appended
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/filesystem/
A Ddir-common.h122 return file_type::block; in _GLIBCXX_VISIBILITY()
A Dops-common.h111 return file_type::block; in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/std/
A Dshared_mutex182 // To take a reader lock, block on gate1 while the write-entered flag is
190 // To take a writer lock, block on gate1 while the write-entered flag is
191 // set, then set the write-entered flag to start queueing, then block on
203 // Used to block while write-entered is set or reader count at maximum.
205 // Used to block queued writers while reader count is non-zero.
466 // intentionally block and timeout so that an early return isn't
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/std/
A Dshared_mutex184 // To take a reader lock, block on gate1 while the write-entered flag is
192 // To take a writer lock, block on gate1 while the write-entered flag is
193 // set, then set the write-entered flag to start queueing, then block on
205 // Used to block while write-entered is set or reader count at maximum.
207 // Used to block queued writers while reader count is non-zero.
468 // intentionally block and timeout so that an early return isn't
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/std/
A Dshared_mutex182 // To take a reader lock, block on gate1 while the write-entered flag is
190 // To take a writer lock, block on gate1 while the write-entered flag is
191 // set, then set the write-entered flag to start queueing, then block on
203 // Used to block while write-entered is set or reader count at maximum.
205 // Used to block queued writers while reader count is non-zero.
466 // intentionally block and timeout so that an early return isn't
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/std/
A Dshared_mutex265 // To take a reader lock, block on gate1 while the write-entered flag is
273 // To take a writer lock, block on gate1 while the write-entered flag is
274 // set, then set the write-entered flag to start queueing, then block on
286 // Used to block while write-entered is set or reader count at maximum.
288 // Used to block queued writers while reader count is non-zero.
549 // intentionally block and timeout so that an early return isn't
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/std/
A Dshared_mutex272 // To take a reader lock, block on gate1 while the write-entered flag is
280 // To take a writer lock, block on gate1 while the write-entered flag is
281 // set, then set the write-entered flag to start queueing, then block on
293 // Used to block while write-entered is set or reader count at maximum.
295 // Used to block queued writers while reader count is non-zero.
605 // intentionally block and timeout so that an early return isn't

Completed in 42 milliseconds

12345