Searched refs:newsize (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/libnrtype/
H A DLayout-TNG-Output.cpp61 int newsize=slen + 1 + 7 + 7*ndx + 1 + 7 + 7 + 2; local
62 newsize = 8*((7 + newsize)/8); // suppress valgrind messages if it is a multiple of 8 bytes???
63 char *smuggle=(char *)malloc(newsize);
/inkscape/src/libuemf/
H A Duemf.c1435 size_t newsize; local
1442 newsize=eht->allocated + eht->chunk;
1443 eht->table = realloc(eht->table,newsize * sizeof(uint32_t));
1447 eht->stack = realloc(eht->stack,newsize * sizeof(uint32_t));
1449 for(i=eht->allocated; i<newsize;i++){ eht->stack[i] = i; } // init all NEW slots in the stack
1450 eht->allocated = newsize;
H A Duwmf.c1797 size_t newsize; local
1803 newsize=wht->allocated + wht->chunk;
1804 wht->table = realloc(wht->table,newsize * sizeof(uint32_t));
1807 wht->allocated = newsize;

Completed in 55 milliseconds