Searched refs:water (Results 1 - 18 of 18) sorted by relevance

/netbsd-current/games/adventure/
H A Dmain.c234 if (liqloc(loc) == water)
237 (weq(wd2, "strea") || weq(wd2, "water")))
241 if ((!weq(wd1, "water") && !weq(wd1, "oil"))
570 if (obj != oil && obj != water)
585 if (obj != water)
601 if (obj == 0 && liqloc(loc) != water && (liq() != water
604 if (obj != 0 && obj != water)
606 if (spk == 110 || liq() != water || !here(bottle))
609 place[water]
[all...]
H A Ddone.c158 place[water] = 0;
H A Dhdr.h139 magazine, dwarf, knife, food, bottle, water, oil, plant, plant2,
H A Dinit.c111 magazine, dwarf, knife, food, bottle, water, oil, plant, plant2, variable
206 water = vocab(DECR('w', 'a', 't', 'e', 'r'), 1, 0);
H A Dsubr.c92 return ((1 - pbotl) * water + (pbotl / 2) * (water + oil));
586 if (obj == water || obj == oil) {
/netbsd-current/external/bsd/ntp/dist/lib/isc/
H A Dmem_api.c182 isc_mem_setwater(isc_mem_t *ctx, isc_mem_water_t water, void *water_arg, argument
187 ctx->methods->setwater(ctx, water, water_arg, hiwater, lowater);
H A Dmem.c150 isc_mem_water_t water; member in struct:isc__mem
185 element *items; /*%< low water item list */
278 isc__mem_setwater(isc_mem_t *ctx, isc_mem_water_t water, void *water_arg,
949 ctx->water = NULL;
1309 (ctx->water)(ctx->water_arg, ISC_MEM_HIWATER);
1358 if (ctx->water != NULL)
1364 (ctx->water)(ctx->water_arg, ISC_MEM_LOWATER);
1567 (ctx->water)(ctx->water_arg, ISC_MEM_HIWATER);
1651 if (ctx->water != NULL)
1657 (ctx->water)(ct
1743 isc__mem_setwater(isc_mem_t *ctx0, isc_mem_water_t water, void *water_arg, size_t hiwater, size_t lowater) argument
[all...]
/netbsd-current/external/mpl/bind/dist/lib/isc/
H A Dmem.c155 isc_mem_water_t water; member in struct:isc_mem
178 element *items; /*%< low water item list */
747 if (ctx->water != NULL && hi_water(ctx)) { \
748 (ctx->water)(ctx->water_arg, ISC_MEM_HIWATER); \
754 if ((ctx->water != NULL) && lo_water(ctx)) { \
755 (ctx->water)(ctx->water_arg, ISC_MEM_LOWATER); \
789 /* We are over water (for the first time) */
993 * We want to postpone the call to water in edge case
995 * the water and we would call water twic
1150 isc_mem_setwater(isc_mem_t *ctx, isc_mem_water_t water, void *water_arg, size_t hiwater, size_t lowater) argument
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/
H A Dmem.c165 isc_mem_water_t water; member in struct:isc__mem
196 element *items; /*%< low water item list */
806 ctx->water = NULL;
1095 if (call_water && (ctx->water != NULL)) {
1096 (ctx->water)(ctx->water_arg, ISC_MEM_HIWATER);
1152 if (call_water && (ctx->water != NULL)) {
1153 (ctx->water)(ctx->water_arg, ISC_MEM_LOWATER);
1343 (ctx->water)(ctx->water_arg, ISC_MEM_HIWATER);
1436 if (ctx->water != NULL) {
1443 (ctx->water)(ct
1556 isc_mem_setwater(isc_mem_t *ctx0, isc_mem_water_t water, void *water_arg, size_t hiwater, size_t lowater) argument
[all...]
/netbsd-current/external/bsd/ntp/dist/lib/isc/include/isc/
H A Dmem.h225 void (*setwater)(isc_mem_t *ctx, isc_mem_water_t water,
435 isc_mem_setwater(isc_mem_t *mctx, isc_mem_water_t water, void *water_arg,
438 * Set high and low water marks for this memory context.
441 * '(water)(water_arg, #ISC_MEM_HIWATER)' will be called. 'water' needs to
443 * change. 'water' may be called multiple times.
445 * When the usage drops below 'lowater', 'water' will again be called, this
446 * time with #ISC_MEM_LOWATER. 'water' need to calls isc_mem_waterack() with
450 * water(void *arg, int mark) {
462 * If 'water' i
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
H A Dmem.h357 isc_mem_setwater(isc_mem_t *mctx, isc_mem_water_t water, void *water_arg,
360 * Set high and low water marks for this memory context.
363 * '(water)(water_arg, #ISC_MEM_HIWATER)' will be called. 'water' needs to
365 * change. 'water' may be called multiple times.
367 * When the usage drops below 'lowater', 'water' will again be called, this
368 * time with #ISC_MEM_LOWATER. 'water' need to calls isc_mem_waterack() with
372 * water(void *arg, int mark) {
384 * If 'water' is NULL then 'water_arg', 'hi_water' and 'lo_water' are
389 * 'water' i
[all...]
/netbsd-current/external/mpl/bind/dist/bin/tests/system/tcp/
H A Dtests.sh74 # -------- TCP high-water tests ----------
79 TCP_HIGH="$(sed -n "s/^TCP high-water: \([0-9][0-9]*\)/\1/p" rndc.out.$n)"
115 echo_i "TCP high-water: check initial statistics ($n)"
126 # Ensure the TCP high-water statistic gets updated after some TCP connections
129 echo_i "TCP high-water: check value after some TCP connections are established ($n)"
137 assert_int_equal "${TCP_HIGH}" $((OLD_TCP_CUR + TCP_ADDED)) "TCP high-water value" || return 1
143 # Ensure the TCP high-water statistic remains unchanged after some TCP
146 echo_i "TCP high-water: check value after some TCP connections are closed ($n)"
155 assert_int_equal "${TCP_HIGH}" "${OLD_TCP_HIGH}" "TCP high-water value" || return 1
161 # Ensure the TCP high-water statisti
[all...]
/netbsd-current/external/mpl/bind/dist/lib/isc/include/isc/
H A Dmem.h319 isc_mem_setwater(isc_mem_t *mctx, isc_mem_water_t water, void *water_arg,
322 * Set high and low water marks for this memory context.
325 * '(water)(water_arg, #ISC_MEM_HIWATER)' will be called. 'water' needs
327 * state change. 'water' may be called multiple times.
329 * When the usage drops below 'lowater', 'water' will again be called,
330 * this time with #ISC_MEM_LOWATER. 'water' need to calls
334 * water(void *arg, int mark) {
346 * if 'water' is set to NULL, the 'hiwater' and 'lowater' must set to 0, and
347 * high- and low-water processin
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/
H A Dcache.c106 * the lock is take by water() which is called from the memory
903 water(void *arg, int mark) { function
950 * water().
957 isc_mem_setwater(cache->mctx, water, cache, 0, 0);
963 isc_mem_setwater(cache->mctx, water, cache, hiwater, lowater);
H A Dadb.c374 water(void *, int);
2888 isc_mem_setwater(adb->mctx, water, adb, 0, 0);
4813 water(void *arg, int mark) { function
4827 DP(ISC_LOG_DEBUG(1), "adb reached %s water mark",
4845 isc_mem_setwater(adb->mctx, water, adb, 0, 0);
4847 isc_mem_setwater(adb->mctx, water, adb, hiwater, lowater);
/netbsd-current/external/mpl/bind/dist/lib/dns/
H A Dcache.c105 * the lock is take by water() which is called from the memory
169 water(void *arg, int mark);
818 water(void *arg, int mark) { function
865 * water().
878 isc_mem_setwater(cache->mctx, water, cache, hiwater, lowater);
H A Dadb.c368 water(void *, int);
4671 water(void *arg, int mark) { function
4685 DP(ISC_LOG_DEBUG(1), "adb reached %s water mark",
4705 isc_mem_setwater(adb->mctx, water, adb, hiwater, lowater);
/netbsd-current/external/gpl2/xcvs/dist/
H A Dconfigure1408 optionally pass a low water mark in bytes and a high
1409 water mark in bytes, separated by commas. (default

Completed in 231 milliseconds