Home
last modified time | relevance | path

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

/netbsd/src/external/bsd/ntp/dist/libntp/
Drecvbuff.c19 #if (RECV_BATCH & (RECV_BATCH - 1))
20 #error RECV_BATCH not a power of 2!
22 #if (RECV_BATCH < RECV_INC)
23 #error RECV_BATCH must be >= RECV_INC!
130 if (abuf < nbufs || abuf > RECV_BATCH) { in create_buffers()
131 abuf = RECV_BATCH; /* clamp on overflow */ in create_buffers()
/netbsd/src/external/bsd/ntp/dist/include/
Drecvbuff.h18 #define RECV_BATCH 128 /* [power of 2] max increment in one sweep */ macro