HomeSort by: relevance | last modified time | path
    Searched defs:cst (Results 1 - 25 of 119) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gcc.old/dist/gcc/d/
d-compiler.cc 38 so we just lower the value to GCC and return the converted CST. */
45 tree cst; local
50 cst = build_integer_cst (expr->toInteger (), build_ctype (expr->type));
52 cst = build_float_cst (expr->toReal (), expr->type);
83 cst = build_vector_from_ctor (vectype, elms);
88 /* Encode CST to buffer. */
89 int len = native_encode_expr (cst, buffer, sizeof (buffer));
99 cst = native_interpret_expr (vectype, buffer, len);
101 Expression *e = d_eval_constant_expression (expr->loc, cst);
109 cst = native_interpret_expr (build_ctype (type), buffer, len)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ocsp/
ocsp_prn.c 142 OCSP_CERTSTATUS *cst = NULL; local
197 cst = single->certStatus;
199 OCSP_cert_status_str(cst->type))
202 if (cst->type == V_OCSP_CERTSTATUS_REVOKED) {
203 rev = cst->value.revoked;
ocsp_cl.c 254 OCSP_CERTSTATUS *cst; local
258 cst = single->certStatus;
259 ret = cst->type;
261 OCSP_REVOKEDINFO *rev = cst->value.revoked;
  /src/crypto/external/bsd/openssl/dist/crypto/ocsp/
ocsp_prn.c 140 OCSP_CERTSTATUS *cst = NULL; local
194 cst = single->certStatus;
196 OCSP_cert_status_str(cst->type)) <= 0)
198 if (cst->type == V_OCSP_CERTSTATUS_REVOKED) {
199 rev = cst->value.revoked;
ocsp_cl.c 254 OCSP_CERTSTATUS *cst; local
258 cst = single->certStatus;
259 ret = cst->type;
261 OCSP_REVOKEDINFO *rev = cst->value.revoked;
  /src/crypto/external/bsd/openssl.old/dist/crypto/ocsp/
ocsp_prn.c 140 OCSP_CERTSTATUS *cst = NULL; local
194 cst = single->certStatus;
196 OCSP_cert_status_str(cst->type)) <= 0)
198 if (cst->type == V_OCSP_CERTSTATUS_REVOKED) {
199 rev = cst->value.revoked;
ocsp_cl.c 282 OCSP_CERTSTATUS *cst; local
285 cst = single->certStatus;
286 ret = cst->type;
288 OCSP_REVOKEDINFO *rev = cst->value.revoked;
  /src/external/mit/isl/dist/
isl_tab_lexopt_templ.c 59 isl_mat *cst = NULL; local
88 cst = isl_mat_alloc(ctx, n, 1 + n_in);
89 if (!cst)
93 isl_seq_cpy(cst->row[i], bmap->ineq[list[i]], 1 + n_in);
119 isl_seq_cpy(dom->ineq[k], cst->row[i], 1 + n_in);
128 max, cst, map_space, set_space);
132 isl_mat_free(cst);
isl_equalities.c 74 struct isl_mat *cst = NULL; local
105 cst = isl_mat_alloc(B->ctx, B->n_row, 0);
107 cst = isl_mat_sub_alloc(C, 1, B->n_row, 0, 1);
109 cst = isl_mat_product(T, cst);
113 return cst;
313 struct isl_mat *cst = NULL; local
320 cst = particular_solution(B, d);
321 if (!cst)
323 if (cst->n_col == 0)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/analyzer/
ranges.cc 177 tree cst = m_size.maybe_get_constant (); local
178 if (!cst)
180 return zerop (cst);
call-summary.cc 111 tree cst = constant_sval->get_constant (); local
113 && zerop (cst))
116 pp_printf (pp, "when %qE returns %qE", fndecl, cst);
  /src/external/bsd/tre/dist/tests/
retest.c 65 mbstate_t cst; local
66 memset(&cst, 0, sizeof(cst));
85 n = tre_mbrtowc(buf ? buf++ : NULL, str, len, &cst);
  /src/external/gpl3/binutils/dist/opcodes/
h8300-dis.c 75 int *cst,
83 *cst = thisnib & 3;
99 *cst *= 2;
102 *cst *= 4;
113 *cst *= 2;
116 *cst *= 4;
124 *cst = data[0];
129 *cst = (data[0] << 8) + data [1];
132 *cst = (short) *cst; /* Sign extend. *
318 int cst[3] = { 0, 0, 0 }; local
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
h8300-dis.c 75 int *cst,
83 *cst = thisnib & 3;
99 *cst *= 2;
102 *cst *= 4;
113 *cst *= 2;
116 *cst *= 4;
124 *cst = data[0];
129 *cst = (data[0] << 8) + data [1];
132 *cst = (short) *cst; /* Sign extend. *
318 int cst[3] = { 0, 0, 0 }; local
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
uint128_t.h 171 // = x.hi*((2^64-1)/5) + (x.hi + x.lo)/5 since CST=(2^64-1)/5 is exact
172 // = x.hi*CST + x.hi/5 + x.lo/5 + ((x.lo%5) + (x.hi%5) >= 5)
176 constexpr auto cst = ~uint64_t(0) / 5; local
177 uint128_t q = uint128_t{x.hi}*cst + uint128_t{x.hi/5 + x.lo/5};
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
uint128_t.h 171 // = x.hi*((2^64-1)/5) + (x.hi + x.lo)/5 since CST=(2^64-1)/5 is exact
172 // = x.hi*CST + x.hi/5 + x.lo/5 + ((x.lo%5) + (x.hi%5) >= 5)
176 constexpr auto cst = ~uint64_t(0) / 5; local
177 uint128_t q = uint128_t{x.hi}*cst + uint128_t{x.hi/5 + x.lo/5};
  /src/external/gpl3/gdb.old/dist/opcodes/
h8300-dis.c 75 int *cst,
83 *cst = thisnib & 3;
99 *cst *= 2;
102 *cst *= 4;
113 *cst *= 2;
116 *cst *= 4;
124 *cst = data[0];
129 *cst = (data[0] << 8) + data [1];
132 *cst = (short) *cst; /* Sign extend. *
318 int cst[3] = { 0, 0, 0 }; local
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
h8300-dis.c 75 int *cst,
83 *cst = thisnib & 3;
99 *cst *= 2;
102 *cst *= 4;
113 *cst *= 2;
116 *cst *= 4;
124 *cst = data[0];
129 *cst = (data[0] << 8) + data [1];
132 *cst = (short) *cst; /* Sign extend. *
318 int cst[3] = { 0, 0, 0 }; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/postconf/
postconf_builtin.c 335 CONFIG_STR_TABLE *cst = (CONFIG_STR_TABLE *) ptr; local
337 return (cst->defval);
393 const CONFIG_STR_TABLE *cst; local
428 for (cst = pcf_str_table; cst->name; cst++)
429 PCF_PARAM_TABLE_ENTER(pcf_param_table, cst->name,
430 PCF_PARAM_FLAG_BUILTIN, (void *) cst,
457 for (cst = pcf_legacy_str_table; cst->name; cst++
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
tasn_dec.c 43 char *inf, char *cst,
174 char seq_eoc, seq_nolen, cst, isopt; local
346 ret = asn1_check_tlen(&len, NULL, NULL, &seq_eoc, &cst,
360 if (!cst) {
516 char cst; local
521 ret = asn1_check_tlen(&len, NULL, NULL, &exp_eoc, &cst,
529 if (!cst) {
705 char cst, inf, free_cont = 0; local
749 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst,
768 else if (!cst) {
1045 char cst, ininf; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
tasn_dec.c 43 char *inf, char *cst,
146 char seq_eoc, seq_nolen, cst, isopt; local
306 ret = asn1_check_tlen(&len, NULL, NULL, &seq_eoc, &cst,
320 if (!cst) {
475 char cst; local
480 ret = asn1_check_tlen(&len, NULL, NULL, &exp_eoc, &cst,
488 if (!cst) {
666 char cst, inf, free_cont = 0; local
710 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst,
729 else if (!cst) {
1008 char cst, ininf; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
tasn_dec.c 38 char *inf, char *cst,
200 char seq_eoc, seq_nolen, cst, isopt; local
372 ret = asn1_check_tlen(&len, NULL, NULL, &seq_eoc, &cst,
386 if (!cst) {
542 char cst; local
547 ret = asn1_check_tlen(&len, NULL, NULL, &exp_eoc, &cst,
555 if (!cst) {
732 char cst, inf, free_cont = 0; local
776 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst,
795 else if (!cst) {
1088 char cst, ininf; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-range-fold.cc 496 tree cst = gimple_assign_rhs1 (def_stmt); local
497 if (TREE_CODE (cst) == COMPLEX_CST
498 && TREE_CODE (TREE_TYPE (TREE_TYPE (cst))) == INTEGER_TYPE)
500 wide_int w = wi::to_wide (TREE_IMAGPART (cst));
501 int_range<1> imag (TREE_TYPE (TREE_IMAGPART (cst)), w, w);
524 tree cst = gimple_assign_rhs1 (def_stmt); local
525 if (TREE_CODE (cst) == COMPLEX_CST
526 && TREE_CODE (TREE_TYPE (TREE_TYPE (cst))) == INTEGER_TYPE)
528 wide_int imag = wi::to_wide (TREE_REALPART (cst));
529 int_range<2> tmp (TREE_TYPE (TREE_REALPART (cst)), imag, imag)
    [all...]
lra-eliminations.cc 302 rtx cst = simplify_subreg (x_mode, XEXP (subreg_reg, 1), subreg_reg_mode,
305 if (cst && CONSTANT_P (cst))
308 subreg_reg_mode), cst);
932 /* First see if the source is of the form (plus (...) CST). */
990 (reg sp) CST). So try only when we already had a PLUS
301 rtx cst = simplify_subreg (x_mode, XEXP (subreg_reg, 1), subreg_reg_mode, local
tree-affine.cc 36 /* Extends CST as appropriate for the affine combinations COMB. */
39 wide_int_ext_for_comb (const widest_int &cst, tree type)
41 return wi::sext (cst, TYPE_PRECISION (type));
47 wide_int_ext_for_comb (const poly_widest_int &cst, tree type)
49 return wi::sext (cst, TYPE_PRECISION (type));
66 /* Sets COMB to CST. */
69 aff_combination_const (aff_tree *comb, tree type, const poly_widest_int &cst)
72 comb->offset = wide_int_ext_for_comb (cst, comb->type);;
199 /* Adds CST to C. */
202 aff_combination_add_cst (aff_tree *c, const poly_widest_int &cst)
894 poly_widest_int rem, cst; local
    [all...]

Completed in 73 milliseconds

1 2 3 4 5