OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MIN
(Results
1 - 25
of
47
) sorted by relevancy
1
2
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
negvdi2.c
24
const di_int
MIN
= (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1);
25
if (a ==
MIN
)
negvsi2.c
24
const si_int
MIN
= (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
25
if (a ==
MIN
)
negvti2.c
26
const ti_int
MIN
= (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
27
if (a ==
MIN
)
mulodi4.c
25
const di_int
MIN
= (di_int)1 << (N-1);
26
const di_int MAX = ~
MIN
;
29
if (a ==
MIN
)
35
if (b ==
MIN
)
54
if (abs_a >
MIN
/ -abs_b)
mulosi4.c
25
const si_int
MIN
= (si_int)1 << (N-1);
26
const si_int MAX = ~
MIN
;
29
if (a ==
MIN
)
35
if (b ==
MIN
)
54
if (abs_a >
MIN
/ -abs_b)
muloti4.c
27
const ti_int
MIN
= (ti_int)1 << (N-1);
28
const ti_int MAX = ~
MIN
;
31
if (a ==
MIN
)
37
if (b ==
MIN
)
56
if (abs_a >
MIN
/ -abs_b)
mulvdi3.c
25
const di_int
MIN
= (di_int)1 << (N-1);
26
const di_int MAX = ~
MIN
;
27
if (a ==
MIN
)
33
if (b ==
MIN
)
52
if (abs_a >
MIN
/ -abs_b)
mulvsi3.c
25
const si_int
MIN
= (si_int)1 << (N-1);
26
const si_int MAX = ~
MIN
;
27
if (a ==
MIN
)
33
if (b ==
MIN
)
52
if (abs_a >
MIN
/ -abs_b)
mulvti3.c
27
const ti_int
MIN
= (ti_int)1 << (N-1);
28
const ti_int MAX = ~
MIN
;
29
if (a ==
MIN
)
35
if (b ==
MIN
)
54
if (abs_a >
MIN
/ -abs_b)
/src/tests/usr.bin/xlint/lint1/
msg_048.c
19
/* expect+1: warning: enumeration value '
MIN
' overflows [48] */
20
MIN
,
/src/usr.sbin/user/
defs.h
51
#ifndef
MIN
52
#define
MIN
(a,b) (((a) < (b)) ? (a) : (b))
/src/games/phantasia/
macros.h
12
#undef
MIN
13
#define
MIN
(A, B) ((A) < (B) ? (A) : (B))
/src/share/examples/pud/intro/
intro.c
39
#ifndef
MIN
40
#define
MIN
(a,b) ((a)<(b)?(a):(b))
103
clen =
MIN
(strlen(curstr), pc_read->pm_resid);
/src/lib/libc/stdio/
fvwrite.c
86
#define
MIN
(a, b) ((a) < (b) ? (a) : (b))
107
w = (*fp->_write)(fp->_cookie, p,
MIN
(len, INT_MAX));
152
COPY(w); /* copy
MIN
(fp->_w,len), */
172
w =
MIN
(w * (len / w), INT_MAX);
192
* that the amount to write is
MIN
(len,nldist).
203
s = (int)
MIN
(len, nldist);
/src/usr.sbin/tpctl/
tp.c
42
#define
MIN
(a, b) ((a) < (b) ? (a) : (b))
86
MIN
(sizeof(tp->id), id.length));
/src/lib/libc/hash/
hashhl.c
59
#ifndef
MIN
60
#define
MIN
(x,y) ((x)<(y)?(x):(y))
61
#endif /* !
MIN
*/
113
while ((nr = read(fd, buffer, (size_t)
MIN
((off_t)sizeof(buffer), len)))
/src/usr.bin/telnet/
ring.c
65
#if !defined(
MIN
)
66
#define
MIN
(a,b) (((a)<(b))? (a):(b))
67
#endif /* !defined(
MIN
) */
278
i =
MIN
(count, ring_empty_consecutive(ring));
/src/common/lib/libc/string/
memmem.c
69
#define
MIN
(a,b) ((a)<(b)?(a):(b))
/src/sys/kern/
subr_time_arith.c
91
#define
MIN
(X, Y) ((X) < (Y) ? (X) : (Y))
581
*overrunsp +=
MIN
(INT_MAX - *overrunsp,
/src/games/atc/
log.c
92
#define
MIN
(t) (((t) % SECAHOUR) / SECAMIN)
103
(void)snprintf(s, sizeof(s), "%d:%02d:%02d", HOUR(t),
MIN
(t),
105
else if (
MIN
(t) > 0)
106
(void)snprintf(s, sizeof(s), "%d:%02d",
MIN
(t), SEC(t));
/src/usr.sbin/ndbootd/
ndbootd.h
107
#ifndef
MIN
108
#define
MIN
(a, b) ((a) < (b) ? (a) : (b))
109
#endif /* !
MIN
*/
/src/games/robots/
auto.c
58
#define
MIN
(a,b) (((a)>(b))?(b):(a))
/src/sys/lib/libkern/
entpool.c
93
#define
MIN
(X,Y) ((X) < (Y) ? (X) : (Y))
199
n = n0 =
MIN
(127,
MIN
(len, RATE-1 - P->i - 1));
/src/common/lib/libc/hash/sha3/
sha3.c
89
#define
MIN
(a,b) ((a) < (b) ? (a) : (b))
127
for (ib = 0; ib <
MIN
(len, C->nb % 8); ib++)
148
for (iw = 0; iw <
MIN
(len, C->nb)/8; iw++)
/src/games/snake/snake/
snake.c
95
#ifndef
MIN
96
#define
MIN
(a, b) ((a) < (b) ? (a) : (b))
206
i =
MIN
(lcnt, ccnt);
233
chunk = (675.0 / (i + 6)) + 2.5; /*
min
screen edge */
Completed in 23 milliseconds
1
2
Indexes created Sat Sep 20 22:09:52 GMT 2025