Home
last modified time | relevance | path

Searched refs:x_ (Results 1 – 11 of 11) sorted by relevance

/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree-outof-ssa.c482 unsigned x_; \
484 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
486 y_ = (GRAPH)->edge_list[x_]; \
489 (void) ((VAR) = (GRAPH)->edge_list[x_ + 1]); \
490 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
502 unsigned x_; \
504 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
506 y_ = (GRAPH)->edge_list[x_ + 1]; \
509 (void) ((VAR) = (GRAPH)->edge_list[x_]); \
510 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
H A Dipa-inline.c280 (opts_for_fn (caller->decl)->x_##flag \
281 != opts_for_fn (callee->decl)->x_##flag \
283 || opts_for_fn (caller->decl)->x_##flag \
284 < opts_for_fn (callee->decl)->x_##flag))
288 (opts_for_fn (caller->decl)->x_##flag \
289 != opts_for_fn (callee->decl)->x_##flag \
291 || opts_for_fn (caller->decl)->x_##flag \
292 > opts_for_fn (callee->decl)->x_##flag))
295 (opts_for_fn (caller->decl)->x_##flag \
296 != opts_for_fn (callee->decl)->x_##flag)
H A Dtree.h5344 #define opt_for_fn(fndecl, opt) (opts_for_fn (fndecl)->x_##opt)
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-outof-ssa.c453 unsigned x_; \
455 for (x_ = 0; x_ < VEC_length (int, (GRAPH)->edge_list); x_ += 2) \
457 y_ = VEC_index (int, (GRAPH)->edge_list, x_); \
460 (void) ((VAR) = VEC_index (int, (GRAPH)->edge_list, x_ + 1)); \
462 (GRAPH)->edge_locus, x_ / 2)); \
474 unsigned x_; \
476 for (x_ = 0; x_ < VEC_length (int, (GRAPH)->edge_list); x_ += 2) \
478 y_ = VEC_index (int, (GRAPH)->edge_list, x_ + 1); \
481 (void) ((VAR) = VEC_index (int, (GRAPH)->edge_list, x_)); \
483 (GRAPH)->edge_locus, x_ / 2)); \
/dragonfly/crypto/libressl/crypto/ec/
H A Decp_oct.c71 EC_POINT * point, const BIGNUM * x_, int y_bit, BN_CTX * ctx) in ec_GFp_simple_set_compressed_coordinates() argument
103 if (!BN_nnmod(x, x_, &group->field, ctx)) in ec_GFp_simple_set_compressed_coordinates()
107 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) in ec_GFp_simple_set_compressed_coordinates()
109 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) in ec_GFp_simple_set_compressed_coordinates()
112 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx)) in ec_GFp_simple_set_compressed_coordinates()
114 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) in ec_GFp_simple_set_compressed_coordinates()
H A Dec2_oct.c95 const BIGNUM *x_, int y_bit, BN_CTX *ctx) in ec_GF2m_simple_set_compressed_coordinates() argument
121 if (!BN_GF2m_mod_arr(x, x_, group->poly)) in ec_GF2m_simple_set_compressed_coordinates()
/dragonfly/crypto/libressl/crypto/bn/
H A Dbn_exp.c639 #define MOD_EXP_CTIME_ALIGN(x_) \ argument
640 …((unsigned char*)(x_) + (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - (((size_t)(x_)) & (MOD_EXP_CTIME_MIN…
/dragonfly/contrib/gcc-4.7/libgcc/
H A Dlonglong.h1085 UDItype x_ = (USItype)(x); \
1088 __asm__ ("nsb %1, %0" : "=r" (c_) : "r" (x_)); \
/dragonfly/contrib/binutils-2.27/include/
H A Dlonglong.h1167 UDItype x_ = (USItype)(x); \
1170 __asm__ ("nsb %1, %0" : "=r" (c_) : "r" (x_)); \
/dragonfly/contrib/gcc-4.7/gcc/doc/
H A Doptions.texi281 (actually a macro for @code{global_options.x_@var{var}}).
466 leading @code{x_}). This gives the front end a way to indicate that
H A Dcpp.texi2794 (@{ typeof (X) x_ = (X); \
2796 (x_ < y_) ? x_ : y_; @})