Searched refs:exp (Results 401 - 425 of 3491) sorted by relevance

<<11121314151617181920>>

/netbsd-current/external/gpl3/gdb.old/dist/gas/
H A Dehopt.c255 check_eh_frame (expressionS *exp, unsigned int *pnbytes) argument
316 if ((exp->X_op == O_symbol || exp->X_op == O_subtract)
317 && ! S_IS_DEFINED (exp->X_add_symbol))
320 d->size_end_sym = exp->X_add_symbol;
348 if ((int)*pnbytes == -1 && exp->X_op == O_constant)
350 d->aug_size = exp->X_add_number;
353 else if (*pnbytes == 1 && exp->X_op == O_constant)
355 unsigned char byte = exp->X_add_number;
382 && exp
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/gas/
H A Dehopt.c255 check_eh_frame (expressionS *exp, unsigned int *pnbytes) argument
316 if ((exp->X_op == O_symbol || exp->X_op == O_subtract)
317 && ! S_IS_DEFINED (exp->X_add_symbol))
320 d->size_end_sym = exp->X_add_symbol;
348 if ((int)*pnbytes == -1 && exp->X_op == O_constant)
350 d->aug_size = exp->X_add_number;
353 else if (*pnbytes == 1 && exp->X_op == O_constant)
355 unsigned char byte = exp->X_add_number;
382 && exp
[all...]
/netbsd-current/external/gpl3/binutils/dist/gas/
H A Dehopt.c274 check_eh_frame (expressionS *exp, unsigned int *pnbytes) argument
318 if ((exp->X_op == O_symbol || exp->X_op == O_subtract)
319 && ! S_IS_DEFINED (exp->X_add_symbol))
322 d->size_end_sym = exp->X_add_symbol;
350 if ((int)*pnbytes == -1 && exp->X_op == O_constant)
352 d->aug_size = exp->X_add_number;
355 else if (*pnbytes == 1 && exp->X_op == O_constant)
357 unsigned char byte = exp->X_add_number;
384 && exp
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dlambdacomp.d167 if (rs && rs.exp)
169 rs.exp.accept(this);
177 override void visit(DotIdExp exp)
180 printf("DotIdExp: %s\n", exp.toChars());
188 exp.e1.accept(this);
194 Dsymbol s = d.search(exp.loc, exp.ident);
210 buf.writestring(exp.ident.toString());
231 override void visit(IdentifierExp exp)
234 printf("IdentifierExp: %s\n", exp
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dgenattr.c81 check_tune_attr (const char *name, rtx exp) argument
83 switch (GET_CODE (exp))
86 if (check_tune_attr (name, XEXP (exp, 0)))
88 return check_tune_attr (name, XEXP (exp, 1));
91 return (check_tune_attr (name, XEXP (exp, 0))
92 && check_tune_attr (name, XEXP (exp, 1)));
95 return strcmp (XSTR (exp, 0), name) == 0;
105 find_tune_attr (rtx exp) argument
110 switch (GET_CODE (exp))
114 if (find_tune_attr (XEXP (exp,
[all...]
H A Dtree-dfa.c380 get_ref_base_and_extent (tree exp, poly_int64_pod *poffset, argument
393 if (TREE_CODE (exp) == COMPONENT_REF)
394 size_tree = DECL_SIZE (TREE_OPERAND (exp, 1));
395 else if (TREE_CODE (exp) == BIT_FIELD_REF)
396 size_tree = TREE_OPERAND (exp, 1);
397 else if (!VOID_TYPE_P (TREE_TYPE (exp)))
399 machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
401 size_tree = TYPE_SIZE (TREE_TYPE (exp));
409 *preverse = reverse_storage_order_for_component_p (exp);
419 switch (TREE_CODE (exp))
730 get_ref_base_and_extent_hwi(tree exp, HOST_WIDE_INT *poffset, HOST_WIDE_INT *psize, bool *preverse) argument
759 get_addr_base_and_unit_offset_1(tree exp, poly_int64_pod *poffset, tree (*valueize) (tree)) argument
899 get_addr_base_and_unit_offset(tree exp, poly_int64_pod *poffset) argument
[all...]
H A Drealmpfr.c66 mpfr_exp_t exp; local
83 rstr = mpfr_get_str (NULL, &exp, 16, 0, m, rndmode);
89 /* REAL_VALUE_ATOF expects the exponent for mantissa * 2**exp,
90 mpfr_get_str returns the exponent for mantissa * 16**exp, adjust
92 exp *= 4;
95 sprintf (buf, "-0x.%sp%d", &rstr[1], (int) exp);
97 sprintf (buf, "0x.%sp%d", rstr, (int) exp);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dgenattr.cc81 check_tune_attr (const char *name, rtx exp) argument
83 switch (GET_CODE (exp))
86 if (check_tune_attr (name, XEXP (exp, 0)))
88 return check_tune_attr (name, XEXP (exp, 1));
91 return (check_tune_attr (name, XEXP (exp, 0))
92 && check_tune_attr (name, XEXP (exp, 1)));
95 return strcmp (XSTR (exp, 0), name) == 0;
105 find_tune_attr (rtx exp) argument
110 switch (GET_CODE (exp))
114 if (find_tune_attr (XEXP (exp,
[all...]
H A Drealmpfr.cc66 mpfr_exp_t exp; local
83 rstr = mpfr_get_str (NULL, &exp, 16, 0, m, rndmode);
89 /* REAL_VALUE_ATOF expects the exponent for mantissa * 2**exp,
90 mpfr_get_str returns the exponent for mantissa * 16**exp, adjust
92 exp *= 4;
95 sprintf (buf, "-0x.%sp%d", &rstr[1], (int) exp);
97 sprintf (buf, "0x.%sp%d", rstr, (int) exp);
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dexpression.h99 struct expression *exp,
104 virtual value *evaluate_with_coercion (struct expression *exp, argument
107 return evaluate (nullptr, exp, noside);
113 struct expression *exp,
118 virtual value *evaluate_for_sizeof (struct expression *exp,
123 virtual value *evaluate_for_address (struct expression *exp,
131 struct expression *exp,
136 return evaluate_funcall (expect_type, exp, noside, nullptr, args);
150 void generate_ax (struct expression *exp, struct agent_expr *ax,
168 struct expression *exp,
130 evaluate_funcall(struct type *expect_type, struct expression *exp, enum noside noside, const std::vector<operation_up> &args) argument
175 do_generate_ax(struct expression *exp, struct agent_expr *ax, struct axs_value *value, struct type *cast_type) argument
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/gprofng/src/
H A DExpGroup.cc55 ExpGroup::append (Experiment *exp) argument
60 if (exp == e)
63 exps->append (exp);
65 founder = exp;
69 ExpGroup::drop_experiment (Experiment *exp) argument
74 if (exp == e)
80 if (founder == exp)
90 Experiment *exp = exps->fetch (i); local
91 if (exp->founder_exp == NULL)
95 expList->append (exp);
110 Experiment *exp = exps->fetch (i); local
[all...]
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DExpGroup.cc55 ExpGroup::append (Experiment *exp) argument
60 if (exp == e)
63 exps->append (exp);
65 founder = exp;
69 ExpGroup::drop_experiment (Experiment *exp) argument
74 if (exp == e)
80 if (founder == exp)
90 Experiment *exp = exps->fetch (i); local
91 if (exp->founder_exp == NULL)
95 expList->append (exp);
110 Experiment *exp = exps->fetch (i); local
[all...]
/netbsd-current/external/gpl3/gcc/dist/libquadmath/math/
H A Dsqrtq.c9 int exp; local
51 y = frexpq (x, &exp);
52 if (exp % 2)
53 y *= 2, exp--;
56 y = scalbnq (y, exp / 2);
/netbsd-current/external/gpl3/gcc.old/dist/libquadmath/math/
H A Dsqrtq.c9 int exp; local
51 y = frexpq (x, &exp);
52 if (exp % 2)
53 y *= 2, exp--;
56 y = scalbnq (y, exp / 2);
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Durandom.c38 1. One determines the exponent exp: 0 with probability 1/2, -1 with
60 mpfr_exp_t exp; local
77 exp = 0;
93 /* Any value of exp < MPFR_EMIN_MIN - 1 are equivalent. So, we can
95 if (MPFR_LIKELY (exp >= MPFR_EMIN_MIN - 1))
96 exp -= cnt; /* no integer overflow */
135 MPFR_EXP (rop) += exp; /* may be smaller than emin */
H A Dfrexp.c26 mpfr_frexp (mpfr_exp_t *exp, mpfr_ptr y, mpfr_srcptr x, mpfr_rnd_t rnd) argument
34 ("y[%Pd]=%.*Rg exp=%" MPFR_EXP_FSPEC "d inex=%d", mpfr_get_prec (y),
35 mpfr_log_prec, y, (mpfr_eexp_t) *exp, inex));
42 MPFR_RET_NAN; /* exp is unspecified */
48 MPFR_RET(0); /* exp is unspecified */
54 *exp = 0;
75 *exp = MPFR_GET_EXP (x) + 1;
83 *exp = MPFR_GET_EXP (y);
/netbsd-current/external/lgpl3/mpfr/dist/tests/
H A Dtfrexp.c30 mpfr_exp_t exp; local
36 inex = mpfr_frexp (&exp, y, x, MPFR_RNDN);
44 inex = mpfr_frexp (&exp, y, x, MPFR_RNDN);
52 inex = mpfr_frexp (&exp, y, x, MPFR_RNDN);
60 inex = mpfr_frexp (&exp, y, x, MPFR_RNDN);
61 if (mpfr_zero_p (y) == 0 || mpfr_signbit (y) != 0 || inex != 0 || exp != 0)
68 inex = mpfr_frexp (&exp, y, x, MPFR_RNDN);
69 if (mpfr_zero_p (y) == 0 || mpfr_signbit (y) == 0 || inex != 0 || exp != 0)
76 inex = mpfr_frexp (&exp, y, x, MPFR_RNDN);
78 if (mpfr_cmp_ui_2exp (y, 17, -5) != 0 || inex != 0 || exp !
[all...]
/netbsd-current/lib/libc/rpc/
H A Dxdr_float.c85 unsigned int exp : 8;
92 unsigned int exp : 8; member in struct:vax_single
131 (vs.exp == lim->s.exp) &&
137 is.exp = vs.exp - VAX_SNG_BIAS + IEEE_SNG_BIAS;
154 if ((is.exp == lim->ieee.exp) &&
160 vsp->exp = is.exp
179 unsigned int exp : 11; member in struct:ieee_double
187 unsigned int exp : 8; member in struct:vax_double
[all...]
/netbsd-current/sys/arch/m68k/fpe/
H A Dfpu_implode.c193 int sign, exp; local
202 * If exp >= 2^32, overflow. Otherwise shift value right
211 if ((exp = fp->fp_exp) >= 32)
213 /* NB: the following includes exp < 0 cases */
214 if (fpu_shr(fp, FP_NMANT - 1 - FP_NG - exp) != 0) {
243 int exp; local
256 exp = SNG_EXP_INFNAN;
285 if ((exp = fp->fp_exp + SNG_EXP_BIAS) <= 0) { /* subnormal */
287 /* -NG for g,r; -SNG_FRACBITS-exp for fraction */
288 (void) fpu_shr(fp, FP_NMANT - FP_NG - SNG_FRACBITS - exp);
327 int exp; local
389 int exp; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/libdecnumber/dpd/
H A Ddecimal32.c87 uInt comb, exp; /* .. */ local
125 exp=0; /* low clamp */
129 exp=dn->exponent+DECIMAL32_Bias; /* bias exponent */
130 if (exp>DECIMAL32_Ehigh) { /* top clamp */
131 exp=DECIMAL32_Ehigh;
135 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */
142 exp=(uInt)(dn->exponent+DECIMAL32_Bias); /* bias exponent */
143 if (exp>DECIMAL32_Ehigh) { /* fold-down case */
144 pad=exp
188 uInt exp; /* exponent top two bits */ local
256 Int exp; /* exponent top two bits or full */ local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/libdecnumber/dpd/
H A Ddecimal32.c87 uInt comb, exp; /* .. */ local
125 exp=0; /* low clamp */
129 exp=dn->exponent+DECIMAL32_Bias; /* bias exponent */
130 if (exp>DECIMAL32_Ehigh) { /* top clamp */
131 exp=DECIMAL32_Ehigh;
135 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */
142 exp=(uInt)(dn->exponent+DECIMAL32_Bias); /* bias exponent */
143 if (exp>DECIMAL32_Ehigh) { /* fold-down case */
144 pad=exp
188 uInt exp; /* exponent top two bits */ local
256 Int exp; /* exponent top two bits or full */ local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libdecnumber/dpd/
H A Ddecimal32.c87 uInt comb, exp; /* .. */ local
125 exp=0; /* low clamp */
129 exp=dn->exponent+DECIMAL32_Bias; /* bias exponent */
130 if (exp>DECIMAL32_Ehigh) { /* top clamp */
131 exp=DECIMAL32_Ehigh;
135 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */
142 exp=(uInt)(dn->exponent+DECIMAL32_Bias); /* bias exponent */
143 if (exp>DECIMAL32_Ehigh) { /* fold-down case */
144 pad=exp
188 uInt exp; /* exponent top two bits */ local
256 Int exp; /* exponent top two bits or full */ local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/libbid/
H A Dbid64_to_int32.c45 int exp; // unbiased exponent local
111 exp = x_exp - 398; // unbiased exponent
113 if ((q + exp) > 10) { // x >= 10^10 ~= 2^33.2... (cannot fit in 32 bits)
119 } else if ((q + exp) == 10) { // x = c(0)c(1)...c(9).c(10)...c(q-1)
124 // under '1 <= q + exp <= 10'
125 if (x_sign) { // if n < 0 and q + exp = 10
142 // to '1 <= q + exp <= 10'
143 } else { // if (q > 11), i.e. 12 <= q <= 16 and so -15 <= exp <= -2
157 // to '1 <= q + exp <= 10'
159 } else { // if n > 0 and q + exp
304 int exp; // unbiased exponent local
603 int exp; // unbiased exponent local
854 int exp; // unbiased exponent local
1111 int exp; // unbiased exponent local
1362 int exp; // unbiased exponent local
1619 int exp; // unbiased exponent local
1841 int exp; // unbiased exponent local
2089 int exp; // unbiased exponent local
2327 int exp; // unbiased exponent local
[all...]
H A Dbid64_to_int64.c45 int exp; // unbiased exponent local
111 exp = x_exp - 398; // unbiased exponent
113 if ((q + exp) > 19) { // x >= 10^19 ~= 2^63.11... (cannot fit in SINT64)
119 } else if ((q + exp) == 19) { // x = c(0)c(1)...c(18).c(19)...c(q-1)
124 // under '1 <= q + exp <= 19'
125 if (x_sign) { // if n < 0 and q + exp = 19
142 // to '1 <= q + exp <= 19'
143 } else { // if n > 0 and q + exp = 19
162 // to '1 <= q + exp <= 19'
163 } // end else if n > 0 and q + exp
277 int exp; // unbiased exponent local
550 int exp; // unbiased exponent local
774 int exp; // unbiased exponent local
1004 int exp; // unbiased exponent local
1228 int exp; // unbiased exponent local
1456 int exp; // unbiased exponent local
1652 int exp; // unbiased exponent local
1872 int exp; // unbiased exponent local
2089 int exp; // unbiased exponent local
[all...]
/netbsd-current/external/gpl3/gcc/dist/libdecnumber/dpd/
H A Ddecimal32.c87 uInt comb, exp; /* .. */ local
125 exp=0; /* low clamp */
129 exp=dn->exponent+DECIMAL32_Bias; /* bias exponent */
130 if (exp>DECIMAL32_Ehigh) { /* top clamp */
131 exp=DECIMAL32_Ehigh;
135 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */
142 exp=(uInt)(dn->exponent+DECIMAL32_Bias); /* bias exponent */
143 if (exp>DECIMAL32_Ehigh) { /* fold-down case */
144 pad=exp
188 uInt exp; /* exponent top two bits */ local
256 Int exp; /* exponent top two bits or full */ local
[all...]

Completed in 219 milliseconds

<<11121314151617181920>>