| /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...] |
| 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;
|
| supergraph.cc | 416 pp_string (pp, ":n [style=\"invis\",constraint=true];\n"); 920 const char *constraint = "true"; local 972 (" [style=%s, color=%s, weight=%d, constraint=%s," 975 style, color, weight, constraint,
|
| /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...] |
| 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;
|
| supergraph.cc | 410 pp_string (pp, ":n [style=\"invis\",constraint=true];\n"); 889 const char *constraint = "true"; local 941 (" [style=%s, color=%s, weight=%d, constraint=%s," 944 style, color, weight, constraint,
|
| /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,
|
| 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...] |
| genoutput.cc | 55 b. `constraint' is the constraint for this operand. 118 const char *constraint; 158 int n_alternatives; /* Number of alternatives in each constraint */ 195 /* All machine-independent constraint characters (except digits) that 261 printf (" \"%s\",\n", d->constraint ? d->constraint : ""); 267 printf (" %d,\n", d->constraint == NULL ? 1 : 0); 457 d->operand[opno].constraint = strip_whitespace (XSTR (part, 2)); 459 = n_occurrences (',', d->operand[opno].constraint) + 1 117 const char *constraint; member in struct:operand_data [all...] |
| lra-int.h | 129 /* The machine description constraint string of the operand. */ 130 const char *constraint; member in struct:lra_operand_data 190 /* Array [n_alternatives][n_operand] of static constraint info for 258 as permitted constraint passes in some complicated cases. The
|
| recog.h | 48 /* Pointer to the beginning of the constraint string for this alternative, 50 const char *constraint; member in struct:operand_alternative 56 characters in the constraint string. */ 59 /* -1 if no matching constraint was found, or an operand number. */ 66 /* Bit ID is set if the constraint string includes a register constraint with 71 /* Nonzero if '&' was found in the constraint string. */ 73 /* Nonzero if TARGET_MEM_CONSTRAINT was found in the constraint 76 /* Nonzero if 'p' was found in the constraint string. */ 78 /* Nonzero if 'X' was found in the constraint string, or if the constrain 459 const char *const constraint; member in struct:insn_operand_data [all...] |
| 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...] |
| tree-ssa-operands.cc | 711 const char *constraint; local 721 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link))); 722 oconstraints[i] = constraint; 723 parse_output_constraint (&constraint, i, 0, 0, &allows_mem, 741 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link))); 742 parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints,
|
| /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,
|
| genoutput.cc | 55 b. `constraint' is the constraint for this operand. 118 const char *constraint; 158 int n_alternatives; /* Number of alternatives in each constraint */ 194 /* All machine-independent constraint characters (except digits) that 260 printf (" \"%s\",\n", d->constraint ? d->constraint : ""); 266 printf (" %d,\n", d->constraint == NULL ? 1 : 0); 456 d->operand[opno].constraint = strip_whitespace (XSTR (part, 2)); 458 = n_occurrences (',', d->operand[opno].constraint) + 1 117 const char *constraint; member in struct:operand_data [all...] |
| lra-int.h | 129 /* The machine description constraint string of the operand. */ 130 const char *constraint; member in struct:lra_operand_data 190 /* Array [n_alternatives][n_operand] of static constraint info for 255 as permitted constraint passes in some complicated cases. The
|
| recog.h | 44 /* Pointer to the beginning of the constraint string for this alternative, 46 const char *constraint; member in struct:operand_alternative 52 characters in the constraint string. */ 55 /* -1 if no matching constraint was found, or an operand number. */ 62 /* Nonzero if '&' was found in the constraint string. */ 64 /* Nonzero if TARGET_MEM_CONSTRAINT was found in the constraint 67 /* Nonzero if 'p' was found in the constraint string. */ 69 /* Nonzero if 'X' was found in the constraint string, or if the constraint 279 useful to skip alternatives in a constraint string. * 425 const char *const constraint; member in struct:insn_operand_data [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
| 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
|
| /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...] |
| /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...] |
| /src/external/gpl2/xcvs/dist/lib/ |
| regex_internal.c | 1356 dfa->nodes[dfa->nodes_len].constraint = 0; 1546 if (type == CHARACTER && !node->constraint) 1557 else if (type == ANCHOR || node->constraint) 1596 unsigned int constraint = 0; 1599 if (node->constraint) 1600 constraint = node->constraint; 1602 if (type == CHARACTER && !constraint) 1614 constraint = node->opr.ctx_type; 1616 if (constraint) 1593 unsigned int constraint = 0; local [all...] |