bin/ed/re.c
50
static regex_t *exp = NULL;
bin/ed/re.c
61
if (!exp)
bin/ed/re.c
63
return exp;
bin/ed/re.c
67
if (exp && !patlock)
bin/ed/re.c
68
regfree(exp);
bin/ed/re.c
69
else if ((exp = malloc(sizeof(regex_t))) == NULL) {
bin/ed/re.c
75
if ((n = regcomp(exp, exps, 0)) != 0) {
bin/ed/re.c
76
regerror(n, exp, errbuf, sizeof errbuf);
bin/ed/re.c
78
free(exp);
bin/ed/re.c
79
return exp = NULL;
bin/ed/re.c
81
return exp;
games/hack/hack.do.c
530
more_experienced(int exp, int rexp)
games/hack/hack.do.c
534
u.uexp += exp;
games/hack/hack.do.c
535
u.urexp += 4*exp + rexp;
games/hack/hack.do.c
536
if(exp) flags.botl = 1;
games/trek/events.c
456
rtime = 1.0 - exp(-Param.regenfac * Move.time);
include/math.h
184
double exp(double);
include/tgmath.h
111
#define exp(x) __tg_full(x, exp)
lib/libc/arch/amd64/gen/ldexp.c
42
ldexp(double value, int exp)
lib/libc/arch/amd64/gen/ldexp.c
47
: "0" (value), "u" ((double)exp));
lib/libc/arch/arm/quad/fixdfdi.c
60
signed int exp = ux.dbl_exp - DBL_EXP_BIAS;
lib/libc/arch/arm/quad/fixdfdi.c
64
if (exp > 62)
lib/libc/arch/arm/quad/fixdfdi.c
69
exp -= DBL_FRACHBITS;
lib/libc/arch/arm/quad/fixdfdi.c
70
if (exp < 0) {
lib/libc/arch/arm/quad/fixdfdi.c
71
r >>= -exp;
lib/libc/arch/arm/quad/fixdfdi.c
72
} else if (exp > 0) {
lib/libc/arch/arm/quad/fixdfdi.c
75
exp -= DBL_FRACLBITS;
lib/libc/arch/arm/quad/fixdfdi.c
76
if (exp < 0) {
lib/libc/arch/arm/quad/fixdfdi.c
77
r >>= -exp;
lib/libc/arch/arm/quad/fixdfdi.c
78
} else if (exp > 0) {
lib/libc/arch/arm/quad/fixdfdi.c
79
r <<= exp;
lib/libc/arch/arm/quad/fixsfdi.c
58
signed int exp = ux.sng_exp - SNG_EXP_BIAS;
lib/libc/arch/arm/quad/fixsfdi.c
62
if (exp < 0)
lib/libc/arch/arm/quad/fixsfdi.c
64
if (exp > 62)
lib/libc/arch/arm/quad/fixsfdi.c
69
exp -= SNG_FRACBITS;
lib/libc/arch/arm/quad/fixsfdi.c
70
if (exp < 0) {
lib/libc/arch/arm/quad/fixsfdi.c
71
r >>= -exp;
lib/libc/arch/arm/quad/fixsfdi.c
72
} else if (exp > 0) {
lib/libc/arch/arm/quad/fixsfdi.c
73
r <<= exp;
lib/libc/arch/arm/quad/fixunsdfdi.c
59
signed int exp = ux.dbl_exp - DBL_EXP_BIAS;
lib/libc/arch/arm/quad/fixunsdfdi.c
64
if (exp > 63)
lib/libc/arch/arm/quad/fixunsdfdi.c
66
if (exp < 0)
lib/libc/arch/arm/quad/fixunsdfdi.c
71
exp -= DBL_FRACHBITS;
lib/libc/arch/arm/quad/fixunsdfdi.c
72
if (exp == 0)
lib/libc/arch/arm/quad/fixunsdfdi.c
74
if (exp < 0)
lib/libc/arch/arm/quad/fixunsdfdi.c
75
return r >> -exp;
lib/libc/arch/arm/quad/fixunsdfdi.c
79
exp -= DBL_FRACLBITS;
lib/libc/arch/arm/quad/fixunsdfdi.c
80
if (exp == 0)
lib/libc/arch/arm/quad/fixunsdfdi.c
82
if (exp < 0)
lib/libc/arch/arm/quad/fixunsdfdi.c
83
return r >> -exp;
lib/libc/arch/arm/quad/fixunsdfdi.c
85
return r << exp;
lib/libc/arch/arm/quad/fixunssfdi.c
59
signed int exp = ux.sng_exp - SNG_EXP_BIAS;
lib/libc/arch/arm/quad/fixunssfdi.c
64
if (exp > 63)
lib/libc/arch/arm/quad/fixunssfdi.c
66
if (exp < 0)
lib/libc/arch/arm/quad/fixunssfdi.c
71
exp -= SNG_FRACBITS;
lib/libc/arch/arm/quad/fixunssfdi.c
72
if (exp == 0)
lib/libc/arch/arm/quad/fixunssfdi.c
74
if (exp < 0)
lib/libc/arch/arm/quad/fixunssfdi.c
75
return r >> -exp;
lib/libc/arch/arm/quad/fixunssfdi.c
77
return r << exp;
lib/libc/arch/i386/gen/ldexp.c
41
ldexp(double value, int exp)
lib/libc/arch/i386/gen/ldexp.c
46
: "0" (value), "u" ((double)exp));
lib/libc/arch/sparc64/fpu/fpu_explode.c
194
#define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
lib/libc/arch/sparc64/fpu/fpu_explode.c
195
if (exp == 0) { \
lib/libc/arch/sparc64/fpu/fpu_explode.c
206
if (exp == (2 * expbias + 1)) { \
lib/libc/arch/sparc64/fpu/fpu_explode.c
215
fp->fp_exp = exp - expbias; \
lib/libc/arch/sparc64/fpu/fpu_explode.c
232
int exp;
lib/libc/arch/sparc64/fpu/fpu_explode.c
236
exp = (i >> (32 - 1 - SNG_EXPBITS)) & mask(SNG_EXPBITS);
lib/libc/arch/sparc64/fpu/fpu_explode.c
240
FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
lib/libc/arch/sparc64/fpu/fpu_explode.c
252
int exp;
lib/libc/arch/sparc64/fpu/fpu_explode.c
256
exp = (i >> (32 - 1 - DBL_EXPBITS)) & mask(DBL_EXPBITS);
lib/libc/arch/sparc64/fpu/fpu_explode.c
262
FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0);
lib/libc/arch/sparc64/fpu/fpu_explode.c
273
int exp;
lib/libc/arch/sparc64/fpu/fpu_explode.c
280
exp = (i >> (32 - 1 - EXT_EXPBITS)) & mask(EXT_EXPBITS);
lib/libc/arch/sparc64/fpu/fpu_explode.c
287
FP_TOF(exp, EXT_EXP_BIAS, frac, f0, f1, f2, f3);
lib/libc/arch/sparc64/fpu/fpu_implode.c
199
int sign, exp;
lib/libc/arch/sparc64/fpu/fpu_implode.c
218
if ((exp = fp->fp_exp) >= 32)
lib/libc/arch/sparc64/fpu/fpu_implode.c
221
if (__fpu_shr(fp, FP_NMANT - 1 - exp) != 0)
lib/libc/arch/sparc64/fpu/fpu_implode.c
249
int sign, exp;
lib/libc/arch/sparc64/fpu/fpu_implode.c
269
if ((exp = fp->fp_exp) >= 64)
lib/libc/arch/sparc64/fpu/fpu_implode.c
272
if (__fpu_shr(fp, FP_NMANT - 1 - exp) != 0)
lib/libc/arch/sparc64/fpu/fpu_implode.c
300
int exp;
lib/libc/arch/sparc64/fpu/fpu_implode.c
313
exp = SNG_EXP_INFNAN;
lib/libc/arch/sparc64/fpu/fpu_implode.c
342
if ((exp = fp->fp_exp + SNG_EXP_BIAS) <= 0) { /* subnormal */
lib/libc/arch/sparc64/fpu/fpu_implode.c
344
(void) __fpu_shr(fp, FP_NMANT - FP_NG - SNG_FRACBITS - exp);
lib/libc/arch/sparc64/fpu/fpu_implode.c
359
exp++;
lib/libc/arch/sparc64/fpu/fpu_implode.c
360
if (exp >= SNG_EXP_INFNAN) {
lib/libc/arch/sparc64/fpu/fpu_implode.c
369
return (sign | SNG_EXP(exp) | (fp->fp_mant[3] & SNG_MASK));
lib/libc/arch/sparc64/fpu/fpu_implode.c
385
int exp;
lib/libc/arch/sparc64/fpu/fpu_implode.c
392
exp = DBL_EXP_INFNAN;
lib/libc/arch/sparc64/fpu/fpu_implode.c
404
if ((exp = fp->fp_exp + DBL_EXP_BIAS) <= 0) {
lib/libc/arch/sparc64/fpu/fpu_implode.c
405
(void) __fpu_shr(fp, FP_NMANT - FP_NG - DBL_FRACBITS - exp);
lib/libc/arch/sparc64/fpu/fpu_implode.c
413
exp = 0;
lib/libc/arch/sparc64/fpu/fpu_implode.c
418
exp++;
lib/libc/arch/sparc64/fpu/fpu_implode.c
419
if (exp >= DBL_EXP_INFNAN) {
lib/libc/arch/sparc64/fpu/fpu_implode.c
430
return (sign | DBL_EXP(exp) | (fp->fp_mant[2] & DBL_MASK));
lib/libc/arch/sparc64/fpu/fpu_implode.c
446
int exp;
lib/libc/arch/sparc64/fpu/fpu_implode.c
453
exp = EXT_EXP_INFNAN;
lib/libc/arch/sparc64/fpu/fpu_implode.c
465
if ((exp = fp->fp_exp + EXT_EXP_BIAS) <= 0) {
lib/libc/arch/sparc64/fpu/fpu_implode.c
466
(void) __fpu_shr(fp, FP_NMANT - FP_NG - EXT_FRACBITS - exp);
lib/libc/arch/sparc64/fpu/fpu_implode.c
474
exp = 0;
lib/libc/arch/sparc64/fpu/fpu_implode.c
479
exp++;
lib/libc/arch/sparc64/fpu/fpu_implode.c
480
if (exp >= EXT_EXP_INFNAN) {
lib/libc/arch/sparc64/fpu/fpu_implode.c
493
return (sign | EXT_EXP(exp) | (fp->fp_mant[0] & EXT_MASK));
lib/libc/arch/sparc64/fpu/fpu_subr.c
145
int lsh, rsh, exp;
lib/libc/arch/sparc64/fpu/fpu_subr.c
147
exp = fp->fp_exp;
lib/libc/arch/sparc64/fpu/fpu_subr.c
156
m0 = m1, m1 = m2, m2 = m3, m3 = 0, exp -= 32;
lib/libc/arch/sparc64/fpu/fpu_subr.c
158
m0 = m2, m1 = m3, m2 = 0, m3 = 0, exp -= 2 * 32;
lib/libc/arch/sparc64/fpu/fpu_subr.c
160
m0 = m3, m1 = 0, m2 = 0, m3 = 0, exp -= 3 * 32;
lib/libc/arch/sparc64/fpu/fpu_subr.c
177
exp += rsh;
lib/libc/arch/sparc64/fpu/fpu_subr.c
190
exp -= lsh;
lib/libc/arch/sparc64/fpu/fpu_subr.c
198
fp->fp_exp = exp;
lib/libc/gdtoa/gethex.c
199
*exp = fpi->emin;
lib/libc/gdtoa/gethex.c
289
*exp = fpi->emin;
lib/libc/gdtoa/gethex.c
355
*exp = e;
lib/libc/gdtoa/gethex.c
40
gethex(sp, fpi, exp, bp, sign)
lib/libc/gdtoa/gethex.c
41
CONST char **sp; FPI *fpi; Long *exp; Bigint **bp; int sign;
lib/libc/gdtoa/gethex.c
43
gethex( CONST char **sp, FPI *fpi, Long *exp, Bigint **bp, int sign)
lib/libc/gdtoa/strtod.c
167
Long exp;
lib/libc/gdtoa/strtod.c
179
switch((i = gethex(&s, &fpi1, &exp, &bb, sign)) & STRTOG_Retmask) {
lib/libc/gdtoa/strtod.c
192
ULtod(((U*)&rv)->L, bits, exp, i);
lib/libc/gdtoa/strtodg.c
1083
*exp = rve;
lib/libc/gdtoa/strtodg.c
1105
*exp = fpi->emax;
lib/libc/gdtoa/strtodg.c
1120
*exp = fpi->emax + 1;
lib/libc/gdtoa/strtodg.c
178
(d, fpi, exp, bits, exact, rd, irv)
lib/libc/gdtoa/strtodg.c
179
U *d; FPI *fpi; Long *exp; ULong *bits; int exact, rd, *irv;
lib/libc/gdtoa/strtodg.c
181
(U *d, FPI *fpi, Long *exp, ULong *bits, int exact, int rd, int *irv)
lib/libc/gdtoa/strtodg.c
304
*exp = e;
lib/libc/gdtoa/strtodg.c
339
(s00, se, fpi, exp, bits)
lib/libc/gdtoa/strtodg.c
340
CONST char *s00; char **se; FPI *fpi; Long *exp; ULong *bits;
lib/libc/gdtoa/strtodg.c
342
(CONST char *s00, char **se, FPI *fpi, Long *exp, ULong *bits)
lib/libc/gdtoa/strtodg.c
409
irv = gethex(&s, fpi, exp, &rvb, sign);
lib/libc/gdtoa/strtodg.c
534
*exp = fpi->emax + 1;
lib/libc/gdtoa/strtodg.c
577
if (rvOK(&rv, fpi, exp, bits, 1, rd, &irv)) {
lib/libc/gdtoa/strtodg.c
590
if (rvOK(&rv, fpi, exp, bits, i, rd, &irv)) {
lib/libc/gdtoa/strtodg.c
623
if (rvOK(&rv, fpi, exp, bits, 0, rd, &irv)) {
lib/libc/gdtoa/strtodg.c
634
if (rvOK(&rv, fpi, exp, bits, 0, rd, &irv)) {
lib/libc/gdtoa/strtodg.c
730
*exp = emin;
lib/libc/gdtoa/strtof.c
43
Long exp;
lib/libc/gdtoa/strtof.c
52
k = strtodg(s, sp, fpi, &exp, bits);
lib/libc/gdtoa/strtof.c
61
u.L[0] = (bits[0] & 0x7fffff) | ((exp + 0x7f + 23) << 23);
lib/libc/gdtoa/strtorQ.c
108
Long exp;
lib/libc/gdtoa/strtorQ.c
117
k = strtodg(s, sp, fpi, &exp, bits);
lib/libc/gdtoa/strtorQ.c
118
ULtoQ((ULong*)L, bits, exp, k);
lib/libc/gdtoa/strtorQ.c
54
ULtoQ(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
lib/libc/gdtoa/strtorQ.c
56
ULtoQ(ULong *L, ULong *bits, Long exp, int k)
lib/libc/gdtoa/strtorQ.c
70
L[_0] = (bits[3] & ~0x10000) | ((exp + 0x3fff + 112) << 16);
lib/libc/gdtoa/strtord.c
36
ULtod(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
lib/libc/gdtoa/strtord.c
38
ULtod(ULong *L, ULong *bits, Long exp, int k)
lib/libc/gdtoa/strtord.c
55
L[_0] = (bits[1] & ~0x100000) | ((exp + 0x3ff + 52) << 20);
lib/libc/gdtoa/strtord.c
84
Long exp;
lib/libc/gdtoa/strtord.c
93
k = strtodg(s, sp, fpi, &exp, bits);
lib/libc/gdtoa/strtord.c
94
ULtod((ULong*)d, bits, exp, k);
lib/libc/gdtoa/strtorx.c
111
Long exp;
lib/libc/gdtoa/strtorx.c
120
k = strtodg(s, sp, fpi, &exp, bits);
lib/libc/gdtoa/strtorx.c
121
ULtox((UShort*)L, bits, exp, k);
lib/libc/gdtoa/strtorx.c
56
ULtox(L, bits, exp, k) UShort *L; ULong *bits; Long exp; int k;
lib/libc/gdtoa/strtorx.c
58
ULtox(UShort *L, ULong *bits, Long exp, int k)
lib/libc/gdtoa/strtorx.c
73
L[_0] = exp + 0x3fff + 63;
lib/libc/net/res_random.c
114
pmod(u_int16_t gen, u_int16_t exp, u_int16_t mod)
lib/libc/net/res_random.c
120
u = exp;
lib/libc/stdio/vfprintf.c
1515
exponent(char *p0, int exp, int fmtch)
lib/libc/stdio/vfprintf.c
1522
if (exp < 0) {
lib/libc/stdio/vfprintf.c
1523
exp = -exp;
lib/libc/stdio/vfprintf.c
1528
if (exp > 9) {
lib/libc/stdio/vfprintf.c
1530
*--t = to_char(exp % 10);
lib/libc/stdio/vfprintf.c
1531
} while ((exp /= 10) > 9);
lib/libc/stdio/vfprintf.c
1532
*--t = to_char(exp);
lib/libc/stdio/vfprintf.c
1544
*p++ = to_char(exp);
lib/libc/stdio/vfwprintf.c
1496
exponent(wchar_t *p0, int exp, int fmtch)
lib/libc/stdio/vfwprintf.c
1503
if (exp < 0) {
lib/libc/stdio/vfwprintf.c
1504
exp = -exp;
lib/libc/stdio/vfwprintf.c
1509
if (exp > 9) {
lib/libc/stdio/vfwprintf.c
1511
*--t = to_char(exp % 10);
lib/libc/stdio/vfwprintf.c
1512
} while ((exp /= 10) > 9);
lib/libc/stdio/vfwprintf.c
1513
*--t = to_char(exp);
lib/libc/stdio/vfwprintf.c
1525
*p++ = to_char(exp);
lib/libcbor/src/cbor/encoding.c
132
uint8_t exp = (uint8_t)((val & 0x7F800000u) >>
lib/libcbor/src/cbor/encoding.c
136
if (exp == 0xFF) { /* Infinity or NaNs */
lib/libcbor/src/cbor/encoding.c
150
} else if (exp == 0x00) { /* Zeroes or subnorms */
lib/libcbor/src/cbor/encoding.c
153
int8_t logical_exp = (int8_t)(exp - 127);
lib/libcbor/src/cbor/encoding.c
154
CBOR_ASSERT(logical_exp == exp - 127);
lib/libcbor/src/cbor/internal/loaders.c
55
int exp = (half >> 10) & 0x1f;
lib/libcbor/src/cbor/internal/loaders.c
58
if (exp == 0)
lib/libcbor/src/cbor/internal/loaders.c
60
else if (exp != 31)
lib/libcbor/src/cbor/internal/loaders.c
61
val = ldexp(mant + 1024, exp - 25);
lib/libcurses/curses.priv.h
631
# define _cat_pragma(exp) _Pragma(#exp)
lib/libcurses/curses.priv.h
632
# define _weak_pragma(exp) _cat_pragma(weak name)
lib/libcurses/curses.priv.h
634
# define _weak_pragma(exp)
lib/libm/hidden/math.h
71
PROTO_NORMAL(exp);
lib/libm/src/e_cosh.c
65
t = exp(fabs(x));
lib/libm/src/e_cosh.c
70
if (ix < 0x40862E42) return half*exp(fabs(x));
lib/libm/src/e_cosh.c
76
w = exp(half*fabs(x));
lib/libm/src/e_exp.c
158
DEF_STD(exp);
lib/libm/src/e_exp.c
159
LDBL_MAYBE_CLONE(exp);
lib/libm/src/e_sinh.c
64
if (ix < 0x40862E42) return h*exp(fabs(x));
lib/libm/src/e_sinh.c
69
w = exp(0.5*fabs(x));
lib/libm/src/math_private.h
134
int exp:16;
lib/libm/src/math_private.h
151
int exp:16;
lib/libm/src/math_private.h
167
(se) = ew_u.parts.exp; \
lib/libm/src/math_private.h
177
iw_u.parts.exp = (se); \
lib/libm/src/math_private.h
208
(se) = ge_u.parts.exp; \
lib/libm/src/math_private.h
217
se_u.parts.exp = (se); \
lib/libm/src/s_ccos.c
68
e = exp(x);
lib/libm/src/s_cexp.c
68
r = exp (x);
lib/libm/src/s_cpow.c
67
r = r * exp (-y * arga);
lib/libm/src/s_csin.c
70
e = exp(x);
lib/libm/src/s_erf.c
235
r = exp(-z*z-0.5625)*exp((z-x)*(z+x)+R/S);
lib/libm/src/s_erf.c
295
r = exp(-z*z-0.5625) * exp((z-x)*(z+x)+R/S);
regress/lib/libc/cephes/etodec.c
149
long exp;
regress/lib/libc/cephes/etodec.c
153
exp = (long )xi[E] - (EXONE - 0201); /* adjust exponent for offsets */
regress/lib/libc/cephes/etodec.c
157
emdnorm( xi, 0, 0, exp, 64 );
regress/lib/libc/cephes/ieee.c
1128
void emdnorm( s, lost, subflg, exp, rcntrl )
regress/lib/libc/cephes/ieee.c
1132
long exp;
regress/lib/libc/cephes/ieee.c
1149
exp -= j;
regress/lib/libc/cephes/ieee.c
1151
if( exp >= 32767L )
regress/lib/libc/cephes/ieee.c
1154
if( (j > NBITS) && (exp < 32767L) )
regress/lib/libc/cephes/ieee.c
1160
if( exp < 0L )
regress/lib/libc/cephes/ieee.c
1162
if( exp > (long )(-NBITS-1) )
regress/lib/libc/cephes/ieee.c
1164
j = (int )exp;
regress/lib/libc/cephes/ieee.c
1239
if( (exp <= 0) && (rndprc != NBITS) )
regress/lib/libc/cephes/ieee.c
1241
if( (exp <= 0) && (rndprc != 64) && (rndprc != NBITS) )
regress/lib/libc/cephes/ieee.c
1282
if( (exp <= 0) && (rndprc != NBITS) )
regress/lib/libc/cephes/ieee.c
1284
if( (exp <= 0) && (rndprc != 64) && (rndprc != NBITS) )
regress/lib/libc/cephes/ieee.c
1292
exp += 1;
regress/lib/libc/cephes/ieee.c
1296
if( exp >= 32767L )
regress/lib/libc/cephes/ieee.c
1323
if( exp < 0 )
regress/lib/libc/cephes/ieee.c
1326
s[1] = (unsigned short )exp;
regress/lib/libc/cephes/ieee.c
2061
long exp;
regress/lib/libc/cephes/ieee.c
2072
exp = (long )xi[E];
regress/lib/libc/cephes/ieee.c
2080
emdnorm( xi, 0, 0, exp, 64 );
regress/lib/libc/cephes/ieee.c
2142
long exp;
regress/lib/libc/cephes/ieee.c
2153
exp = (long )xi[E]; /* adjust exponent for offset */
regress/lib/libc/cephes/ieee.c
2161
emdnorm( xi, 0, 0, exp, 64 );
regress/lib/libc/cephes/ieee.c
2262
long exp;
regress/lib/libc/cephes/ieee.c
2273
exp = (long )xi[E] - (EXONE - 0x3ff); /* adjust exponent for offsets */
regress/lib/libc/cephes/ieee.c
2281
emdnorm( xi, 0, 0, exp, 64 );
regress/lib/libc/cephes/ieee.c
2379
long exp;
regress/lib/libc/cephes/ieee.c
2391
exp = (long )xi[E] - (EXONE - 0177); /* adjust exponent for offsets */
regress/lib/libc/cephes/ieee.c
2399
emdnorm( xi, 0, 0, exp, 64 );
regress/lib/libc/cephes/ieee.c
3481
int esign, decflg, sgnflg, nexp, exp, prec, lost;
regress/lib/libc/cephes/ieee.c
3507
exp = 0;
regress/lib/libc/cephes/ieee.c
3618
exp = 0;
regress/lib/libc/cephes/ieee.c
3630
exp *= 10;
regress/lib/libc/cephes/ieee.c
3631
exp += *s++ - '0';
regress/lib/libc/cephes/ieee.c
3632
if (exp > 4977)
regress/lib/libc/cephes/ieee.c
3641
exp = -exp;
regress/lib/libc/cephes/ieee.c
3642
if( exp > 4932 )
regress/lib/libc/cephes/ieee.c
3649
if( exp < -4977 )
regress/lib/libc/cephes/ieee.c
3657
nexp = exp - nexp;
regress/lib/libc/cephes/ieee.c
3709
exp = 1;
regress/lib/libc/cephes/ieee.c
3712
if( exp & nexp )
regress/lib/libc/cephes/ieee.c
3715
exp = exp + exp;
regress/lib/libc/cephes/ieee.c
3717
while( exp <= MAXP );
regress/lib/libc/cephes/ieee.c
3860
void efrexp( x, exp, s )
regress/lib/libc/cephes/ieee.c
3862
long *exp;
regress/lib/libc/cephes/ieee.c
3877
*exp = li - 0x3ffe;
regress/lib/libc/cephes/ieee.c
4054
long m, exp;
regress/lib/libc/cephes/ieee.c
4095
exp = (unsigned short )( (m / 2) + 0x3ffe );
regress/lib/libc/cephes/ieee.c
4101
exp += 1;
regress/lib/libc/cephes/ieee.c
4143
exp += (NBITS - 1) - rndprc;
regress/lib/libc/cephes/ieee.c
4151
emdnorm( sq, k, 0, exp, 64 );
regress/lib/libc/sys/atf-c.c
103
if (!(exp)) {
regress/lib/libc/sys/atf-c.c
99
atf_require(int exp, int expected_errno, const char *expstr, const char *src,
regress/lib/libc/sys/atf-c.h
83
#define atf_req(exp, err, msg, ...) \
regress/lib/libc/sys/atf-c.h
84
atf_require(exp, err, #exp, __FILE__, __LINE__, msg, ##__VA_ARGS__)
regress/lib/libc/sys/atf-c.h
85
#define ATF_REQUIRE(exp) atf_req(exp, -1, NULL)
regress/lib/libc/sys/atf-c.h
86
#define ATF_REQUIRE_ERRNO(no, exp) atf_req(exp, no, NULL)
regress/lib/libc/sys/atf-c.h
87
#define ATF_REQUIRE_MSG(exp, fmt, ...) atf_req(exp, -1, fmt, ##__VA_ARGS__)
regress/lib/libm/cephes/monot.c
100
{"exp", exp, -2.0, 1.353302001953125e-1,
regress/lib/libm/cephes/monot.c
43
double exp (double);
regress/lib/libm/cephes/monot.c
90
{"exp", exp, 1.0, 2.7182769775390625,
regress/lib/libm/cephes/monot.c
92
{"exp", exp, -1.0, 3.678741455078125e-1,
regress/lib/libm/cephes/monot.c
94
{"exp", exp, 0.5, 1.648712158203125,
regress/lib/libm/cephes/monot.c
96
{"exp", exp, -0.5, 6.065216064453125e-1,
regress/lib/libm/cephes/monot.c
98
{"exp", exp, 2.0, 7.3890533447265625,
regress/lib/libm/cephes/testvect.c
173
{"exp", exp, &NAN, &NAN, 0},
regress/lib/libm/cephes/testvect.c
174
{"exp", exp, &ZERO, &ONE, 0},
regress/lib/libm/cephes/testvect.c
175
{"exp", exp, &MZERO, &ONE, 0},
regress/lib/libm/cephes/testvect.c
176
{"exp", exp, &INF, &INF, 0},
regress/lib/libm/cephes/testvect.c
177
{"exp", exp, &MINF, &ZERO, 0},
regress/lib/libm/cephes/testvect.c
52
double exp ( double);
regress/lib/libm/exp/exp.c
15
rd = exp(bigd);
regress/lib/libm/exp/exp.c
18
rd = exp(-bigd);
regress/lib/libm/fpaccuracy/Gamma.c
1607
double exp( double x ), lgamma( double x );
regress/lib/libm/fpaccuracy/Gamma.c
1610
t = exp(lgamma(x)); return(t*signgam); }
regress/lib/libm/fpaccuracy/exp.c
25
#define F exp
regress/lib/libm/msun/atf-c.c
103
if (!(exp)) {
regress/lib/libm/msun/atf-c.c
99
atf_require(int exp, int expected_errno, const char *expstr, const char *src,
regress/lib/libm/msun/atf-c.h
88
#define atf_req(exp, err, msg, ...) \
regress/lib/libm/msun/atf-c.h
89
atf_require(exp, err, #exp, __FILE__, __LINE__, msg, ##__VA_ARGS__)
regress/lib/libm/msun/atf-c.h
90
#define ATF_REQUIRE(exp) atf_req(exp, -1, NULL)
regress/lib/libm/msun/atf-c.h
91
#define ATF_REQUIRE_ERRNO(no, exp) atf_req(exp, no, NULL)
regress/lib/libm/msun/atf-c.h
92
#define ATF_REQUIRE_MSG(exp, fmt, ...) atf_req(exp, -1, fmt, ##__VA_ARGS__)
regress/lib/libm/msun/cexp_test.c
209
CMPLXL(exp(finites[i]), 0.0),
regress/lib/libm/msun/cexp_test.c
212
CMPLXL(exp(finites[i]), -0.0),
regress/lib/libm/msun/csqrt_test.c
215
int exp, i;
regress/lib/libm/msun/csqrt_test.c
220
exp = maxexp - 2 * i;
regress/lib/libm/msun/csqrt_test.c
223
a = ldexpl(115 * 0x1p-8, exp);
regress/lib/libm/msun/csqrt_test.c
224
b = ldexpl(252 * 0x1p-8, exp);
regress/lib/libm/msun/csqrt_test.c
226
ATF_CHECK_EQ(creall(result), ldexpl(14 * 0x1p-4, exp / 2));
regress/lib/libm/msun/csqrt_test.c
227
ATF_CHECK_EQ(cimagl(result), ldexpl(9 * 0x1p-4, exp / 2));
regress/lib/libm/msun/csqrt_test.c
230
a = ldexpl(-11 * 0x1p-6, exp);
regress/lib/libm/msun/csqrt_test.c
231
b = ldexpl(60 * 0x1p-6, exp);
regress/lib/libm/msun/csqrt_test.c
233
ATF_CHECK_EQ(creall(result), ldexpl(5 * 0x1p-3, exp / 2));
regress/lib/libm/msun/csqrt_test.c
234
ATF_CHECK_EQ(cimagl(result), ldexpl(6 * 0x1p-3, exp / 2));
regress/lib/libm/msun/csqrt_test.c
237
a = ldexpl(225 * 0x1p-8, exp);
regress/lib/libm/msun/csqrt_test.c
240
ATF_CHECK_EQ(creall(result), ldexpl(15 * 0x1p-4, exp / 2));
regress/lib/libm/msun/csqrt_test.c
264
int exp, i;
regress/lib/libm/msun/csqrt_test.c
270
for (exp = 0; exp <= maxexp; exp += 2) {
regress/lib/libm/msun/csqrt_test.c
287
exp - 1 - mantdig);
regress/lib/libm/msun/csqrt_test.c
288
x = ldexpl(mantbits, (exp - 2 - mantdig) / 2);
regress/lib/libm/msun/exponential_test.c
70
test(exp, x, result, exceptmask, excepts); \
regress/lib/libm/msun/next_test.c
246
_testl(const char *exp, int line, long double actual, long double expected,
regress/lib/libm/msun/next_test.c
254
"%s returned %La, expecting %La\n", exp, actual, expected);
regress/lib/libm/msun/next_test.c
258
"%s raised 0x%x, expecting 0x%x\n", exp, actual_except,
regress/lib/libm/msun/next_test.c
46
#define test(exp, ans, ex) do { \
regress/lib/libm/msun/next_test.c
49
_testl(#exp, __LINE__, (exp), __ans, (ex)); \
regress/lib/libm/msun/next_test.c
51
#define testf(exp, ans, ex) do { \
regress/lib/libm/msun/next_test.c
54
_testl(#exp, __LINE__, (exp), __ans, (ex)); \
regress/lib/libm/msun/next_test.c
56
#define testl(exp, ans, ex) do { \
regress/lib/libm/msun/next_test.c
59
_testl(#exp, __LINE__, (exp), __ans, (ex)); \
regress/lib/libpthread/preemption_float/preemption_float.c
57
d = log (exp (d));
regress/lib/libpthread/stdarg/stdarg.c
14
#define EQ(v,exp) _CHECK(v, == exp, NULL)
regress/lib/libutil/ber/ber_test.c
504
unsigned char exp[3] = { 0x02, 0x01, 0x01 };
regress/lib/libutil/ber/ber_test.c
515
if (len != sizeof(exp)) {
regress/lib/libutil/ber/ber_test.c
517
sizeof(exp));
regress/lib/libutil/ber/ber_test.c
521
if (memcmp(ber.br_wbuf, exp, len) != 0) {
regress/lib/libutil/ber/ber_test.c
544
unsigned char exp[] = {
regress/lib/libutil/ber/ber_test.c
571
if (len != sizeof(exp)) {
regress/lib/libutil/ber/ber_test.c
573
sizeof(exp));
regress/lib/libutil/ber/ber_test.c
577
if (memcmp(ber.br_wbuf, exp, len) != 0) {
regress/lib/libutil/ber/ber_test.c
599
unsigned char exp[] = {
regress/lib/libutil/ber/ber_test.c
622
if (len != sizeof(exp)) {
regress/lib/libutil/ber/ber_test.c
624
sizeof(exp));
regress/lib/libutil/ber/ber_test.c
628
if (memcmp(ber.br_wbuf, exp, len) != 0) {
regress/lib/libutil/ber/ber_test.c
648
unsigned char exp[] = {
regress/lib/libutil/ber/ber_test.c
663
if (len != sizeof(exp)) {
regress/lib/libutil/ber/ber_test.c
665
sizeof(exp));
regress/lib/libutil/ber/ber_test.c
669
if (memcmp(ber.br_wbuf, exp, len) != 0) {
regress/sys/arch/amd64/ddb/disasm.c
11
(exp), sizeof(exp) - 1, \
regress/sys/arch/amd64/ddb/disasm.c
17
test_impl(const uint8_t *instr, size_t ninstr, const char *exp, size_t explen,
regress/sys/arch/amd64/ddb/disasm.c
40
if (explen != actlen || strncmp(exp, act, actlen) != 0) {
regress/sys/arch/amd64/ddb/disasm.c
42
fprintf(stderr, "exp: \"%.*s\"\n", (int)explen, exp);
regress/sys/arch/amd64/ddb/disasm.c
9
#define test(instr, exp) \
regress/sys/dev/kcov/kcov.c
194
unsigned long arg1, arg2, exp, i, pc, type;
regress/sys/dev/kcov/kcov.c
224
exp = type >> 1;
regress/sys/dev/kcov/kcov.c
225
if (exp <= 3)
regress/sys/dev/kcov/kcov.c
230
i, exp, type & 0x1, arg1, arg2, (void *)pc);
regress/sys/kern/ptrace/xstate/xstate.c
147
struct ymm exp;
regress/sys/kern/ptrace/xstate/xstate.c
149
memset(&exp, (i << 4) | i, 32);
regress/sys/kern/ptrace/xstate/xstate.c
150
if (memcmp(&exp, &ymm[i], 32) == 0)
regress/sys/kern/ptrace/xstate/xstate.c
155
exp.ymm.v[1], exp.ymm.v[0],
regress/sys/kern/ptrace/xstate/xstate.c
156
exp.xmm.v[1], exp.xmm.v[0],
regress/sys/kern/ptrace2/atf-c.c
84
atf_require(int exp, int expected_errno, const char *expstr, const char *src,
regress/sys/kern/ptrace2/atf-c.c
88
if (!(exp)) {
regress/sys/kern/ptrace2/atf-c.h
78
#define atf_req(exp, err, msg, ...) \
regress/sys/kern/ptrace2/atf-c.h
79
atf_require(exp, err, #exp, __FILE__, __LINE__, NULL)
regress/sys/kern/ptrace2/atf-c.h
80
#define ATF_REQUIRE(exp) atf_req(exp, -1, NULL)
regress/sys/kern/ptrace2/atf-c.h
81
#define ATF_REQUIRE_ERRNO(no, exp) atf_req(exp, no, NULL)
regress/sys/kern/ptrace2/atf-c.h
82
#define ATF_REQUIRE_MSG(exp, fmt, ...) atf_req(exp, -1, fmt, ##__VA_ARGS__)
regress/sys/kern/ptrace2/ptrace_test.c
59
#define CHILD_REQUIRE(exp) do { \
regress/sys/kern/ptrace2/ptrace_test.c
60
if (!(exp)) \
regress/sys/kern/ptrace2/ptrace_test.c
62
#exp " not met"); \
regress/usr.sbin/bgpd/unittests/chash_sub_test.c
182
void *exp;
regress/usr.sbin/bgpd/unittests/chash_sub_test.c
185
exp = (void *)h;
regress/usr.sbin/bgpd/unittests/chash_sub_test.c
187
exp = NULL;
regress/usr.sbin/bgpd/unittests/chash_sub_test.c
189
(void *)h)) != exp) {
regress/usr.sbin/bgpd/unittests/chash_sub_test.c
191
__func__, t, h, v, exp);
sbin/unwind/libunbound/sldns/keyraw.c
382
uint16_t exp;
sbin/unwind/libunbound/sldns/keyraw.c
391
exp = ntohs(int16);
sbin/unwind/libunbound/sldns/keyraw.c
394
exp = key[0];
sbin/unwind/libunbound/sldns/keyraw.c
399
if(len < (size_t)offset + exp + 1)
sbin/unwind/libunbound/sldns/keyraw.c
405
(void) BN_bin2bn(key+offset, (int)exp, *e);
sbin/unwind/libunbound/sldns/keyraw.c
406
offset += exp;
sbin/unwind/libunbound/sldns/keyraw.c
49
uint16_t exp;
sbin/unwind/libunbound/sldns/keyraw.c
74
exp = ntohs(int16);
sbin/unwind/libunbound/sldns/keyraw.c
75
return (len - exp - 3)*8;
sbin/unwind/libunbound/sldns/keyraw.c
80
exp = keydata[0];
sbin/unwind/libunbound/sldns/keyraw.c
81
return (len-exp-1)*8;
sbin/unwind/libunbound/validator/val_secalgo.c
1182
uint16_t exp;
sbin/unwind/libunbound/validator/val_secalgo.c
1194
exp = ntohs(int16);
sbin/unwind/libunbound/validator/val_secalgo.c
1197
exp = key[0];
sbin/unwind/libunbound/validator/val_secalgo.c
1202
if(len < (size_t)offset + exp + 1)
sbin/unwind/libunbound/validator/val_secalgo.c
1206
exponent.len = exp;
sbin/unwind/libunbound/validator/val_secalgo.c
1207
offset += exp;
sys/arch/alpha/alpha/fp_complete.c
65
#define MAKE_FLOATXX(width, expwidth, sign, exp, msb, rest_of_frac) \
sys/arch/alpha/alpha/fp_complete.c
67
(u_int ## width ## _t)(exp) << ((width) - 1 - (expwidth)) |\
sys/arch/alpha/alpha/fp_complete.c
74
#define IS_SUBNORMAL(v) ((v)->exp == 0 && (v)->frac != 0)
sys/arch/alpha/include/cpu.h
79
exp: 8,
sys/arch/alpha/include/cpu.h
86
exp: 11,
sys/arch/arm64/dev/aplsmc.c
586
int sign, exp;
sys/arch/arm64/dev/aplsmc.c
593
exp = ((flt >> 23) & 0xff) - 127;
sys/arch/arm64/dev/aplsmc.c
596
if (exp < 23)
sys/arch/arm64/dev/aplsmc.c
597
return sign * (mant >> (23 - exp));
sys/arch/arm64/dev/aplsmc.c
599
return sign * (mant << (exp - 23));
sys/arch/hppa/spmath/cnv_float.h
100
if (exp >= -2) { \
sys/arch/hppa/spmath/cnv_float.h
101
if (exp == 0) { \
sys/arch/hppa/spmath/cnv_float.h
145
inexact = Dallp2(srcB) << (2 + exp); \
sys/arch/hppa/spmath/cnv_float.h
149
if (exp == -2) dest = Dallp1(srcA); \
sys/arch/hppa/spmath/cnv_float.h
150
else Variable_shift_double(Dallp1(srcA),Dallp2(srcB),30-exp,dest); \
sys/arch/hppa/spmath/cnv_float.h
156
if (exp > (1 - SGL_P)) { \
sys/arch/hppa/spmath/cnv_float.h
157
dest = Dallp1(srcA) >> (- 2 - exp); \
sys/arch/hppa/spmath/cnv_float.h
158
inexact = Dallp1(srcA) << (34 + exp); \
sys/arch/hppa/spmath/cnv_float.h
167
if (exp == (1 - SGL_P)) { \
sys/arch/hppa/spmath/cnv_float.h
178
exp = 0
sys/arch/hppa/spmath/cnv_float.h
97
#define Dbl_to_sgl_denormalized(srcA,srcB,exp,dest,inexact,guard,sticky,odd,tiny) \
sys/arch/hppa/spmath/dbl_float.h
242
#define Dbl_set_exponent(dbl_value, exp) Deposit_dexponent(dbl_value,exp)
sys/arch/hppa/spmath/sgl_float.h
154
#define Sgl_set_exponent(sgl_value,exp) Deposit_sexponent(sgl_value,exp)
sys/arch/m88k/m88k/m88100_fp.c
349
int16 exp;
sys/arch/m88k/m88k/m88100_fp.c
387
exp = ((int32_t)frame->tf_fpit) >> 20; /* signed, unbiased exponent */
sys/arch/m88k/m88k/m88100_fp.c
390
exp += SNG_EXP_BIAS;
sys/arch/m88k/m88k/m88100_fp.c
404
exp--;
sys/arch/m88k/m88k/m88100_fp.c
411
res.sng = normalizeRoundAndPackFloat32(sign, exp, mant32);
sys/arch/m88k/m88k/m88100_fp.c
413
exp += DBL_EXP_BIAS;
sys/arch/m88k/m88k/m88100_fp.c
427
exp--;
sys/arch/m88k/m88k/m88100_fp.c
434
res.dbl = normalizeRoundAndPackFloat64(sign, exp, mant64);
sys/arch/sparc64/fpu/fpu_explode.c
135
#define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
sys/arch/sparc64/fpu/fpu_explode.c
136
if (exp == 0) { \
sys/arch/sparc64/fpu/fpu_explode.c
147
if (exp == (2 * expbias + 1)) { \
sys/arch/sparc64/fpu/fpu_explode.c
156
fp->fp_exp = exp - expbias; \
sys/arch/sparc64/fpu/fpu_explode.c
171
int exp;
sys/arch/sparc64/fpu/fpu_explode.c
175
exp = (i >> (32 - 1 - SNG_EXPBITS)) & mask(SNG_EXPBITS);
sys/arch/sparc64/fpu/fpu_explode.c
179
FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
sys/arch/sparc64/fpu/fpu_explode.c
189
int exp;
sys/arch/sparc64/fpu/fpu_explode.c
193
exp = (i >> (32 - 1 - DBL_EXPBITS)) & mask(DBL_EXPBITS);
sys/arch/sparc64/fpu/fpu_explode.c
199
FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0);
sys/arch/sparc64/fpu/fpu_explode.c
208
int exp;
sys/arch/sparc64/fpu/fpu_explode.c
215
exp = (i >> (32 - 1 - EXT_EXPBITS)) & mask(EXT_EXPBITS);
sys/arch/sparc64/fpu/fpu_explode.c
222
FP_TOF(exp, EXT_EXP_BIAS, frac, f0, f1, f2, f3);
sys/arch/sparc64/fpu/fpu_implode.c
195
int sign, exp;
sys/arch/sparc64/fpu/fpu_implode.c
214
if ((exp = fp->fp_exp) >= 32)
sys/arch/sparc64/fpu/fpu_implode.c
217
if (fpu_shr(fp, FP_NMANT - 1 - exp) != 0)
sys/arch/sparc64/fpu/fpu_implode.c
242
int sign, exp;
sys/arch/sparc64/fpu/fpu_implode.c
262
if ((exp = fp->fp_exp) >= 64)
sys/arch/sparc64/fpu/fpu_implode.c
265
if (fpu_shr(fp, FP_NMANT - 1 - exp) != 0)
sys/arch/sparc64/fpu/fpu_implode.c
293
int exp;
sys/arch/sparc64/fpu/fpu_implode.c
306
exp = SNG_EXP_INFNAN;
sys/arch/sparc64/fpu/fpu_implode.c
335
if ((exp = fp->fp_exp + SNG_EXP_BIAS) <= 0) { /* subnormal */
sys/arch/sparc64/fpu/fpu_implode.c
337
(void) fpu_shr(fp, FP_NMANT - FP_NG - SNG_FRACBITS - exp);
sys/arch/sparc64/fpu/fpu_implode.c
352
exp++;
sys/arch/sparc64/fpu/fpu_implode.c
353
if (exp >= SNG_EXP_INFNAN) {
sys/arch/sparc64/fpu/fpu_implode.c
362
return (sign | SNG_EXP(exp) | (fp->fp_mant[3] & SNG_MASK));
sys/arch/sparc64/fpu/fpu_implode.c
375
int exp;
sys/arch/sparc64/fpu/fpu_implode.c
382
exp = DBL_EXP_INFNAN;
sys/arch/sparc64/fpu/fpu_implode.c
394
if ((exp = fp->fp_exp + DBL_EXP_BIAS) <= 0) {
sys/arch/sparc64/fpu/fpu_implode.c
395
(void) fpu_shr(fp, FP_NMANT - FP_NG - DBL_FRACBITS - exp);
sys/arch/sparc64/fpu/fpu_implode.c
403
exp = 0;
sys/arch/sparc64/fpu/fpu_implode.c
408
exp++;
sys/arch/sparc64/fpu/fpu_implode.c
409
if (exp >= DBL_EXP_INFNAN) {
sys/arch/sparc64/fpu/fpu_implode.c
420
return (sign | DBL_EXP(exp) | (fp->fp_mant[2] & DBL_MASK));
sys/arch/sparc64/fpu/fpu_implode.c
433
int exp;
sys/arch/sparc64/fpu/fpu_implode.c
440
exp = EXT_EXP_INFNAN;
sys/arch/sparc64/fpu/fpu_implode.c
452
if ((exp = fp->fp_exp + EXT_EXP_BIAS) <= 0) {
sys/arch/sparc64/fpu/fpu_implode.c
453
(void) fpu_shr(fp, FP_NMANT - FP_NG - EXT_FRACBITS - exp);
sys/arch/sparc64/fpu/fpu_implode.c
461
exp = 0;
sys/arch/sparc64/fpu/fpu_implode.c
466
exp++;
sys/arch/sparc64/fpu/fpu_implode.c
467
if (exp >= EXT_EXP_INFNAN) {
sys/arch/sparc64/fpu/fpu_implode.c
480
return (sign | EXT_EXP(exp) | (fp->fp_mant[0] & EXT_MASK));
sys/arch/sparc64/fpu/fpu_subr.c
145
int lsh, rsh, exp;
sys/arch/sparc64/fpu/fpu_subr.c
147
exp = fp->fp_exp;
sys/arch/sparc64/fpu/fpu_subr.c
156
m0 = m1, m1 = m2, m2 = m3, m3 = 0, exp -= 32;
sys/arch/sparc64/fpu/fpu_subr.c
158
m0 = m2, m1 = m3, m2 = 0, m3 = 0, exp -= 2 * 32;
sys/arch/sparc64/fpu/fpu_subr.c
160
m0 = m3, m1 = 0, m2 = 0, m3 = 0, exp -= 3 * 32;
sys/arch/sparc64/fpu/fpu_subr.c
177
exp += rsh;
sys/arch/sparc64/fpu/fpu_subr.c
190
exp -= lsh;
sys/arch/sparc64/fpu/fpu_subr.c
198
fp->fp_exp = exp;
sys/dev/fdt/qcpwm.c
150
uint64_t refclk, prediv, exp, res;
sys/dev/fdt/qcpwm.c
187
exp = (reg >> PWM_PREDIV_CLK_EXP_SHIFT) &
sys/dev/fdt/qcpwm.c
197
pcycles = (NS_PER_S * res * prediv * (1 << exp));
sys/dev/fdt/qcpwm.c
199
dcycles = (NS_PER_S * pwmval * prediv * (1 << exp));
sys/dev/fdt/qcpwm.c
214
int clksel, divsel, ressel, exp;
sys/dev/fdt/qcpwm.c
261
exp = m;
sys/dev/fdt/qcpwm.c
274
(NS_PER_S * qcpwm_pre_divs[divsel] * (1 << exp));
sys/dev/fdt/qcpwm.c
299
exp << PWM_PREDIV_CLK_EXP_SHIFT);
sys/dev/ic/ar5008.c
1918
uint32_t coeff, exp, man, reg;
sys/dev/ic/ar5008.c
1922
athn_get_delta_slope(coeff, &exp, &man);
sys/dev/ic/ar5008.c
1923
DPRINTFN(5, ("delta slope coeff exp=%u man=%u\n", exp, man));
sys/dev/ic/ar5008.c
1926
reg = RW(reg, AR_PHY_TIMING3_DSC_EXP, exp);
sys/dev/ic/ar5008.c
1932
athn_get_delta_slope(coeff, &exp, &man);
sys/dev/ic/ar5008.c
1933
DPRINTFN(5, ("delta slope coeff exp=%u man=%u\n", exp, man));
sys/dev/ic/ar5008.c
1936
reg = RW(reg, AR_PHY_HALFGI_DSC_EXP, exp);
sys/dev/ic/ar9003.c
1856
uint32_t coeff, exp, man, reg;
sys/dev/ic/ar9003.c
1860
athn_get_delta_slope(coeff, &exp, &man);
sys/dev/ic/ar9003.c
1861
DPRINTFN(5, ("delta slope coeff exp=%u man=%u\n", exp, man));
sys/dev/ic/ar9003.c
1864
reg = RW(reg, AR_PHY_TIMING3_DSC_EXP, exp);
sys/dev/ic/ar9003.c
1870
athn_get_delta_slope(coeff, &exp, &man);
sys/dev/ic/ar9003.c
1871
DPRINTFN(5, ("delta slope coeff exp=%u man=%u\n", exp, man));
sys/dev/ic/ar9003.c
1874
reg = RW(reg, AR_PHY_SGI_DSC_EXP, exp);
sys/dev/ic/athn.c
971
uint32_t exp, man;
sys/dev/ic/athn.c
974
for (exp = 31; exp > 0; exp--)
sys/dev/ic/athn.c
975
if (coeff & (1 << exp))
sys/dev/ic/athn.c
977
exp = 14 - (exp - COEFF_SCALE_SHIFT);
sys/dev/ic/athn.c
980
man = coeff + (1 << (COEFF_SCALE_SHIFT - exp - 1));
sys/dev/ic/athn.c
982
*mantissa = man >> (COEFF_SCALE_SHIFT - exp);
sys/dev/ic/athn.c
983
*exponent = exp - 16;
sys/dev/ic/qla.c
2027
u_int16_t id, exp;
sys/dev/ic/qla.c
2089
exp = qla_read_mbox(sc, 2);
sys/dev/ic/qla.c
2091
" explanation %x)\n", DEVNAME(sc), id >> 8, id & 0xff, exp);
sys/dev/ipmi.c
1161
ipow(long val, int exp)
sys/dev/ipmi.c
1163
while (exp > 0) {
sys/dev/ipmi.c
1165
exp--;
sys/dev/ipmi.c
1168
while (exp < 0) {
sys/dev/ipmi.c
1170
exp++;
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
104
float dcn_bw_pow(float a, float exp)
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
108
if ((int)exp == 0)
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
110
temp = dcn_bw_pow(a, (int)(exp / 2));
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
111
if (((int)exp % 2) == 0) {
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
114
if ((int)exp > 0)
sys/dev/pci/drm/amd/display/dc/dml/dml_inline_defs.h
104
static inline double dml_pow(double a, int exp)
sys/dev/pci/drm/amd/display/dc/dml/dml_inline_defs.h
106
return (double) dcn_bw_pow(a, exp);
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
196
dml_float_t dml_pow(dml_float_t base, int exp)
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
198
return (dml_float_t) dcn_bw_pow(base, exp);
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
77
static inline float dcn_bw_pow(float a, float exp)
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
81
if ((int)exp == 0)
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
83
temp = dcn_bw_pow(a, (int)(exp / 2));
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
84
if (((int)exp % 2) == 0) {
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
87
if ((int)exp > 0)
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.h
50
__DML_DLL_EXPORT__ dml_float_t dml_pow(dml_float_t base, int exp);
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
84
float math_pow(float a, float exp)
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
87
if ((int)exp == 0)
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
89
temp = math_pow(a, (float)((int)(exp / 2)));
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
90
if (((int)exp % 2) == 0) {
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
93
if ((int)exp > 0)
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.h
18
float math_pow(float a, float exp);
sys/dev/pci/drm/amd/display/dc/inc/dcn_calc_math.h
39
float dcn_bw_pow(float a, float exp);
sys/dev/pci/drm/i915/display/intel_dpio_phy.c
549
#define _CHK(reg, mask, exp, fmt, ...) \
sys/dev/pci/drm/i915/display/intel_dpio_phy.c
550
__phy_reg_verify_state(display, phy, reg, mask, exp, fmt, \
sys/dev/pci/drm/i915/gvt/gtt.c
422
#define DEFINE_PPGTT_GMA_TO_INDEX(prefix, ename, exp) \
sys/dev/pci/drm/i915/gvt/gtt.c
425
unsigned long x = (exp); \
sys/dev/pci/drm/i915/selftests/i915_vma.c
1072
u32 exp = y << 16 | x;
sys/dev/pci/drm/i915/selftests/i915_vma.c
1082
if (val != exp) {
sys/dev/pci/drm/i915/selftests/i915_vma.c
1085
exp, val);
sys/dev/pci/if_em_osdep.h
205
#define EM_KASSERT(exp,msg) do { if (!(exp)) panic msg; } while (0)
sys/dev/pci/if_em_osdep.h
207
#define EM_KASSERT(exp,msg)
sys/dev/pci/if_ixgb_osdep.h
101
#define IXGB_KASSERT(exp,msg)
sys/dev/pci/if_ixgb_osdep.h
99
#define IXGB_KASSERT(exp,msg) do { if (!(exp)) panic msg; } while (0)
sys/dev/usb/if_otus.c
1902
uint32_t exp, man;
sys/dev/usb/if_otus.c
1905
for (exp = 31; exp > 0; exp--)
sys/dev/usb/if_otus.c
1906
if (coeff & (1 << exp))
sys/dev/usb/if_otus.c
1908
KASSERT(exp != 0);
sys/dev/usb/if_otus.c
1909
exp = 14 - (exp - COEFF_SCALE_SHIFT);
sys/dev/usb/if_otus.c
1912
man = coeff + (1 << (COEFF_SCALE_SHIFT - exp - 1));
sys/dev/usb/if_otus.c
1914
*mantissa = man >> (COEFF_SCALE_SHIFT - exp);
sys/dev/usb/if_otus.c
1915
*exponent = exp - 16;
sys/dev/usb/if_otus.c
1926
uint32_t coeff, exp, man, tmp;
sys/dev/usb/if_otus.c
1998
otus_get_delta_slope(coeff, &exp, &man);
sys/dev/usb/if_otus.c
1999
cmd.dsc_exp = htole32(exp);
sys/dev/usb/if_otus.c
2001
DPRINTF(("ds coeff=%u exp=%u man=%u\n", coeff, exp, man));
sys/dev/usb/if_otus.c
2004
otus_get_delta_slope(coeff, &exp, &man);
sys/dev/usb/if_otus.c
2005
cmd.dsc_shgi_exp = htole32(exp);
sys/dev/usb/if_otus.c
2007
DPRINTF(("ds shgi coeff=%u exp=%u man=%u\n", coeff, exp, man));
sys/kern/kern_acct.c
267
int exp, rnd;
sys/kern/kern_acct.c
269
exp = 0;
sys/kern/kern_acct.c
277
exp++;
sys/kern/kern_acct.c
283
exp++;
sys/kern/kern_acct.c
287
exp <<= MANTSIZE; /* Shift the exponent into place */
sys/kern/kern_acct.c
288
exp += s; /* and add on the mantissa. */
sys/kern/kern_acct.c
289
return (exp);
sys/kern/kern_clockintr.c
512
uint64_t exp, now;
sys/kern/kern_clockintr.c
517
exp = clockqueue_next(cq);
sys/kern/kern_clockintr.c
519
if (now < exp)
sys/kern/kern_clockintr.c
520
intrclock_rearm(&cq->cq_intrclock, exp - now);
sys/kern/subr_blist.c
125
#define KASSERT(exp) assert(exp)
sys/kern/subr_blist.c
126
#define KDASSERT(exp) assert(exp)
sys/net/if_mpe.c
445
uint32_t exp;
sys/net/if_mpe.c
452
exp = ntohl(shim->shim_label & MPLS_EXP_MASK) >> MPLS_EXP_OFFSET;
sys/net/if_mpe.c
518
m->m_pkthdr.pf.prio = exp;
sys/net/if_mpip.c
473
uint32_t shim, exp;
sys/net/if_mpip.c
487
exp = ntohl(shim & MPLS_EXP_MASK) >> MPLS_EXP_OFFSET;
sys/net/if_mpip.c
607
m->m_pkthdr.pf.prio = exp;
sys/net/if_mpip.c
680
uint32_t exp, bos;
sys/net/if_mpip.c
763
exp = htonl(prio << MPLS_EXP_OFFSET);
sys/net/if_mpip.c
789
shim |= exp | bos;
sys/net/if_mpip.c
801
shim |= exp | bos;
sys/net/if_mpw.c
522
uint32_t exp;
sys/net/if_mpw.c
533
exp = ntohl(shim->shim_label & MPLS_EXP_MASK) >> MPLS_EXP_OFFSET;
sys/net/if_mpw.c
614
m->m_pkthdr.pf.prio = exp;
sys/net/if_mpw.c
654
uint32_t exp, bos;
sys/net/if_mpw.c
712
exp = htonl(prio << MPLS_EXP_OFFSET);
sys/net/if_mpw.c
727
shim->shim_label |= MPLS_LABEL2SHIM(flow) | exp | bos;
sys/net/if_mpw.c
738
shim->shim_label |= n->n_rshim.shim_label | exp | bos;
sys/sys/cdefs.h
204
#define __predict_true(exp) __builtin_expect(((exp) != 0), 1)
sys/sys/cdefs.h
205
#define __predict_false(exp) __builtin_expect(((exp) != 0), 0)
sys/sys/cdefs.h
207
#define __predict_true(exp) ((exp) != 0)
sys/sys/cdefs.h
208
#define __predict_false(exp) ((exp) != 0)
usr.bin/awk/run.c
2083
u = errcheck(exp(getfval(x)), "exp");
usr.bin/ctags/ctags.h
45
#define GETC(op,exp) ((c = getc(inf)) op (int)exp)
usr.bin/dig/lib/dns/rdata/generic/rrsig_46.c
33
unsigned long exp;
usr.bin/dig/lib/dns/rdata/generic/rrsig_46.c
82
exp = uint32_fromregion(&sr);
usr.bin/dig/lib/dns/rdata/generic/rrsig_46.c
84
RETERR(dns_time32_totext(exp, target));
usr.bin/dig/lib/dns/rdata/generic/sig_24.c
33
unsigned long exp;
usr.bin/dig/lib/dns/rdata/generic/sig_24.c
81
exp = uint32_fromregion(&sr);
usr.bin/dig/lib/dns/rdata/generic/sig_24.c
83
RETERR(dns_time32_totext(exp, target));
usr.bin/kstat/kstat.c
463
printf(" %sHz", si_prefixes[fr.exp]);
usr.bin/kstat/kstat.c
58
unsigned int exp;
usr.bin/kstat/kstat.c
64
unsigned int exp = 0;
usr.bin/kstat/kstat.c
70
exp++;
usr.bin/kstat/kstat.c
74
fr->exp = exp;
usr.bin/make/expandchildren.c
165
LIST exp; /* List of expansions */
usr.bin/make/expandchildren.c
177
Lst_Init(&exp);
usr.bin/make/expandchildren.c
178
Dir_Expand(cgn->name, path, &exp);
usr.bin/make/expandchildren.c
181
while ((cp = Lst_DeQueue(&exp)) != NULL) {
usr.bin/showmount/showmount.c
204
exp = exports;
usr.bin/showmount/showmount.c
205
while (exp) {
usr.bin/showmount/showmount.c
206
strnvis(vp, exp->ex_dirp, sizeof vp, VIS_CSTYLE);
usr.bin/showmount/showmount.c
208
grp = exp->ex_groups;
usr.bin/showmount/showmount.c
220
exp = exp->ex_next;
usr.bin/showmount/showmount.c
308
xdr_exports(XDR *xdrsp, struct exportslist **exp)
usr.bin/showmount/showmount.c
315
*exp = NULL;
usr.bin/showmount/showmount.c
340
ep->ex_next = *exp;
usr.bin/showmount/showmount.c
341
*exp = ep;
usr.bin/showmount/showmount.c
95
struct exportslist *exp;
usr.bin/vi/ex/ex.c
1194
if ((*++p != 'o' || exp->argsoff != 0) &&
usr.bin/vi/ex/ex.c
1195
exp->argsoff != tmp)
usr.bin/vi/ex/ex.c
197
EX_PRIVATE *exp;
usr.bin/vi/ex/ex.c
211
exp = EXP(sp);
usr.bin/vi/ex/ex.c
532
exp->fdef = E_C_HASH;
usr.bin/vi/ex/ex.c
534
exp->fdef = E_C_LIST;
usr.bin/vi/ex/ex.c
536
exp->fdef = E_C_PRINT;
usr.bin/vi/ex/ex.c
543
F_SET(ecp, exp->fdef);
usr.bin/vi/ex/ex.c
982
exp->fdef |= E_C_HASH;
usr.bin/vi/ex/ex.c
986
exp->fdef |= E_C_LIST;
usr.bin/vi/ex/ex.c
990
exp->fdef |= E_C_PRINT;
usr.bin/vi/ex/ex_argv.c
233
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_argv.c
238
for (exp = EXP(sp); cmdlen > 0; ++exp->argsoff) {
usr.bin/vi/ex/ex_argv.c
274
off = exp->argsoff;
usr.bin/vi/ex/ex_argv.c
275
exp->args[off]->len = len;
usr.bin/vi/ex/ex_argv.c
276
for (p = exp->args[off]->bp; len > 0; --len, *p++ = *ap++)
usr.bin/vi/ex/ex_argv.c
281
excp->argv = exp->args;
usr.bin/vi/ex/ex_argv.c
282
excp->argc = exp->argsoff;
usr.bin/vi/ex/ex_argv.c
285
for (cnt = 0; cnt < exp->argsoff; ++cnt)
usr.bin/vi/ex/ex_argv.c
286
TRACE(sp, "arg %d: {%s}\n", cnt, exp->argv[cnt]);
usr.bin/vi/ex/ex_argv.c
299
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_argv.c
309
exp = EXP(sp);
usr.bin/vi/ex/ex_argv.c
310
if (exp->lastbcomm == NULL) {
usr.bin/vi/ex/ex_argv.c
315
len += tlen = strlen(exp->lastbcomm);
usr.bin/vi/ex/ex_argv.c
319
memcpy(p, exp->lastbcomm, tlen);
usr.bin/vi/ex/ex_argv.c
395
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_argv.c
403
exp = EXP(sp);
usr.bin/vi/ex/ex_argv.c
404
off = exp->argsoff;
usr.bin/vi/ex/ex_argv.c
405
if (exp->argscnt == 0 || off + 2 >= exp->argscnt - 1) {
usr.bin/vi/ex/ex_argv.c
406
cnt = exp->argscnt + INCREMENT;
usr.bin/vi/ex/ex_argv.c
407
REALLOCARRAY(sp, exp->args, cnt, sizeof(ARGS *));
usr.bin/vi/ex/ex_argv.c
408
if (exp->args == NULL) {
usr.bin/vi/ex/ex_argv.c
412
memset(&exp->args[exp->argscnt], 0, INCREMENT * sizeof(ARGS *));
usr.bin/vi/ex/ex_argv.c
413
exp->argscnt = cnt;
usr.bin/vi/ex/ex_argv.c
417
if (exp->args[off] == NULL) {
usr.bin/vi/ex/ex_argv.c
418
CALLOC(sp, exp->args[off], 1, sizeof(ARGS));
usr.bin/vi/ex/ex_argv.c
419
if (exp->args[off] == NULL)
usr.bin/vi/ex/ex_argv.c
424
ap = exp->args[off];
usr.bin/vi/ex/ex_argv.c
440
if (exp->args[++off] == NULL) {
usr.bin/vi/ex/ex_argv.c
441
CALLOC(sp, exp->args[off], 1, sizeof(ARGS));
usr.bin/vi/ex/ex_argv.c
442
if (exp->args[off] == NULL)
usr.bin/vi/ex/ex_argv.c
446
exp->args[off]->len = 0;
usr.bin/vi/ex/ex_argv.c
45
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_argv.c
459
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_argv.c
462
exp = EXP(sp);
usr.bin/vi/ex/ex_argv.c
463
if (exp->args != NULL) {
usr.bin/vi/ex/ex_argv.c
464
for (off = 0; off < exp->argscnt; ++off) {
usr.bin/vi/ex/ex_argv.c
465
if (exp->args[off] == NULL)
usr.bin/vi/ex/ex_argv.c
467
if (F_ISSET(exp->args[off], A_ALLOCATED))
usr.bin/vi/ex/ex_argv.c
468
free(exp->args[off]->bp);
usr.bin/vi/ex/ex_argv.c
469
free(exp->args[off]);
usr.bin/vi/ex/ex_argv.c
47
exp = EXP(sp);
usr.bin/vi/ex/ex_argv.c
471
free(exp->args);
usr.bin/vi/ex/ex_argv.c
473
exp->args = NULL;
usr.bin/vi/ex/ex_argv.c
474
exp->argscnt = 0;
usr.bin/vi/ex/ex_argv.c
475
exp->argsoff = 0;
usr.bin/vi/ex/ex_argv.c
48
exp->argsoff = 0;
usr.bin/vi/ex/ex_argv.c
489
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_argv.c
494
exp = EXP(sp);
usr.bin/vi/ex/ex_argv.c
51
excp->argv = exp->args;
usr.bin/vi/ex/ex_argv.c
518
for (off = exp->argsoff; (dp = readdir(dirp)) != NULL;) {
usr.bin/vi/ex/ex_argv.c
52
excp->argc = exp->argsoff;
usr.bin/vi/ex/ex_argv.c
530
p = exp->args[exp->argsoff]->bp;
usr.bin/vi/ex/ex_argv.c
538
exp->args[exp->argsoff]->len = dlen + dp->d_namlen + 1;
usr.bin/vi/ex/ex_argv.c
539
++exp->argsoff;
usr.bin/vi/ex/ex_argv.c
540
excp->argv = exp->args;
usr.bin/vi/ex/ex_argv.c
541
excp->argc = exp->argsoff;
usr.bin/vi/ex/ex_argv.c
545
if (off == exp->argsoff) {
usr.bin/vi/ex/ex_argv.c
554
qsort(exp->args + off, exp->argsoff - off, sizeof(ARGS *), argv_comp);
usr.bin/vi/ex/ex_argv.c
65
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_argv.c
67
exp = EXP(sp);
usr.bin/vi/ex/ex_argv.c
69
memcpy(exp->args[exp->argsoff]->bp, cmd, cmdlen);
usr.bin/vi/ex/ex_argv.c
70
exp->args[exp->argsoff]->bp[cmdlen] = '\0';
usr.bin/vi/ex/ex_argv.c
71
exp->args[exp->argsoff]->len = cmdlen;
usr.bin/vi/ex/ex_argv.c
72
++exp->argsoff;
usr.bin/vi/ex/ex_argv.c
73
excp->argv = exp->args;
usr.bin/vi/ex/ex_argv.c
74
excp->argc = exp->argsoff;
usr.bin/vi/ex/ex_bang.c
52
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_bang.c
65
exp = EXP(sp);
usr.bin/vi/ex/ex_bang.c
66
free(exp->lastbcomm);
usr.bin/vi/ex/ex_bang.c
67
if ((exp->lastbcomm = strdup(ap->bp)) == NULL) {
usr.bin/vi/ex/ex_filter.c
342
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_filter.c
344
for (exp = EXP(sp); !ex_getline(sp, fp, &len) && !INTERRUPTED(sp);)
usr.bin/vi/ex/ex_filter.c
345
if (ex_ldisplay(sp, exp->ibp, len, 0, 0))
usr.bin/vi/ex/ex_init.c
100
free(exp);
usr.bin/vi/ex/ex_init.c
78
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_init.c
81
if ((exp = EXP(sp)) == NULL)
usr.bin/vi/ex/ex_init.c
93
free(exp->ibp);
usr.bin/vi/ex/ex_init.c
94
free(exp->lastbcomm);
usr.bin/vi/ex/ex_print.c
245
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_print.c
249
exp = EXP(sp);
usr.bin/vi/ex/ex_print.c
252
n = vsnprintf(exp->obp + exp->obp_len,
usr.bin/vi/ex/ex_print.c
253
sizeof(exp->obp) - exp->obp_len, fmt, ap);
usr.bin/vi/ex/ex_print.c
255
if (n >= sizeof(exp->obp) - exp->obp_len)
usr.bin/vi/ex/ex_print.c
256
n = sizeof(exp->obp) - exp->obp_len - 1;
usr.bin/vi/ex/ex_print.c
257
exp->obp_len += n;
usr.bin/vi/ex/ex_print.c
260
if (exp->obp[exp->obp_len - 1] == '\n' ||
usr.bin/vi/ex/ex_print.c
261
exp->obp_len > sizeof(exp->obp) / 2)
usr.bin/vi/ex/ex_print.c
275
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_print.c
278
exp = EXP(sp);
usr.bin/vi/ex/ex_print.c
282
if (exp->obp_len > sizeof(exp->obp))
usr.bin/vi/ex/ex_print.c
284
if ((exp->obp[exp->obp_len++] = *str++) == '\n')
usr.bin/vi/ex/ex_print.c
301
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_print.c
303
exp = EXP(sp);
usr.bin/vi/ex/ex_print.c
305
if (exp->obp_len != 0) {
usr.bin/vi/ex/ex_print.c
306
sp->gp->scr_msg(sp, M_NONE, exp->obp, exp->obp_len);
usr.bin/vi/ex/ex_print.c
307
exp->obp_len = 0;
usr.bin/vi/ex/ex_read.c
113
exp = EXP(sp);
usr.bin/vi/ex/ex_read.c
114
free(exp->lastbcomm);
usr.bin/vi/ex/ex_read.c
115
if ((exp->lastbcomm =
usr.bin/vi/ex/ex_read.c
297
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_read.c
306
exp = EXP(sp);
usr.bin/vi/ex/ex_read.c
325
if (db_append(sp, 1, lno, exp->ibp, len))
usr.bin/vi/ex/ex_read.c
46
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
102
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
105
free(exp->tag_last);
usr.bin/vi/ex/ex_tag.c
107
if ((exp->tag_last = strdup(cmdp->argv[0]->bp)) == NULL) {
usr.bin/vi/ex/ex_tag.c
114
O_VAL(sp, O_TAGLENGTH)) != 0 && strlen(exp->tag_last) > tl)
usr.bin/vi/ex/ex_tag.c
115
exp->tag_last[tl] = '\0';
usr.bin/vi/ex/ex_tag.c
118
if (exp->tag_last == NULL) {
usr.bin/vi/ex/ex_tag.c
128
if ((tqp = ctag_slist(sp, exp->tag_last)) == NULL)
usr.bin/vi/ex/ex_tag.c
137
if (TAILQ_EMPTY(&exp->tq)) {
usr.bin/vi/ex/ex_tag.c
167
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
177
if (TAILQ_EMPTY(&exp->tq)) {
usr.bin/vi/ex/ex_tag.c
178
TAILQ_INSERT_HEAD(&exp->tq, rtqp, q);
usr.bin/vi/ex/ex_tag.c
180
rtqp = TAILQ_FIRST(&exp->tq);
usr.bin/vi/ex/ex_tag.c
183
TAILQ_INSERT_HEAD(&exp->tq, tqp, q);
usr.bin/vi/ex/ex_tag.c
225
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
229
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
230
if ((tqp = TAILQ_FIRST(&exp->tq)) == NULL) {
usr.bin/vi/ex/ex_tag.c
256
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
260
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
261
if ((tqp = TAILQ_FIRST(&exp->tq)) == NULL) {
usr.bin/vi/ex/ex_tag.c
375
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
382
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
383
if (TAILQ_EMPTY(&exp->tq)) {
usr.bin/vi/ex/ex_tag.c
391
dtqp = TAILQ_FIRST(&exp->tq);
usr.bin/vi/ex/ex_tag.c
402
TAILQ_FOREACH(tqp, &exp->tq, q) {
usr.bin/vi/ex/ex_tag.c
417
for (tqp = TAILQ_FIRST(&exp->tq); tqp;
usr.bin/vi/ex/ex_tag.c
420
if (tqp == TAILQ_FIRST(&exp->tq))
usr.bin/vi/ex/ex_tag.c
435
if (tqp == TAILQ_FIRST(&exp->tq))
usr.bin/vi/ex/ex_tag.c
455
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
457
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
460
if (TAILQ_EMPTY(&exp->tq)) {
usr.bin/vi/ex/ex_tag.c
467
TAILQ_PREV(TAILQ_LAST(&exp->tq, _tqh), _tqh, q),
usr.bin/vi/ex/ex_tag.c
478
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
482
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
507
tqp = TAILQ_FIRST(&exp->tq);
usr.bin/vi/ex/ex_tag.c
516
if (TAILQ_NEXT(TAILQ_FIRST(&exp->tq), q) == NULL)
usr.bin/vi/ex/ex_tag.c
517
tagq_free(sp, TAILQ_FIRST(&exp->tq));
usr.bin/vi/ex/ex_tag.c
531
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
538
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
539
if (TAILQ_EMPTY(&exp->tq)) {
usr.bin/vi/ex/ex_tag.c
543
tqp = TAILQ_FIRST(&exp->tq);
usr.bin/vi/ex/ex_tag.c
569
TAILQ_FOREACH(tqp, &exp->tq, q) {
usr.bin/vi/ex/ex_tag.c
733
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
735
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
736
TAILQ_REMOVE(&exp->tagfq, tfp, q);
usr.bin/vi/ex/ex_tag.c
751
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
755
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
765
TAILQ_FOREACH(ttqp, &exp->tq, q) {
usr.bin/vi/ex/ex_tag.c
767
TAILQ_REMOVE(&exp->tq, tqp, q);
usr.bin/vi/ex/ex_tag.c
809
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
815
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
816
while ((tfp = TAILQ_FIRST(&exp->tagfq)) != NULL)
usr.bin/vi/ex/ex_tag.c
832
TAILQ_INSERT_TAIL(&exp->tagfq, tfp, q);
usr.bin/vi/ex/ex_tag.c
851
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
856
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
857
while ((tqp = TAILQ_FIRST(&exp->tq)))
usr.bin/vi/ex/ex_tag.c
859
while ((tfp = TAILQ_FIRST(&exp->tagfq)) != NULL)
usr.bin/vi/ex/ex_tag.c
861
free(exp->tag_last);
usr.bin/vi/ex/ex_tag.c
93
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
932
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_tag.c
938
exp = EXP(sp);
usr.bin/vi/ex/ex_tag.c
952
TAILQ_FOREACH(tfp, &exp->tagfq, q)
usr.bin/vi/ex/ex_tag.c
963
TAILQ_FOREACH(tfp, &exp->tagfq, q)
usr.bin/vi/ex/ex_util.c
75
EX_PRIVATE *exp;
usr.bin/vi/ex/ex_util.c
80
exp = EXP(sp);
usr.bin/vi/ex/ex_util.c
81
for (errno = 0, off = 0, p = exp->ibp;;) {
usr.bin/vi/ex/ex_util.c
82
if (off >= exp->ibp_len) {
usr.bin/vi/ex/ex_util.c
83
BINC_RET(sp, exp->ibp, exp->ibp_len, off + 1);
usr.bin/vi/ex/ex_util.c
84
p = exp->ibp + off;
usr.bin/vi/vi/v_ex.c
342
v_exec_ex(SCR *sp, VICMD *vp, EXCMD *exp)
usr.bin/vi/vi/v_ex.c
346
rval = exp->cmd->fn(sp, exp);
usr.sbin/acme-client/acctproc.c
187
char *exp = NULL, *mod = NULL;
usr.sbin/acme-client/acctproc.c
202
else if ((exp = bn2string(RSA_get0_e(r))) == NULL)
usr.sbin/acme-client/acctproc.c
204
else if ((*prot = json_fmt_protected_rsa(exp, mod, nonce, url)) == NULL)
usr.sbin/acme-client/acctproc.c
209
free(exp);
usr.sbin/acme-client/acctproc.c
79
char *exp = NULL, *mod = NULL, *json = NULL;
usr.sbin/acme-client/acctproc.c
86
else if ((exp = bn2string(RSA_get0_e(r))) == NULL)
usr.sbin/acme-client/acctproc.c
88
else if ((json = json_fmt_thumb_rsa(exp, mod)) == NULL)
usr.sbin/acme-client/acctproc.c
91
free(exp);
usr.sbin/acme-client/json.c
743
json_fmt_protected_rsa(const char *exp, const char *mod, const char *nce,
usr.sbin/acme-client/json.c
756
exp, mod, nce, url);
usr.sbin/acme-client/json.c
841
json_fmt_thumb_rsa(const char *exp, const char *mod)
usr.sbin/acme-client/json.c
849
exp, mod);
usr.sbin/nsd/udb.c
1002
assert(fp->exp == (uint8_t)exp);
usr.sbin/nsd/udb.c
1004
assert(chunk_get_last(base, chunk, exp) == (uint8_t)exp);
usr.sbin/nsd/udb.c
1006
assert(alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP]);
usr.sbin/nsd/udb.c
1010
else alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP] = fp->next;
usr.sbin/nsd/udb.c
1017
udb_alloc_pop_fl(void* base, udb_alloc* alloc, int exp)
usr.sbin/nsd/udb.c
1019
udb_void f = alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP];
usr.sbin/nsd/udb.c
1022
assert(fp->exp == (uint8_t)exp);
usr.sbin/nsd/udb.c
1024
assert(chunk_get_last(base, f, exp) == (uint8_t)exp);
usr.sbin/nsd/udb.c
1025
alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP] = fp->next;
usr.sbin/nsd/udb.c
1034
udb_alloc_push_fl(void* base, udb_alloc* alloc, udb_void f, int exp)
usr.sbin/nsd/udb.c
1038
fp->exp = (uint8_t)exp;
usr.sbin/nsd/udb.c
1042
fp->next = alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP];
usr.sbin/nsd/udb.c
1045
chunk_set_last(base, f, exp, (uint8_t)exp);
usr.sbin/nsd/udb.c
1046
alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP] = f;
usr.sbin/nsd/udb.c
1051
udb_alloc_push_fl_noinit(void* base, udb_alloc* alloc, udb_void f, int exp)
usr.sbin/nsd/udb.c
1055
assert(fp->exp == (uint8_t)exp);
usr.sbin/nsd/udb.c
1057
assert(chunk_get_last(base, f, exp) == (uint8_t)exp);
usr.sbin/nsd/udb.c
1059
fp->next = alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP];
usr.sbin/nsd/udb.c
1062
alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP] = f;
usr.sbin/nsd/udb.c
1086
grow_chunks(void* base, udb_alloc* alloc, size_t sz, int exp)
usr.sbin/nsd/udb.c
1088
uint64_t esz = (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
1095
UDB_CHUNK(ret)->exp = (uint8_t)exp;
usr.sbin/nsd/udb.c
1100
chunk_set_last(base, ret, exp, (uint8_t)exp);
usr.sbin/nsd/udb.c
1113
grow_end_calc(udb_alloc* alloc, int exp)
usr.sbin/nsd/udb.c
1115
uint64_t sz = (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
1174
udb_alloc_grow_space(void* base, udb_alloc* alloc, size_t sz, int exp)
usr.sbin/nsd/udb.c
1183
uint64_t grow_end = grow_end_calc(alloc, exp);
usr.sbin/nsd/udb.c
1187
return grow_chunks(base, alloc, sz, exp);
usr.sbin/nsd/udb.c
1199
return grow_chunks(base, alloc, sz, exp);
usr.sbin/nsd/udb.c
1216
p->exp = UDB_EXP_XL;
usr.sbin/nsd/udb.c
1262
int exp)
usr.sbin/nsd/udb.c
1266
assert(big && e2 > exp);
usr.sbin/nsd/udb.c
1273
} while(e != exp);
usr.sbin/nsd/udb.c
1283
int exp;
usr.sbin/nsd/udb.c
1289
exp = udb_exp_size(asz);
usr.sbin/nsd/udb.c
1290
assert(exp <= UDB_ALLOC_CHUNKS_MAX);
usr.sbin/nsd/udb.c
1291
return exp;
usr.sbin/nsd/udb.c
1298
int e2, exp = udb_alloc_exp_needed(sz);
usr.sbin/nsd/udb.c
1299
if(exp == UDB_EXP_XL)
usr.sbin/nsd/udb.c
1302
if(alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP]) {
usr.sbin/nsd/udb.c
1306
ret = udb_alloc_pop_fl(base, alloc, exp);
usr.sbin/nsd/udb.c
1313
alloc->disk->stat_alloc += (1<<exp);
usr.sbin/nsd/udb.c
1314
assert(alloc->disk->stat_free >= (1u<<exp));
usr.sbin/nsd/udb.c
1315
alloc->disk->stat_free -= (1<<exp);
usr.sbin/nsd/udb.c
1320
for(e2 = exp+1; e2 <= UDB_ALLOC_CHUNKS_MAX; e2++)
usr.sbin/nsd/udb.c
1326
ret = udb_alloc_subdivide(base, alloc, big, e2, exp);
usr.sbin/nsd/udb.c
1328
UDB_CHUNK(ret)->exp = (uint8_t)exp;
usr.sbin/nsd/udb.c
1335
chunk_set_last(base, ret, exp, (uint8_t)exp);
usr.sbin/nsd/udb.c
1338
alloc->disk->stat_alloc += (1<<exp);
usr.sbin/nsd/udb.c
1339
assert(alloc->disk->stat_free >= (1u<<exp));
usr.sbin/nsd/udb.c
1340
alloc->disk->stat_free -= (1<<exp);
usr.sbin/nsd/udb.c
1345
return udb_alloc_grow_space(base, alloc, sz, exp);
usr.sbin/nsd/udb.c
1350
have_free_for(udb_alloc* alloc, int exp)
usr.sbin/nsd/udb.c
1353
if(alloc->disk->free[exp-UDB_ALLOC_CHUNK_MINEXP])
usr.sbin/nsd/udb.c
1354
return exp;
usr.sbin/nsd/udb.c
1355
for(e2 = exp+1; e2 <= UDB_ALLOC_CHUNKS_MAX; e2++)
usr.sbin/nsd/udb.c
1400
move_chunk(void* base, udb_alloc* alloc, udb_void f, int exp, uint64_t esz,
usr.sbin/nsd/udb.c
1406
if(exp != e2) {
usr.sbin/nsd/udb.c
1408
res = udb_alloc_subdivide(base, alloc, res, e2, exp);
usr.sbin/nsd/udb.c
1435
assert(UDB_CHUNK(q)->exp == UDB_ALLOC_CHUNKS_MAX);
usr.sbin/nsd/udb.c
1486
assert(xlp->exp == UDB_EXP_XL);
usr.sbin/nsd/udb.c
1502
coagulate_possible(void* base, udb_alloc* alloc, udb_void f, int exp,
usr.sbin/nsd/udb.c
1506
if(exp == UDB_ALLOC_CHUNKS_MAX)
usr.sbin/nsd/udb.c
1521
if(*((uint8_t*)UDB_REL(base, f-1)) == (uint8_t)exp) {
usr.sbin/nsd/udb.c
1523
assert(UDB_FREE_CHUNK(other)->exp == (uint8_t)exp);
usr.sbin/nsd/udb.c
1528
if(UDB_CHUNK(other)->exp == (uint8_t)exp) {
usr.sbin/nsd/udb.c
1530
assert(chunk_get_last(base, other, exp)==(uint8_t)exp);
usr.sbin/nsd/udb.c
1540
coagulate_and_push(void* base, udb_alloc* alloc, udb_void last, int exp,
usr.sbin/nsd/udb.c
1545
while( (other=coagulate_possible(base, alloc, last, exp, esz)) ) {
usr.sbin/nsd/udb.c
1547
udb_alloc_unlink_fl(base, alloc, other, exp);
usr.sbin/nsd/udb.c
1551
exp++;
usr.sbin/nsd/udb.c
1555
udb_alloc_push_fl(base, alloc, last, exp);
usr.sbin/nsd/udb.c
1564
int exp, e2;
usr.sbin/nsd/udb.c
1574
exp = (int)*((uint8_t*)UDB_REL(base, at-1));
usr.sbin/nsd/udb.c
1575
if(exp == UDB_EXP_XL) {
usr.sbin/nsd/udb.c
1585
assert(xlp->exp == UDB_EXP_XL);
usr.sbin/nsd/udb.c
1605
} else if(exp < UDB_ALLOC_CHUNK_MINEXP
usr.sbin/nsd/udb.c
1606
|| exp > UDB_ALLOC_CHUNKS_MAX)
usr.sbin/nsd/udb.c
1608
esz = (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
1610
assert(UDB_CHUNK(last)->exp == (uint8_t)exp);
usr.sbin/nsd/udb.c
1617
udb_alloc_unlink_fl(base, alloc, last, exp);
usr.sbin/nsd/udb.c
1624
} else if( (e2=have_free_for(alloc, exp)) ) {
usr.sbin/nsd/udb.c
1628
move_chunk(base, alloc, last, exp, esz, e2);
usr.sbin/nsd/udb.c
1631
last, exp, esz);
usr.sbin/nsd/udb.c
1666
assert(UDB_CHUNK(chunk)->exp==UDB_ALLOC_CHUNKS_MAX);
usr.sbin/nsd/udb.c
1756
int exp;
usr.sbin/nsd/udb.c
1777
if(fp->exp == UDB_EXP_XL) {
usr.sbin/nsd/udb.c
1787
exp = (int)fp->exp;
usr.sbin/nsd/udb.c
1788
esz = (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
1791
assert(chunk_get_last(base, f, exp) == (uint8_t)exp);
usr.sbin/nsd/udb.c
1805
while( (other=coagulate_possible(base, alloc, f, exp, esz)) ) {
usr.sbin/nsd/udb.c
1808
udb_alloc_unlink_fl(base, alloc, other, exp);
usr.sbin/nsd/udb.c
1812
exp++;
usr.sbin/nsd/udb.c
1817
udb_alloc_push_fl(base, alloc, f, exp);
usr.sbin/nsd/udb.c
1823
udb_alloc_push_fl_noinit(base, alloc, f, exp);
usr.sbin/nsd/udb.c
1861
if(cp->exp == UDB_EXP_XL) {
usr.sbin/nsd/udb.c
1865
avail = ((uint64_t)1<<cp->exp) - sizeof(udb_chunk_d) - 1;
usr.sbin/nsd/udb.c
1890
int exp = udb_alloc_exp_needed(sz);
usr.sbin/nsd/udb.c
1893
if(exp == UDB_EXP_XL)
usr.sbin/nsd/udb.c
1895
else esz = (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
1897
want = grow_end_calc(alloc, exp) + esz*(num-1);
usr.sbin/nsd/udb.c
1930
int exp;
usr.sbin/nsd/udb.c
1940
exp = UDB_CHUNK(ch)->exp;
usr.sbin/nsd/udb.c
1941
if(exp == UDB_EXP_XL) {
usr.sbin/nsd/udb.c
1957
if(exp < UDB_ALLOC_CHUNK_MINEXP || exp > UDB_ALLOC_CHUNKS_MAX)
usr.sbin/nsd/udb.c
1959
esz = 1<<exp;
usr.sbin/nsd/udb.c
1962
if(*((uint8_t*)UDB_REL(base, ch+esz-1)) != exp)
usr.sbin/nsd/udb.c
55
chunk_get_last(void* base, udb_void chunk, int exp)
usr.sbin/nsd/udb.c
57
return *((uint8_t*)UDB_REL(base, chunk+(1<<exp)-1));
usr.sbin/nsd/udb.c
63
chunk_set_last(void* base, udb_void chunk, int exp, uint8_t value)
usr.sbin/nsd/udb.c
65
assert(exp >= 0 && exp <= 63);
usr.sbin/nsd/udb.c
66
*((uint8_t*)UDB_REL(base, chunk+((uint64_t)1<<exp)-1)) = value;
usr.sbin/nsd/udb.c
690
regen_free(void* base, udb_void c, int exp, udb_alloc_d* regen)
usr.sbin/nsd/udb.c
693
uint64_t esz = (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
694
if(exp < UDB_ALLOC_CHUNK_MINEXP || exp > UDB_ALLOC_CHUNKS_MAX) {
usr.sbin/nsd/udb.c
699
chunk_set_last(base, c, exp, (uint8_t)exp);
usr.sbin/nsd/udb.c
701
cp->next = regen->free[exp-UDB_ALLOC_CHUNK_MINEXP];
usr.sbin/nsd/udb.c
727
regen_data(void* base, udb_void c, int exp, udb_alloc_d* regen)
usr.sbin/nsd/udb.c
729
uint64_t esz = (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
730
if(exp < UDB_ALLOC_CHUNK_MINEXP || exp > UDB_ALLOC_CHUNKS_MAX) {
usr.sbin/nsd/udb.c
733
chunk_set_last(base, c, exp, (uint8_t)exp);
usr.sbin/nsd/udb.c
778
int exp = (int)UDB_CHUNK(at)->exp;
usr.sbin/nsd/udb.c
780
if(exp == UDB_EXP_XL) {
usr.sbin/nsd/udb.c
784
at += (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
787
at += (uint64_t)1<<exp;
usr.sbin/nsd/udb.c
794
int exp = (int)atp->exp;
usr.sbin/nsd/udb.c
796
uint64_t sz = ((exp == UDB_EXP_XL)?UDB_XL_CHUNK(at)->size:
usr.sbin/nsd/udb.c
797
(uint64_t)1<<exp);
usr.sbin/nsd/udb.c
798
if(exp == UDB_EXP_XL) {
usr.sbin/nsd/udb.c
826
UDB_CHUNK(q)->exp = UDB_ALLOC_CHUNKS_MAX;
usr.sbin/nsd/udb.c
924
int exp = (int)UDB_CHUNK(at)->exp;
usr.sbin/nsd/udb.c
928
at = regen_free(base, at, exp, ®en);
usr.sbin/nsd/udb.c
930
} else if(exp == UDB_EXP_XL) {
usr.sbin/nsd/udb.c
934
} else if(exp >= UDB_ALLOC_CHUNK_MINEXP
usr.sbin/nsd/udb.c
935
&& exp <= UDB_ALLOC_CHUNKS_MAX) {
usr.sbin/nsd/udb.c
937
at = regen_data(base, at, exp, ®en);
usr.sbin/nsd/udb.c
997
udb_alloc_unlink_fl(void* base, udb_alloc* alloc, udb_void chunk, int exp)
usr.sbin/nsd/udb.h
234
uint8_t exp;
usr.sbin/nsd/udb.h
255
uint8_t exp;
usr.sbin/nsd/udb.h
277
uint8_t exp;
usr.sbin/tcpdump/print-icmp6.c
814
int mant, exp;
usr.sbin/tcpdump/print-icmp6.c
826
exp = MLD_MRC_EXP(mrc);
usr.sbin/tcpdump/print-icmp6.c
827
mrd = MLDV2_MRD(mant, exp);
usr.sbin/tcpdump/print-icmp6.c
848
exp = MLD_QQIC_EXP(qqic);
usr.sbin/tcpdump/print-icmp6.c
849
qqi = MLDV2_QQI(mant, exp);
usr.sbin/tcpdump/print-icmp6.c
89
#define MLDV2_MRD(mant, exp) ((mant | 0x1000) << (exp + 3))
usr.sbin/tcpdump/print-icmp6.c
92
#define MLDV2_QQI(mant, exp) ((mant | 0x10) << (exp + 3))
usr.sbin/tcpdump/print-mpls.c
45
u_int32_t tag, label, exp, bottom, ttl;
usr.sbin/tcpdump/print-mpls.c
57
exp = (tag >> 9) & 0x7;
usr.sbin/tcpdump/print-mpls.c
61
printf("MPLS(label %u, exp %u, ttl %u) ", label, exp, ttl);
usr.sbin/unbound/sldns/keyraw.c
382
uint16_t exp;
usr.sbin/unbound/sldns/keyraw.c
391
exp = ntohs(int16);
usr.sbin/unbound/sldns/keyraw.c
394
exp = key[0];
usr.sbin/unbound/sldns/keyraw.c
399
if(len < (size_t)offset + exp + 1)
usr.sbin/unbound/sldns/keyraw.c
405
(void) BN_bin2bn(key+offset, (int)exp, *e);
usr.sbin/unbound/sldns/keyraw.c
406
offset += exp;
usr.sbin/unbound/sldns/keyraw.c
49
uint16_t exp;
usr.sbin/unbound/sldns/keyraw.c
74
exp = ntohs(int16);
usr.sbin/unbound/sldns/keyraw.c
75
return (len - exp - 3)*8;
usr.sbin/unbound/sldns/keyraw.c
80
exp = keydata[0];
usr.sbin/unbound/sldns/keyraw.c
81
return (len-exp-1)*8;
usr.sbin/unbound/validator/val_secalgo.c
1182
uint16_t exp;
usr.sbin/unbound/validator/val_secalgo.c
1194
exp = ntohs(int16);
usr.sbin/unbound/validator/val_secalgo.c
1197
exp = key[0];
usr.sbin/unbound/validator/val_secalgo.c
1202
if(len < (size_t)offset + exp + 1)
usr.sbin/unbound/validator/val_secalgo.c
1206
exponent.len = exp;
usr.sbin/unbound/validator/val_secalgo.c
1207
offset += exp;