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

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
abstract-origin.cc 28 static int *problem = new int(i); local
29 f (problem); /* break-here */
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
abstract-origin.cc 28 static int *problem = new int(i); local
29 f (problem); /* break-here */
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
address_to_krb5addr.c 50 krb5_error_code problem; local
67 problem = krb5_h_addr2sockaddr (context,
73 if (problem)
76 problem = krb5_sockaddr2address (context, &sa, address);
78 return problem;
  /src/crypto/external/bsd/openssh/dist/
auth-krb5.c 66 krb5_error_code problem; local
69 problem = krb5_init_context(&authctxt->krb5_ctx);
70 if (problem)
71 return (problem);
85 krb5_error_code problem; local
97 problem = krb5_init(authctxt);
98 if (problem)
101 problem = krb5_auth_con_init(authctxt->krb5_ctx,
103 if (problem)
107 problem = krb5_auth_con_setaddrs_from_fd(authctxt->krb5_ctx
172 krb5_error_code problem; local
237 krb5_error_code problem; local
    [all...]
gss-serv-krb5.c 60 krb5_error_code problem; local
65 problem = krb5_init_context(&krb_context);
66 if (problem) {
118 krb5_error_code problem; local
132 if ((problem = krb5_cc_new_unique(krb_context, krb5_fcc_ops.prefix,
134 errmsg = krb5_get_error_message(krb_context, problem);
140 if ((problem = krb5_parse_name(krb_context,
142 errmsg = krb5_get_error_message(krb_context, problem);
149 if ((problem = krb5_cc_initialize(krb_context, ccache, princ))) {
150 errmsg = krb5_get_error_message(krb_context, problem);
    [all...]
sshconnect2.c 2016 * further on we run into a problem that prevents this, we have to
2315 krb5_error_code problem; local
2328 problem = krb5_init_context(context);
2329 if (problem) {
2345 problem = krb5_cc_default(*context, &ccache);
2346 if (problem) {
2347 errtxt = krb5_get_error_message(*context, problem);
2354 problem);
2361 problem = krb5_mk_req(*context, auth_context, AP_OPTS_MUTUAL_REQUIRED,
2363 if (problem) {
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
opt-problem.cc 28 #include "opt-problem.h"
41 emitted when this problem is handled, higher up the call stack. */
77 /* Emit this problem and delete it, clearing the current opt_problem. */
232 opt_problem *problem = res.get_problem (); local
236 ASSERT_NE (problem, NULL);
237 ASSERT_EQ (problem->get_dump_location ().get_location_t (),
240 /* Verify that the problem captures the implementation location
243 = problem->get_dump_location ().get_impl_location ();
250 const optinfo &info = problem->get_optinfo ();
262 by the problem. *
    [all...]
opt-problem.h 55 which effectively returns true or false, whilst recording any problem.
112 in GCC itself where the problem occurred.
160 opt_wrapper (wrapped_t result, opt_problem */*problem*/)
163 /* "problem" is ignored: although it looks like a field, we
192 opt_problem *problem = NULL; variable
197 problem = new opt_problem (loc, fmt, &ap);
200 return opt_result (false, problem);
216 opt_result (wrapped_t result, opt_problem *problem)
217 : opt_wrapper <bool> (result, problem)
250 opt_problem *problem = NULL variable
    [all...]
df-core.cc 31 The file df-problems.cc provides problem instance for the most common
41 There are three variations of the live variable problem that are
42 available whenever dataflow is available. The LR problem finds the
45 problem finds the intersection of these two areas.
83 DF_[chain,live,note,rd]_ADD_PROBLEM adds a problem, defined by an
85 instance of df. All calls to add a problem for a given instance of df
90 definitions. As long as these dependencies are listed in the problem
93 df_add_problem. Note that it is not necessary to have a problem. In
150 using this is SIMPLY WRONG. The problem is that when a ref is
157 produce unexpected results. The problem is that the incrementa
585 const struct df_problem *problem; local
    [all...]
df.h 41 /* Scanning is not really a dataflow problem, but it is useful to have
190 /* Allocate the problem specific data. */
193 /* This function is called if the problem has global data that needs
225 /* Function to massage the information after the problem solving. */
228 /* Function to free all of the problem specific datastructures. */
231 /* Function to remove this problem from the stack of dataflow problems
233 that depend on this problem. */
251 /* The static description of a dataflow problem to solve. See above
255 /* The unique id of the problem. This is used it index into
256 df->defined_problems to make accessing the problem data easy. *
293 const struct df_problem *problem; \/* The problem to be solved. *\/ member in struct:dataflow
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
opt-problem.cc 28 #include "opt-problem.h"
41 emitted when this problem is handled, higher up the call stack. */
79 /* Emit this problem and delete it, clearing the current opt_problem. */
234 opt_problem *problem = res.get_problem (); local
238 ASSERT_NE (problem, NULL);
239 ASSERT_EQ (problem->get_dump_location ().get_location_t (),
242 /* Verify that the problem captures the implementation location
245 = problem->get_dump_location ().get_impl_location ();
252 const optinfo &info = problem->get_optinfo ();
264 by the problem. *
    [all...]
opt-problem.h 55 which effectively returns true or false, whilst recording any problem.
112 in GCC itself where the problem occurred.
160 opt_wrapper (wrapped_t result, opt_problem */*problem*/)
163 /* "problem" is ignored: although it looks like a field, we
192 opt_problem *problem = NULL; variable
197 problem = new opt_problem (loc, fmt, &ap);
200 return opt_result (false, problem);
216 opt_result (wrapped_t result, opt_problem *problem)
217 : opt_wrapper <bool> (result, problem)
250 opt_problem *problem = NULL variable
    [all...]
df-core.cc 31 The file df-problems.cc provides problem instance for the most common
41 There are three variations of the live variable problem that are
42 available whenever dataflow is available. The LR problem finds the
45 problem finds the intersection of these two areas.
83 DF_[chain,live,note,rd]_ADD_PROBLEM adds a problem, defined by an
85 instance of df. All calls to add a problem for a given instance of df
90 definitions. As long as these dependencies are listed in the problem
93 df_add_problem. Note that it is not necessary to have a problem. In
150 using this is SIMPLY WRONG. The problem is that when a ref is
157 produce unexpected results. The problem is that the incrementa
585 const struct df_problem *problem; local
    [all...]
df.h 41 /* Scanning is not really a dataflow problem, but it is useful to have
190 /* Allocate the problem specific data. */
193 /* This function is called if the problem has global data that needs
225 /* Function to massage the information after the problem solving. */
228 /* Function to free all of the problem specific datastructures. */
231 /* Function to remove this problem from the stack of dataflow problems
233 that depend on this problem. */
251 /* The static description of a dataflow problem to solve. See above
255 /* The unique id of the problem. This is used it index into
256 df->defined_problems to make accessing the problem data easy. *
293 const struct df_problem *problem; \/* The problem to be solved. *\/ member in struct:dataflow
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
tspeed.c 68 int problem; local
78 while ((problem = trace_speed_test()))
86 if (problem < 0)
174 /* Speed test ran with no problem. */
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
tspeed.c 68 int problem; local
78 while ((problem = trace_speed_test()))
86 if (problem < 0)
174 /* Speed test ran with no problem. */
  /src/games/arithmetic/
arithmetic.c 91 static int problem(void);
149 if (problem() == EOF)
172 (void)printf("\nTotal time %ld seconds; %.1f seconds per problem\n\n",
183 * Pick a problem and ask it. Keeps asking the same problem until supplied
187 * answer causes the numbers in the problem to be penalised, so that they are
191 problem(void) function
  /src/external/gpl3/gcc/dist/gcc/cp/
decl.cc 3753 bool problem = decl_jump_unsafe (new_decls);
3754 if (! problem)
3921 bool problem = decl_jump_unsafe (bad);
3923 if (problem && DECL_ARTIFICIAL (bad))
12116 there was a problem, false otherwise. */
3746 bool problem = decl_jump_unsafe (new_decls); local
3914 bool problem = decl_jump_unsafe (bad); local
  /src/external/gpl3/gcc.old/dist/gcc/cp/
decl.cc 3442 DECL. Returns 2 if it's also a real problem. */
3518 int problem = decl_jump_unsafe (new_decls);
3519 if (! problem)
3525 problem > 1
3531 if (problem > 1)
11634 there was a problem, false otherwise. */
3511 int problem = decl_jump_unsafe (new_decls); local
  /src/external/mpl/bind/dist/bin/named/
server.c 10886 char problem[DNS_NAME_FORMATSIZE + 500] = ""; local
10945 snprintf(problem, sizeof(problem),
10957 snprintf(problem, sizeof(problem),
10961 snprintf(problem, sizeof(problem),
10971 snprintf(problem, sizeof(problem),
10988 snprintf(problem, sizeof(problem)
    [all...]

Completed in 156 milliseconds