HomeSort by relevance Sort by last modified time
    Searched refs:nalloc (Results 1 - 13 of 13) sorted by null

  /external/syslinux/com32/sysdump/
cpuid.c 45 int nentry, nalloc; local
57 nentry = nalloc = 0;
78 if (nentry >= nalloc) {
79 nalloc += CPUID_CHUNK;
80 buf = realloc(buf, nalloc*sizeof *buf);
memmap.c 23 int nentry, nalloc; local
28 nentry = nalloc = 0;
44 if (nentry >= nalloc) {
45 nalloc += E820_CHUNK;
46 buf = realloc(buf, nalloc*sizeof *buf);
  /external/expat/tests/
minicheck.c 92 int nalloc = tc->allocated + 100; local
93 size_t new_size = sizeof(tcase_test_function) * nalloc;
97 tc->allocated = nalloc;
  /prebuilts/go/darwin-x86/src/runtime/
mgcsweep.go 290 nalloc := uint16(s.countAlloc())
291 if spc.sizeclass() == 0 && nalloc == 0 {
295 nfreed := s.allocCount - nalloc
296 if nalloc > s.allocCount {
297 print("runtime: nelems=", s.nelems, " nalloc=", nalloc, " previous allocCount=", s.allocCount, " nfreed=", nfreed, "\n")
301 s.allocCount = nalloc
  /prebuilts/go/linux-x86/src/runtime/
mgcsweep.go 290 nalloc := uint16(s.countAlloc())
291 if spc.sizeclass() == 0 && nalloc == 0 {
295 nfreed := s.allocCount - nalloc
296 if nalloc > s.allocCount {
297 print("runtime: nelems=", s.nelems, " nalloc=", nalloc, " previous allocCount=", s.allocCount, " nfreed=", nfreed, "\n")
301 s.allocCount = nalloc
  /external/elfutils/src/
unstrip.c 938 struct section sections[], size_t nalloc)
941 size_t l = 0, u = nalloc;
955 for (; i < nalloc && sections[i].shdr.sh_addr == addr;
976 This fills in SECTIONS[0..NALLOC-1].outscn or exits.
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)
1326 size_t nalloc = stripped_shnum - 1; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_sanity.c 607 int nalloc; member in struct:reg
656 if (j == reg->nalloc) {
657 reg->nalloc += 5;
658 reg->nalloc *= 2;
659 reg->values = realloc( reg->values, reg->nalloc * sizeof(union fi) );
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_sanity.c 329 int nalloc; member in struct:reg
378 if (j == reg->nalloc) {
379 reg->nalloc += 5;
380 reg->nalloc *= 2;
381 reg->values = realloc( reg->values, reg->nalloc * sizeof(union fi) );
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
lzoconf.h 312 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
  /toolchain/binutils/binutils-2.27/binutils/
ieee.c 778 unsigned int nalloc; local
784 nalloc = info->types.alloc;
785 if (nalloc == 0)
786 nalloc = 4;
787 while (indx >= nalloc)
788 nalloc *= 2;
792 nalloc * sizeof *info->types.types));
795 (nalloc - info->types.alloc) * sizeof *info->types.types);
797 tend = info->types.types + nalloc;
801 info->types.alloc = nalloc;
4529 unsigned int nalloc; local
    [all...]
  /external/libvncserver/common/
lzoconf.h 282 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/
lzoconf.h 282 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/ltp/testcases/kernel/fs/doio/
doio.c 5244 int nalloc; local
    [all...]

Completed in 391 milliseconds