Home
last modified time | relevance | path

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

/third_party/FreeBSD/contrib/gdtoa/
H A Dmisc.c34 static Bigint *freelist[Kmax+1];
58 /* The k > Kmax case does not need ACQUIRE_DTOA_LOCK(0), */
60 if (k <= Kmax && (rv = freelist[k]) !=0) {
70 if (k <= Kmax && pmem_next - private_mem + len <= PRIVATE_mem) {
94 if (v->k > Kmax)
H A Dgdtoaimp.h485 #define Kmax 9 macro
/third_party/python/Python/
H A Ddtoa.c62 * Kmax.
301 #define Kmax 7 macro
336 /* Memory management: memory is allocated from, and returned to, Kmax+1 pools
337 of memory, where pool k (0 <= k <= Kmax) is for Bigints b with b->maxwds ==
346 For Bigints with more than (1 << Kmax) digits (which implies at least 1233
355 static Bigint *freelist[Kmax+1];
366 if (k <= Kmax && (rv = freelist[k])) in Balloc()
372 if (k <= Kmax && pmem_next - private_mem + len <= (Py_ssize_t)PRIVATE_mem) { in Balloc()
394 if (v->k > Kmax) in Bfree()

Completed in 7 milliseconds