Home
last modified time | relevance | path

Searched refs:pmem_next (Results 1 – 2 of 2) sorted by relevance

/third_party/FreeBSD/contrib/gdtoa/
Dmisc.c40 static double private_mem[PRIVATE_mem], *pmem_next = private_mem; variable
70 if (k <= Kmax && pmem_next - private_mem + len <= PRIVATE_mem) {
71 rv = (Bigint*)pmem_next;
72 pmem_next += len;
/third_party/python/Python/
Ddtoa.c177 static double private_mem[PRIVATE_mem], *pmem_next = private_mem; variable
371 if (k <= Kmax && pmem_next - private_mem + len <= (Py_ssize_t)PRIVATE_mem) { in Balloc()
372 rv = (Bigint*)pmem_next; in Balloc()
373 pmem_next += len; in Balloc()