HomeSort by: relevance | last modified time | path
    Searched refs:this_n (Results 1 - 3 of 3) sorted by relevancy

  /src/external/lgpl3/gmp/dist/mpn/generic/
add_n_sub_n.c 55 mp_size_t this_n; /* size of current chunk */ local
72 this_n = MIN (n - off, PART_SIZE);
74 acyo = mpn_add_nc (r1p + off, s1p + off, s2p + off, this_n, acyo);
76 acyn = mpn_add_n (r1p + off, s1p + off, s2p + off, this_n);
77 acyo = acyn + mpn_add_1 (r1p + off, r1p + off, this_n, acyo);
80 scyo = mpn_sub_nc (r2p + off, s1p + off, s2p + off, this_n, scyo);
82 scyn = mpn_sub_n (r2p + off, s1p + off, s2p + off, this_n);
83 scyo = scyn + mpn_sub_1 (r2p + off, r2p + off, this_n, scyo);
95 this_n = MIN (n - off, PART_SIZE);
97 scyo = mpn_sub_nc (r2p + off, s1p + off, s2p + off, this_n, scyo)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-store-merging.cc 2953 struct symbolic_number this_n = info->n; local
2954 this_n.type = type;
2955 if (!this_n.base_addr)
2956 this_n.range = try_size / BITS_PER_UNIT;
2959 this_n.vuse = gimple_vuse (info->ins_stmt);
2961 if (!do_shift_rotate (LSHIFT_EXPR, &this_n,
2966 if (this_n.base_addr && vuse_store)
2970 if (this_n.vuse == gimple_vuse (m_store_info[j]->stmt))
2981 n = this_n;
2986 if (n.base_addr && n.vuse != this_n.vuse
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-store-merging.cc 2869 struct symbolic_number this_n = info->n; local
2870 this_n.type = type;
2871 if (!this_n.base_addr)
2872 this_n.range = try_size / BITS_PER_UNIT;
2875 this_n.vuse = gimple_vuse (info->ins_stmt);
2877 if (!do_shift_rotate (LSHIFT_EXPR, &this_n,
2882 if (this_n.base_addr && vuse_store)
2886 if (this_n.vuse == gimple_vuse (m_store_info[j]->stmt))
2897 n = this_n;
2902 if (n.base_addr && n.vuse != this_n.vuse
    [all...]

Completed in 27 milliseconds