| /src/external/gpl2/gettext/dist/gettext-runtime/intl/ |
| plural.y | 37 #include "plural-exp.h" 54 struct expression *exp; 148 %type <exp> exp 152 start: exp 160 exp: exp '?' exp ':' exp label 164 | exp '|' ex [all...] |
| /src/external/gpl2/grep/dist/intl/ |
| plural.y | 1 /* $NetBSD: plural.y,v 1.1.1.1 2016/01/10 21:36:18 christos Exp $ */ 37 #include "plural-exp.h" 54 struct expression *exp; 172 %type <exp> exp 176 start: exp 184 exp: exp '?' exp ':' exp label [all...] |
| /src/external/gpl2/texinfo/dist/intl/ |
| plural.y | 1 /* $NetBSD: plural.y,v 1.1.1.1 2016/01/14 00:11:28 christos Exp $ */ 37 #include "plural-exp.h" 54 struct expression *exp; 148 %type <exp> exp 152 start: exp 160 exp: exp '?' exp ':' exp label [all...] |
| /src/external/gpl3/gcc.old/dist/intl/ |
| plural.y | 35 #include "plural-exp.h" 57 struct expression *exp; 180 %type <exp> exp 184 start: exp 192 exp: exp '?' exp ':' exp label 196 | exp '|' ex [all...] |
| /src/external/lgpl3/mpc/dist/src/ |
| uceil_log2.c | 28 mpfr_prec_t exp; local 30 for (exp = 0; d > 1; d = (d + 1) / 2) 31 exp++; 32 return exp;
|
| /src/lib/libc/quad/ |
| fixunsdfdi_ieee754.c | 1 /* $NetBSD: fixunsdfdi_ieee754.c,v 1.1 2013/08/24 00:51:48 matt Exp $ */ 38 __RCSID("$NetBSD: fixunsdfdi_ieee754.c,v 1.1 2013/08/24 00:51:48 matt Exp $"); 58 signed int exp = ux.dblu_exp - DBL_EXP_BIAS; local 63 if (exp > 63) 65 if (exp < 0) 70 exp -= DBL_FRACHBITS; 71 if (exp == 0) 73 if (exp < 0) 74 return r >> -exp; 78 exp -= DBL_FRACLBITS [all...] |
| fixunssfdi_ieee754.c | 1 /* $NetBSD: fixunssfdi_ieee754.c,v 1.1 2013/08/24 00:51:48 matt Exp $ */ 38 __RCSID("$NetBSD: fixunssfdi_ieee754.c,v 1.1 2013/08/24 00:51:48 matt Exp $"); 58 signed int exp = ux.sngu_exp - SNG_EXP_BIAS; local 63 if (exp > 63) 65 if (exp < 0) 70 exp -= SNG_FRACBITS; 71 if (exp == 0) 73 if (exp < 0) 74 return r >> -exp; 76 return r << exp; [all...] |
| /src/lib/libm/src/ |
| w_exp.c | 15 __RCSID("$NetBSD: w_exp.c,v 1.11 2025/08/24 21:37:31 nat Exp $"); 19 * wrapper exp(x) 27 __weak_alias(exp, _exp) 37 exp(double x) /* wrapper exp */ function 47 return __kernel_standard(x,x,6); /* exp overflow */ 49 return __kernel_standard(x,x,7); /* exp underflow */
|
| /src/external/bsd/flex/dist/examples/manual/ |
| expr.y | 25 %type <val> exp NUMBER 33 | exp EOL { printf("%g\n",$1);} 35 exp : NUMBER { $$ = $1; } label 36 | exp PLUS exp { $$ = $1 + $3; } 37 | exp MINUS exp { $$ = $1 - $3; } 38 | exp MULT exp { $$ = $1 * $3; } 39 | exp DIV exp { $$ = $1 / $3; [all...] |
| /src/external/gpl3/gcc.old/dist/libquadmath/math/ |
| sqrtq.c | 9 int exp; local 51 y = frexpq (x, &exp); 52 if (exp % 2) 53 y *= 2, exp--; 56 y = scalbnq (y, exp / 2);
|
| /src/external/lgpl3/gmp/dist/mpf/ |
| dump.c | 43 mp_exp_t exp; local 46 str = mpf_get_str (0, &exp, 10, 0, u); 48 printf ("-0.%se%ld\n", str + 1, exp); 50 printf ("0.%se%ld\n", str, exp);
|
| fits_u.h | 41 mp_exp_t exp; variable 44 exp = EXP(f); 45 if (exp < 1) 49 if (fn < 0) /* zero catched by exp == 0 */ 54 if (exp == 1) 59 else if (exp == 2 && MAXIMUM > GMP_NUMB_MAX)
|
| get_d.c | 37 long exp; local 44 exp = (EXP (src) - abs_size) * GMP_NUMB_BITS; 45 return mpn_get_d (PTR (src), abs_size, size, exp);
|
| get_ui.c | 45 The limb just above the radix point for us to extract is ptr[size-exp]. 47 We need to check that the size-exp index falls in our available data 49 involving exp by requiring size>=exp (giving size-exp >= 0) and exp>0 50 (giving size-exp <= size-1). 52 Notice if size==0 there's no fetch, since of course size>=exp and exp>0 58 is ptr[size-exp+1] 77 mp_exp_t exp; variable [all...] |
| int_p.c | 39 mp_exp_t exp; variable 43 exp = EXP (f); 44 if (exp <= 0) 54 return size <= exp;
|
| /src/external/lgpl3/mpfr/dist/src/ |
| div_2si.c | 40 mpfr_exp_t exp = MPFR_GET_EXP (x); local 41 MPFR_SETRAW (inexact, y, x, exp, rnd_mode); 43 exp < __gmpfr_emin + n)) ) 47 exp < __gmpfr_emin + (n - 1) || 54 exp > __gmpfr_emax + n)) ) 57 MPFR_SET_EXP (y, exp - n);
|
| div_2ui.c | 39 mpfr_exp_t exp = MPFR_GET_EXP (x); local 42 MPFR_SETRAW (inexact, y, x, exp, rnd_mode); 43 /* Warning! exp may have increased by 1 due to rounding. Thus the 47 diffexp = (mpfr_uexp_t) exp - (mpfr_uexp_t) (__gmpfr_emin - 1); 48 if (MPFR_UNLIKELY (n >= diffexp)) /* exp - n <= emin - 1 */ 57 /* Now, n < diffexp, i.e. n <= exp - emin, which a difference of 60 * an overflow (if exp had been increased by 1 due to rounding) 65 MPFR_SET_EXP (y, exp - (mpfr_exp_t) n);
|
| get_q.c | 31 mpfr_exp_t exp; local 50 exp = mpfr_get_z_2exp (u, f); 51 if (exp >= 0) 53 MPFR_ASSERTN (exp <= (mp_bitcnt_t) -1); 54 mpz_mul_2exp (u, u, exp); 56 else /* exp < 0 */ 58 MPFR_ASSERTN (-exp <= (mp_bitcnt_t) -1); 59 mpq_div_2exp (q, q, -exp);
|
| get_z.c | 31 mpfr_exp_t exp; local 47 exp = MPFR_GET_EXP (f); 48 /* if exp <= 0, then |f|<1, thus |o(f)|<=1 */ 49 MPFR_ASSERTN (exp < 0 || exp <= MPFR_PREC_MAX); 50 mpfr_init2 (r, (exp < (mpfr_exp_t) MPFR_PREC_MIN ? 51 MPFR_PREC_MIN : (mpfr_prec_t) exp)); 61 exp = mpfr_get_z_2exp (z, r); 62 if (exp >= 0) 63 mpz_mul_2exp (z, z, exp); [all...] |
| mul_2si.c | 40 mpfr_exp_t exp = MPFR_GET_EXP (x); local 41 MPFR_SETRAW (inexact, y, x, exp, rnd_mode); 43 exp > __gmpfr_emax - n))) 46 exp < __gmpfr_emin - n))) 50 exp < __gmpfr_emin - (n + 1) || 56 MPFR_SET_EXP (y, exp + n);
|
| mul_2ui.c | 40 mpfr_exp_t exp = MPFR_GET_EXP (y); local 43 diffexp = __gmpfr_emax - exp; /* diff of two valid exponents */ 44 if (MPFR_UNLIKELY (n > diffexp)) /* exp + n > emax */ 47 and exp + n <= emax (no integer overflow). */ 48 MPFR_SET_EXP (y, exp + (mpfr_exp_t) n);
|
| uceil_exp2.c | 31 long exp; local 39 exp = (long) d; 40 if (d != (double) exp) 41 exp++; 42 /* now exp = ceil(d) */ 45 x.s.exp = exp <= -1022 ? 1 : 1023 + exp; 47 if (exp >= 0) 49 while (exp != 0 [all...] |
| uceil_log2.c | 32 long exp; local 39 exp = (long) x.s.exp - 1023; 40 MPFR_ASSERTN (exp < 1023); /* fail on infinities */ 41 x.s.exp = 1023; /* value for 1 <= d < 2 */ 43 exp++; 44 return exp; 54 exp = 0; 56 exp++; 60 exp = 1 [all...] |
| ufloor_log2.c | 29 long exp; local 36 exp = (long) x.s.exp - 1023; 37 MPFR_ASSERTN (exp < 1023); /* fail on infinities */ 38 return exp; 45 exp = -1; 47 exp++; 51 exp = 0; 53 exp--; 55 return exp; [all...] |
| /src/bin/expr/ |
| expr.y | 1 /* $NetBSD: expr.y,v 1.55 2025/06/29 00:24:23 rillig Exp $ */ 35 __RCSID("$NetBSD: expr.y,v 1.55 2025/06/29 00:24:23 rillig Exp $"); 79 exp: expr { label
|