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

1 2 3 4 5

  /src/external/gpl3/gcc/dist/gcc/analyzer/
region-model-asm.cc 171 const char *constraint; local
180 /* Try to parse the output constraint. If that fails, there's
182 constraint = constraints[i];
183 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
187 logger->log ("error parsing constraint for output %i: %qs",
188 i, constraint);
197 i, constraint, val,
214 const char *constraint = constraints[i + noutputs]; local
216 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
221 logger->log ("error parsing constraint for input %i: %qs"
    [all...]
region-model-asm.cc 171 const char *constraint; local
180 /* Try to parse the output constraint. If that fails, there's
182 constraint = constraints[i];
183 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
187 logger->log ("error parsing constraint for output %i: %qs",
188 i, constraint);
197 i, constraint, val,
214 const char *constraint = constraints[i + noutputs]; local
216 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
221 logger->log ("error parsing constraint for input %i: %qs"
    [all...]
constraint-manager.h 244 /* An equivalence class within a constraint manager: a set of
282 /* The various kinds of constraint. */
332 class constraint class in namespace:ana
335 constraint (equiv_class_id lhs, enum constraint_op c_op, equiv_class_id rhs) function in class:ana::constraint
347 bool operator== (const constraint &other) const;
355 bool implied_by (const constraint &other,
405 we are effectively taking an intersection with that constraint. */
500 auto_vec<constraint> m_constraints;
constraint-manager.h 244 /* An equivalence class within a constraint manager: a set of
282 /* The various kinds of constraint. */
332 class constraint class in namespace:ana
335 constraint (equiv_class_id lhs, enum constraint_op c_op, equiv_class_id rhs) function in class:ana::constraint
347 bool operator== (const constraint &other) const;
355 bool implied_by (const constraint &other,
405 we are effectively taking an intersection with that constraint. */
500 auto_vec<constraint> m_constraints;
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
region-model-asm.cc 173 const char *constraint; local
182 /* Try to parse the output constraint. If that fails, there's
184 constraint = constraints[i];
185 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
189 logger->log ("error parsing constraint for output %i: %qs",
190 i, constraint);
199 i, constraint, val,
216 const char *constraint = constraints[i + noutputs]; local
218 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
223 logger->log ("error parsing constraint for input %i: %qs"
    [all...]
region-model-asm.cc 173 const char *constraint; local
182 /* Try to parse the output constraint. If that fails, there's
184 constraint = constraints[i];
185 if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
189 logger->log ("error parsing constraint for output %i: %qs",
190 i, constraint);
199 i, constraint, val,
216 const char *constraint = constraints[i + noutputs]; local
218 if (! parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
223 logger->log ("error parsing constraint for input %i: %qs"
    [all...]
constraint-manager.h 236 /* An equivalence class within a constraint manager: a set of
274 /* The various kinds of constraint. */
324 class constraint class in namespace:ana
327 constraint (equiv_class_id lhs, enum constraint_op c_op, equiv_class_id rhs) function in class:ana::constraint
339 bool operator== (const constraint &other) const;
347 bool implied_by (const constraint &other,
397 we are effectively taking an intersection with that constraint. */
488 auto_vec<constraint> m_constraints;
constraint-manager.h 236 /* An equivalence class within a constraint manager: a set of
274 /* The various kinds of constraint. */
324 class constraint class in namespace:ana
327 constraint (equiv_class_id lhs, enum constraint_op c_op, equiv_class_id rhs) function in class:ana::constraint
339 bool operator== (const constraint &other) const;
347 bool implied_by (const constraint &other,
397 we are effectively taking an intersection with that constraint. */
488 auto_vec<constraint> m_constraints;
  /src/external/gpl3/gcc/dist/gcc/
gimplify-me.cc 186 const char *constraint, **oconstraints; local
194 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
195 oconstraints[i] = constraint;
196 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
205 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
206 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
gimplify-me.cc 186 const char *constraint, **oconstraints; local
194 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
195 oconstraints[i] = constraint;
196 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
205 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
206 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
gimple-walk.cc 107 const char *constraint; local
116 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
117 oconstraints[i] = constraint;
120 if (parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
135 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
139 if (parse_input_constraint (&constraint, 0, 0, noutputs, 0,
892 const char *constraint; local
906 constraint = TREE_STRING_POINTER
908 oconstraints[i] = constraint;
909 parse_output_constraint (&constraint, i, 0, 0, &allows_mem
    [all...]
gimple-walk.cc 107 const char *constraint; local
116 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
117 oconstraints[i] = constraint;
120 if (parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
135 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
139 if (parse_input_constraint (&constraint, 0, 0, noutputs, 0,
892 const char *constraint; local
906 constraint = TREE_STRING_POINTER
908 oconstraints[i] = constraint;
909 parse_output_constraint (&constraint, i, 0, 0, &allows_mem
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-walk.cc 97 const char *constraint; local
106 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
107 oconstraints[i] = constraint;
110 if (parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
125 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
129 if (parse_input_constraint (&constraint, 0, 0, noutputs, 0,
868 const char *constraint; local
882 constraint = TREE_STRING_POINTER
884 oconstraints[i] = constraint;
885 parse_output_constraint (&constraint, i, 0, 0, &allows_mem
    [all...]
gimplify-me.cc 186 const char *constraint, **oconstraints; local
194 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
195 oconstraints[i] = constraint;
196 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
205 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
206 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
gimple-walk.cc 97 const char *constraint; local
106 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
107 oconstraints[i] = constraint;
110 if (parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
125 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
129 if (parse_input_constraint (&constraint, 0, 0, noutputs, 0,
868 const char *constraint; local
882 constraint = TREE_STRING_POINTER
884 oconstraints[i] = constraint;
885 parse_output_constraint (&constraint, i, 0, 0, &allows_mem
    [all...]
gimplify-me.cc 186 const char *constraint, **oconstraints; local
194 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
195 oconstraints[i] = constraint;
196 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
205 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
206 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
symbol.h 133 struct constraint_spec *constraint; member in struct:type
symbol.h 133 struct constraint_spec *constraint; member in struct:type
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
template.h 55 Expression *constraint; member in class:TemplateDeclaration
template.h 55 Expression *constraint; member in class:TemplateDeclaration
  /src/external/mit/isl/dist/
isl_schedule_constraints.c 25 * that should be scheduled after i. (Hard constraint)
28 * (Soft constraint)
45 isl_union_map *constraint[isl_edge_last + 1]; member in struct:isl_schedule_constraints
66 sc_copy->constraint[i] = isl_union_map_copy(sc->constraint[i]);
67 if (!sc_copy->constraint[i])
103 if (sc->constraint[i])
105 sc->constraint[i] = isl_union_map_copy(empty);
106 if (!sc->constraint[i])
193 isl_union_map_free(sc->constraint[type])
    [all...]
isl_schedule_constraints.c 25 * that should be scheduled after i. (Hard constraint)
28 * (Soft constraint)
45 isl_union_map *constraint[isl_edge_last + 1]; member in struct:isl_schedule_constraints
66 sc_copy->constraint[i] = isl_union_map_copy(sc->constraint[i]);
67 if (!sc_copy->constraint[i])
103 if (sc->constraint[i])
105 sc->constraint[i] = isl_union_map_copy(empty);
106 if (!sc->constraint[i])
193 isl_union_map_free(sc->constraint[type])
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
constraint.c 1 /* $NetBSD: constraint.c,v 1.4 2025/09/05 21:16:32 christos Exp $ */
4 /* constraint.c - Overlay to constrain attributes to certain values */
23 __RCSID("$NetBSD: constraint.c,v 1.4 2025/09/05 21:16:32 christos Exp $");
62 typedef struct constraint { struct
63 struct constraint *ap_next;
78 struct berval val; /* constraint value */
81 } constraint; typedef in typeref:struct:constraint
99 "DESC 'constraint for list of attributes' "
108 "DESC 'Constraint overlay configuration' "
116 constraint_free( constraint *cp, int freeme
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
dfa.h 156 is set indicates that the constraint succeeds in the corresponding
170 The macro SUCCEEDS_IN_CONTEXT determines whether a a given constraint
175 #define MATCHES_NEWLINE_CONTEXT(constraint, prevn, currn) \
176 ((constraint) & 1 << (((prevn) ? 2 : 0) + ((currn) ? 1 : 0) + 4))
177 #define MATCHES_LETTER_CONTEXT(constraint, prevl, currl) \
178 ((constraint) & 1 << (((prevl) ? 2 : 0) + ((currl) ? 1 : 0)))
179 #define SUCCEEDS_IN_CONTEXT(constraint, prevn, currn, prevl, currl) \
180 (MATCHES_NEWLINE_CONTEXT(constraint, prevn, currn) \
181 && MATCHES_LETTER_CONTEXT(constraint, prevl, currl))
183 /* The following macros give information about what a constraint depends on. *
208 unsigned constraint; \/* Constraint for matching this position. *\/ member in struct:__anon9239
228 unsigned char constraint; \/* Constraint for this state to accept. *\/ member in struct:__anon9241
    [all...]
  /src/external/gpl2/grep/dist/src/
dfa.h 175 is set indicates that the constraint succeeds in the corresponding
189 The macro SUCCEEDS_IN_CONTEXT determines whether a a given constraint
194 #define MATCHES_NEWLINE_CONTEXT(constraint, prevn, currn) \
195 ((constraint) & 1 << (((prevn) ? 2 : 0) + ((currn) ? 1 : 0) + 4))
196 #define MATCHES_LETTER_CONTEXT(constraint, prevl, currl) \
197 ((constraint) & 1 << (((prevl) ? 2 : 0) + ((currl) ? 1 : 0)))
198 #define SUCCEEDS_IN_CONTEXT(constraint, prevn, currn, prevl, currl) \
199 (MATCHES_NEWLINE_CONTEXT(constraint, prevn, currn) \
200 && MATCHES_LETTER_CONTEXT(constraint, prevl, currl))
202 /* The following macros give information about what a constraint depends on. *
227 unsigned constraint; \/* Constraint for matching this position. *\/ member in struct:__anon9321
247 unsigned char constraint; \/* Constraint for this state to accept. *\/ member in struct:__anon9323
    [all...]

Completed in 129 milliseconds

1 2 3 4 5