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

1 2 3 4 5 6 7 8 91011

  /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/mit/isl/dist/
isl_constraint.c 26 #define EL_BASE constraint
48 isl_constraint *constraint; local
53 constraint = isl_alloc_type(isl_vec_get_ctx(v), isl_constraint);
54 if (!constraint)
57 constraint->ref = 1;
58 constraint->eq = eq;
59 constraint->ls = ls;
60 constraint->v = v;
62 return constraint;
96 isl_constraint *constraint; local
    [all...]
isl_constraint_private.h 4 #include <isl/constraint.h>
24 void isl_constraint_get_constant(__isl_keep isl_constraint *constraint,
26 void isl_constraint_get_coefficient(__isl_keep isl_constraint *constraint,
29 isl_bool isl_constraint_is_div_equality(__isl_keep isl_constraint *constraint,
isl_deprecated.c 1 #include <isl/constraint.h>
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...]
print.c 10 #include <isl/constraint.h>
71 #define BASE constraint
  /src/external/mit/isl/dist/include/isl/
constraint.h 28 ISL_DECLARE_LIST(constraint)
62 __isl_take isl_basic_map *bmap, __isl_take isl_constraint *constraint);
64 __isl_take isl_basic_set *bset, __isl_take isl_constraint *constraint);
66 __isl_take isl_constraint *constraint);
68 __isl_take isl_constraint *constraint);
75 struct isl_constraint **constraint);
82 __isl_keep isl_constraint *constraint);
84 __isl_keep isl_constraint *constraint);
85 isl_size isl_constraint_dim(__isl_keep isl_constraint *constraint,
88 isl_bool isl_constraint_involves_dims(__isl_keep isl_constraint *constraint,
    [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...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
genfusion.pl 107 my $constraint = ($np eq "NON_PREFIXED_DS") ? "YZ" : "m";
113 (compare:${ccmode} (match_operand:${lmode} 1 "${mempred}" "${constraint}")
209 my ($kind, $vchr, $mode, $pred, $constraint, $cr, $outer, @outer_ops,
221 $constraint = "v";
227 $constraint = "r";
232 $c4 = "${constraint},${constraint},${constraint},${constraint}";
307 [(set (match_operand:${mode} 3 "${pred}" "=&0,&1,&${constraint},${constraint}"
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
genfusion.pl 107 my $constraint = ($np eq "NON_PREFIXED_DS") ? "YZ" : "m";
113 (compare:${ccmode} (match_operand:${lmode} 1 "${mempred}" "${constraint}")
209 my ($kind, $vchr, $mode, $pred, $constraint, $cr, $outer, @outer_ops,
221 $constraint = "v";
227 $constraint = "r";
232 $c4 = "${constraint},${constraint},${constraint},${constraint}";
307 [(set (match_operand:${mode} 3 "${pred}" "=&0,&1,&${constraint},${constraint}"
    [all...]
  /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...]
  /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...]
  /src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/mssql/
backsql_create.sql 13 constraint pk_ldap_oc_mappings primary key
21 constraint unq1_ldap_oc_mappings unique
44 constraint pk_ldap_attr_mappings primary key
62 constraint pk_ldap_entries primary key
69 constraint unq1_ldap_entries unique
77 constraint unq2_ldap_entries unique
  /src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/oracle/
backsql_create.sql 12 constraint PK_ldap_oc_mappings primary key
18 constraint unq_ldap_oc_mappings unique
38 constraint pk_ldap_attr_mappings primary key
54 constraint PK_ldap_entries primary key
60 constraint unq1_ldap_entries unique
67 constraint unq2_ldap_entries unique
  /src/external/gpl3/gcc/usr.bin/cc1plus/
Makefile 4 SRCS= ${G_CXX_OBJS:S,c-family/,,:S,cp/,,:S,constraint.o,constraint.cc,:S,logic.o,logic.cc,:S,known-headers.o,known-headers.cc,:S,c-spellcheck.o,c-spellcheck.cc,:S,coroutines.o,coroutines.cc,:Nlibcpp.a:.o=.cc}
  /src/external/gpl3/gcc.old/usr.bin/cc1plus/
Makefile 4 SRCS= ${G_CXX_OBJS:S,c-family/,,:S,cp/,,:S,constraint.o,constraint.cc,:S,logic.o,logic.cc,:S,known-headers.o,known-headers.cc,:S,c-spellcheck.o,c-spellcheck.cc,:S,coroutines.o,coroutines.cc,:Nlibcpp.a:.o=.cc}
  /src/external/gpl3/gcc/dist/gcc/
stmt.cc 182 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
185 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
187 constraint allows the use of a register operand. And, *IS_INOUT
200 const char *constraint = *constraint_p;
203 /* Assume the constraint doesn't allow the use of either a register
212 p = strchr (constraint, '=');
214 p = strchr (constraint, '+');
220 error ("output operand constraint lacks %<=%>");
224 /* If the constraint begins with `+', then the operand is both read
228 /* Canonicalize the output constraint so that it begins with `='. *
195 const char *constraint = *constraint_p; local
322 const char *constraint = *constraint_p; local
    [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/external/gpl3/gcc.old/dist/gcc/
stmt.cc 182 /* Parse the output constraint pointed to by *CONSTRAINT_P. It is the
185 *ALLOWS_MEM will be TRUE iff the constraint allows the use of a
187 constraint allows the use of a register operand. And, *IS_INOUT
200 const char *constraint = *constraint_p;
203 /* Assume the constraint doesn't allow the use of either a register
212 p = strchr (constraint, '=');
214 p = strchr (constraint, '+');
220 error ("output operand constraint lacks %<=%>");
224 /* If the constraint begins with `+', then the operand is both read
228 /* Canonicalize the output constraint so that it begins with `='. *
195 const char *constraint = *constraint_p; local
322 const char *constraint = *constraint_p; local
    [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/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/ibmdb2/
backsql_create.sql 41 constraint unq1_ldap_entries unique
48 constraint unq2_ldap_entries unique
  /src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/mysql/
backsql_create.sql 40 constraint unq1_ldap_entries unique
47 constraint unq2_ldap_entries unique
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ConstraintManager.h 42 /// Construct a ConditionTruthVal indicating the constraint is constrained
44 ConditionTruthVal(bool constraint) : Val(constraint) {}
46 /// Construct a ConstraintVal indicating the constraint is underconstrained.
55 /// Return true if the constraint is perfectly constrained to 'true'.
60 /// Return true if the constraint is perfectly constrained to 'false'.
71 /// if the constraint is true of value.
  /src/external/gpl3/gcc/usr.bin/cc1objplus/
Makefile 26 SRCS= ${MY2OBJS:S,known-headers.o,known-headers.cc,:S,c-spellcheck.o,c-spellcheck.cc,:S,constraint.o,constraint.cc,:S,logic.o,logic.cc,:S,coroutines.o,coroutines.cc,:Nlibcpp.a:.o=.cc}
  /src/external/gpl3/gcc.old/usr.bin/cc1objplus/
Makefile 26 SRCS= ${MY2OBJS:S,known-headers.o,known-headers.cc,:S,c-spellcheck.o,c-spellcheck.cc,:S,constraint.o,constraint.cc,:S,logic.o,logic.cc,:S,coroutines.o,coroutines.cc,:Nlibcpp.a:.o=.cc}

Completed in 93 milliseconds

1 2 3 4 5 6 7 8 91011