HomeSort by: relevance | last modified time | path
    Searched defs:opt_idx (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
opts-common.cc 1124 /* Return true if NEXT_OPT_IDX cancels OPT_IDX. Return false if the
1128 cancel_option (int opt_idx, int next_opt_idx, int orig_next_opt_idx)
1132 if (cl_options [next_opt_idx].neg_index == opt_idx)
1136 return cancel_option (opt_idx, cl_options [next_opt_idx].neg_index,
1165 unsigned int j, opt_idx, next_opt_idx; local
1170 opt_idx = old_decoded_options[i].opt_index;
1171 switch (opt_idx)
1201 gcc_assert (opt_idx < cl_options_count);
1202 option = &cl_options[opt_idx];
1209 || (unsigned int) option->neg_index != opt_idx))
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
opts-common.cc 1099 /* Return true if NEXT_OPT_IDX cancels OPT_IDX. Return false if the
1103 cancel_option (int opt_idx, int next_opt_idx, int orig_next_opt_idx)
1107 if (cl_options [next_opt_idx].neg_index == opt_idx)
1111 return cancel_option (opt_idx, cl_options [next_opt_idx].neg_index,
1136 unsigned int j, opt_idx, next_opt_idx; local
1141 opt_idx = old_decoded_options[i].opt_index;
1142 switch (opt_idx)
1157 gcc_assert (opt_idx < cl_options_count);
1158 option = &cl_options[opt_idx];
1165 || (unsigned int) option->neg_index != opt_idx))
    [all...]
  /src/external/gpl3/gcc/dist/gcc/jit/
jit-recording.cc 1738 int opt_idx; local
1743 for (opt_idx = 0; opt_idx < GCC_JIT_NUM_STR_OPTIONS; opt_idx++)
1744 log_str_option ((enum gcc_jit_str_option)opt_idx);
1746 for (opt_idx = 0; opt_idx < GCC_JIT_NUM_INT_OPTIONS; opt_idx++)
1747 log_int_option ((enum gcc_jit_int_option)opt_idx);
1749 for (opt_idx = 0; opt_idx < GCC_JIT_NUM_BOOL_OPTIONS; opt_idx++
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/jit/
jit-recording.cc 1725 int opt_idx; local
1730 for (opt_idx = 0; opt_idx < GCC_JIT_NUM_STR_OPTIONS; opt_idx++)
1731 log_str_option ((enum gcc_jit_str_option)opt_idx);
1733 for (opt_idx = 0; opt_idx < GCC_JIT_NUM_INT_OPTIONS; opt_idx++)
1734 log_int_option ((enum gcc_jit_int_option)opt_idx);
1736 for (opt_idx = 0; opt_idx < GCC_JIT_NUM_BOOL_OPTIONS; opt_idx++
    [all...]

Completed in 19 milliseconds