OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CLAMP
(Results
1 - 6
of
6
) sorted by relevancy
/src/sys/kern/
tty.c
2626
#define
CLAMP
(x, h, l) ((x) > h ? h : ((x) < l) ? l : (x))
2629
tp->t_lowat = x =
CLAMP
(cps / 2, TTMAXLOWAT, TTMINLOWAT);
2631
x =
CLAMP
(x, TTMAXHIWAT, TTMINHIWAT);
2633
#undef
CLAMP
/src/external/gpl3/gdb/dist/sim/bfin/
bfin-sim.h
369
#undef
CLAMP
370
#define
CLAMP
(a, b, c) min (max (a, b), c)
/src/external/gpl3/gdb.old/dist/sim/bfin/
bfin-sim.h
369
#undef
CLAMP
370
#define
CLAMP
(a, b, c) min (max (a, b), c)
/src/external/mit/isl/dist/imath/
imath.c
111
static inline void
CLAMP
(mp_int z_) {
353
CLAMP
(Z);
363
CLAMP
(Z);
585
CLAMP
(c);
648
CLAMP
(c);
709
CLAMP
(c); /* ... right here */
768
CLAMP
(c); /* ... right here */
1544
CLAMP
(z);
2143
CLAMP
(a);
2184
CLAMP
(z)
[
all
...]
/src/external/bsd/ntp/dist/include/
ntp.h
719
/*
clamp
a value within a range */
720
#define
CLAMP
(val, minval, maxval) \
/src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c
1403
# define
CLAMP
(cParam, val) CLAMP_TYPE(cParam, val, unsigned)
1404
CLAMP
(ZSTD_c_windowLog, cParams.windowLog);
1405
CLAMP
(ZSTD_c_chainLog, cParams.chainLog);
1406
CLAMP
(ZSTD_c_hashLog, cParams.hashLog);
1407
CLAMP
(ZSTD_c_searchLog, cParams.searchLog);
1408
CLAMP
(ZSTD_c_minMatch, cParams.minMatch);
1409
CLAMP
(ZSTD_c_targetLength,cParams.targetLength);
Completed in 23 milliseconds
Indexes created Fri Mar 06 19:51:54 UTC 2026