Searched defs:nalloc (Results 1 - 16 of 16) sorted by relevance

/external/syslinux/com32/sysdump/
H A Dmemmap.c23 int nentry, nalloc; local
28 nentry = nalloc = 0;
44 if (nentry >= nalloc) {
45 nalloc += E820_CHUNK;
46 buf = realloc(buf, nalloc*sizeof *buf);
H A Dcpuid.c45 int nentry, nalloc; local
57 nentry = nalloc = 0;
78 if (nentry >= nalloc) {
79 nalloc += CPUID_CHUNK;
80 buf = realloc(buf, nalloc*sizeof *buf);
/external/expat/tests/
H A Dminicheck.c62 int nalloc = tc->allocated + 100; local
63 size_t new_size = sizeof(tcase_test_function) * nalloc;
70 tc->allocated = nalloc;
/external/openssh/
H A Dmisc.h70 u_int nalloc; member in struct:arglist
H A Dmisc.c459 u_int nalloc; local
468 nalloc = args->nalloc;
470 nalloc = 32;
472 } else if (args->num+2 >= nalloc)
473 nalloc *= 2;
475 args->list = xreallocarray(args->list, nalloc, sizeof(char *));
476 args->nalloc = nalloc;
510 args->nalloc
[all...]
H A Dserverloop.c563 u_int nalloc = 0; local
709 &nalloc, max_time_milliseconds);
828 u_int nalloc = 0; local
864 &nalloc, rekey_timeout_ms);
H A Dssh-agent.c1177 u_int nalloc; local
1403 nalloc = 0;
1406 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc, &tvp);
H A Dclientloop.c1488 u_int nalloc = 0; local
1605 &max_fd2, &nalloc, rekeying);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_sanity.c609 int nalloc; member in struct:reg
658 if (j == reg->nalloc) {
659 reg->nalloc += 5;
660 reg->nalloc *= 2;
662 reg->nalloc * sizeof(union fi) );
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_sanity.c331 int nalloc; member in struct:reg
380 if (j == reg->nalloc) {
381 reg->nalloc += 5;
382 reg->nalloc *= 2;
384 reg->nalloc * sizeof(union fi) );
/external/regex-re2/re2/
H A Donepass.cc411 int nalloc = 1; local
450 if (nalloc >= maxnodes) {
454 nalloc, maxnodes);
457 nextindex = nalloc;
460 nalloc++;
593 nodep = new uint8[nalloc*statesize];
594 memmove(nodep, nodes, nalloc*statesize);
601 dfa_mem_ -= nalloc*statesize;
/external/valgrind/coregrind/m_debuginfo/
H A Dlzoconf.h312 lzo_alloc_func_t nalloc; /* [not used right now] */ member in struct:lzo_callback_t
318 /* NOTE: the first parameter "self" of the nalloc/nfree/nprogress
/external/libvncserver/common/
H A Dlzoconf.h282 lzo_alloc_func_t nalloc; /* [not used right now] */ member in struct:lzo_callback_t
288 /* INFO: the first parameter "self" of the nalloc/nfree/nprogress
/external/syslinux/lzo/include/lzo/
H A Dlzoconf.h282 lzo_alloc_func_t nalloc; /* [not used right now] */ member in struct:lzo_callback_t
288 /* INFO: the first parameter "self" of the nalloc/nfree/nprogress
/external/elfutils/src/
H A Dunstrip.c938 struct section sections[], size_t nalloc)
941 size_t l = 0, u = nalloc;
955 for (; i < nalloc && sections[i].shdr.sh_addr == addr;
984 size_t nalloc, size_t nsections)
987 for (size_t i = nalloc; i < nsections; ++i)
1005 for (size_t i = 0; i < nalloc; ++i)
1142 for (size_t i = 0; shdr != NULL && i < nalloc; ++i)
1162 for (size_t j = 0; j < nalloc; ++j)
1328 size_t nalloc = stripped_shnum - 1;
1329 while (nalloc >
935 find_alloc_section(const GElf_Shdr *shdr, GElf_Addr bias, const char *name, struct section sections[], size_t nalloc) argument
978 find_alloc_sections_prelink(Elf *debug, Elf_Data *debug_shstrtab, Elf *main, const GElf_Ehdr *main_ehdr, Elf_Data *main_shstrtab, GElf_Addr bias, struct section *sections, size_t nalloc, size_t nsections) argument
1326 size_t nalloc = stripped_shnum - 1; local
[all...]
/external/ltp/testcases/kernel/fs/doio/
H A Ddoio.c5244 int nalloc; local
5255 nalloc = string_to_tokens(arg, allocargs, 32, ":");
5262 if (nalloc >= 2) {
5271 if (nalloc >= 1) {
5294 if (nalloc > 2) {
5315 if (nalloc >= 2) {
5320 if (nalloc >= 3) {
5325 if (nalloc >= 4) {

Completed in 742 milliseconds