Searched refs:nsize (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlmem.c26 ** void * frealloc (void *ud, void *ptr, size_t osize, size_t nsize);
27 ** (`osize' is the old size, `nsize' is the new size)
75 void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) { argument
81 if (nsize > realosize && g->gcrunning)
84 newblock = (*g->frealloc)(g->ud, block, osize, nsize);
85 if (newblock == NULL && nsize > 0) {
86 api_check(L, nsize > realosize,
90 newblock = (*g->frealloc)(g->ud, block, osize, nsize); /* try again */
95 lua_assert((nsize == 0) == (newblock == NULL));
96 g->GCdebt = (g->GCdebt + nsize)
[all...]
H A Dloadlib.c171 DWORD nsize = sizeof(buff)/sizeof(char); local
172 DWORD n = GetModuleFileNameA(NULL, buff, nsize);
173 if (n == 0 || n == nsize || (lb = strrchr(buff, '\\')) == NULL)
H A Dltable.c338 int nsize = isdummy(t->node) ? 0 : sizenode(t); local
339 luaH_resize(L, t, nasize, nsize);
H A Dlauxlib.c919 static void *l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) { argument
921 if (nsize == 0) {
926 return realloc(ptr, nsize);
H A Dlua.h70 typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
/external/oprofile/libutil++/
H A Dop_spu_bfd.cpp117 unsigned int nsize, dsize, type; local
118 nsize = *((unsigned int *) sec_contents);
124 remainder = nsize % 4;
127 desc_start = 12 + nsize + name_pad_length;
132 note_record_length = 12 + nsize +
/external/oprofile/daemon/liblegacy/
H A Dinit.c118 * @param nsize size of note buffer
120 static void opd_shutdown(struct op_buffer_head * buf, size_t size, struct op_note * nbuf, size_t nsize) argument
134 ncount = op_read_device(notedevfd, nbuf, nsize);
160 * @param nsize size of note buffer
165 static void opd_do_read(struct op_buffer_head * buf, size_t size, struct op_note * nbuf, size_t nsize) argument
176 ncount = op_read_device(notedevfd, nbuf, nsize);
199 opd_shutdown(buf, size, nbuf, nsize);
/external/valgrind/main/perf/
H A Dffbench.c242 static int nsize[] = {0, 0, 0}; local
249 nsize[1] = nsize[2] = faedge;
273 fourn(fdata, nsize, 2, 1);
276 fourn(fdata, nsize, 2, -1);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
H A Dprobslet.h69 PRUint32 nsize; member in struct:PR_fd_set
/external/ltrace/
H A Dglob.c85 size_t nsize = *sizep + str_size; local
86 if (nsize > *allocp) {
87 size_t nalloc = nsize * 2;
96 *sizep = nsize;
/external/kernel-headers/original/uapi/linux/
H A Djffs2.h126 __u8 nsize; member in struct:jffs2_raw_dirent
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c3300 size_t nsize = chunksize(oldfirst); local
3301 unlink_chunk(m, oldfirst, nsize);
3302 oldfirst = chunk_plus_offset(oldfirst, nsize);
3303 qsize += nsize;
4275 size_t nsize = chunksize(next); local
4276 psize += nsize;
4277 unlink_chunk(fm, next, nsize);
4676 size_t nsize = chunksize(next); local
4677 psize += nsize;
4678 unlink_chunk(fm, next, nsize);
[all...]

Completed in 4963 milliseconds