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

1 2

  /src/external/bsd/openldap/dist/libraries/librewrite/
map.c 45 struct rewrite_subst *subst = NULL; local
184 subst = rewrite_subst_compile( info, begin );
185 if ( subst == NULL ) {
211 * No subst for variable deref
219 map->lm_subst = subst;
335 if ( subst != NULL ) {
336 free( subst );
rule.c 133 struct rewrite_subst *subst = NULL; local
151 subst = rewrite_subst_compile( info, result );
152 if ( subst == NULL ) {
361 rule->lr_subst = subst;
386 free( subst );
subst.c 1 /* $NetBSD: subst.c,v 1.4 2025/09/05 21:16:23 christos Exp $ */
280 struct rewrite_subst *subst,
293 assert( subst != NULL );
306 if ( subst->lt_num_submatch > 0 ) {
308 subst->lt_num_submatch );
315 * Resolve submatches (simple subst, map expansion and so).
317 for ( n = 0, l = 0; n < subst->lt_num_submatch; n++ ) {
325 switch ( subst->lt_submatch[ n ].ls_type ) {
328 rc = submatch_copy( &subst->lt_submatch[ n ],
337 switch ( subst->lt_submatch[ n ].ls_map->lm_type )
468 struct rewrite_subst *subst; local
    [all...]
  /src/external/bsd/libarchive/dist/tar/
subst.c 44 struct substitution *subst; local
46 bsdtar->substitution = subst = malloc(sizeof(*subst));
47 if (subst == NULL)
49 subst->first_rule = subst->last_rule = NULL;
56 struct substitution *subst; local
61 if ((subst = bsdtar->substitution) == NULL) {
63 subst = bsdtar->substitution;
72 if (subst->last_rule == NULL
207 struct substitution *subst; local
321 struct substitution *subst; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
syntax.c 219 Syntax *subst = NULL; local
222 if ( strcmp( (*lsei)->lsei_name, "X-SUBST" ) != 0 ) {
236 subst = syn_find( (*lsei)->lsei_values[0] );
237 if ( subst == NULL ) {
246 if ( subst != NULL ) {
247 ssyn->ssyn_flags = subst->ssyn_flags;
248 ssyn->ssyn_validate = subst->ssyn_validate;
249 ssyn->ssyn_pretty = subst->ssyn_pretty;
254 ssyn->ssyn_ber2str = subst->ssyn_ber2str;
255 ssyn->ssyn_str2ber = subst->ssyn_str2ber
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/src/
msginit.c 1474 string. When subst[j][0] found, it is replaced with subst[j][1].
1475 subst[j][0] must not be the empty string. */
1478 unsigned int nsubst, const char *(*subst)[2])
1490 substlen[j] = strlen (subst[j][0]);
1500 if (*(str + i) == *subst[j][0]
1501 && strncmp (str + i, subst[j][0], substlen[j]) == 0)
1503 size_t replacement_len = strlen (subst[j][1]);
1507 memcpy (new_str + i, subst[j][1], replacement_len);
1527 When subst[j][0] found, it is replaced with subst[j][1]. subst[j][0
1604 const char *subst[4][2]; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonLoopIdiomRecognition.cpp 251 Value *subst(Value *Tree, Value *OldV, Value *NewV);
398 Value *Simplifier::Context::subst(Value *Tree, Value *OldV, Value *NewV) { function in class:Simplifier::Context
446 NewV = subst(NewV, V, DupV);
454 Root = subst(Root, OldV, NewV);
  /src/external/bsd/libc++/dist/libcxxrt/src/
libelftc_dem_gnu3.c 100 struct vector_str subst; /* substitution string vector */ member in struct:cpp_demangle_data
578 if (*ddata.cur != 0 && ddata.subst.size >= 1) {
579 if (!vector_str_pop(&ddata.subst))
672 vector_str_dest(&d->subst);
685 if (!vector_str_init(&d->subst))
695 assert(d->subst.container != NULL);
720 vector_str_dest(&d->subst);
793 if (!vector_str_find(&ddata->subst, str, len))
794 return (vector_str_push(&ddata->subst, str, len));
1076 if (ddata == NULL || ddata->subst.size <= idx
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
obj-elf.c 1105 char *subst = strchr (name, '%'); local
1106 if (subst && subst[1] == 'S')
1108 size_t head = subst - name;
1109 size_t tail = strlen (subst + 2) + 1;
  /src/external/gpl3/binutils.old/dist/gas/config/
obj-elf.c 1092 char *subst = strchr (name, '%'); local
1093 if (subst && subst[1] == 'S')
1095 size_t head = subst - name;
1096 size_t tail = strlen (subst + 2) + 1;
  /src/external/gpl3/gcc/dist/gcc/
ira-costs.cc 1920 rtx subst = ira_reg_equiv[regno].memory;
1922 if (subst == NULL)
1923 subst = ira_reg_equiv[regno].constant;
1924 if (subst == NULL)
1925 subst = ira_reg_equiv[regno].invariant;
1926 ira_assert (subst != NULL);
1929 bool consumed_p = equiv_can_be_consumed_p (regno, subst, insn);
1932 if (MEM_P (subst)
1913 rtx subst = ira_reg_equiv[regno].memory; local
lra.cc 2047 rtx subst, inner = SUBREG_REG (x);
2053 && (subst = simplify_subreg (GET_MODE (x), new_reg, GET_MODE (inner),
2056 *loc = subst;
2040 rtx subst, inner = SUBREG_REG (x); local
stor-layout.cc 186 tree subst, param_name, param_type, param_decl;
192 subst = ref;
196 subst = ref;
199 subst = TREE_OPERAND (ref, 1);
210 size = substitute_in_expr (size, subst, param_decl);
185 tree subst, param_name, param_type, param_decl; local
genmatch.cc 1199 id_base *subst = p->substitutes[j]; local
1200 if (operator_id *q = dyn_cast <operator_id *> (subst))
1203 subst = swap_tree_comparison (q);
1205 newop->substitutes.safe_push (subst);
1654 auto_vec<std::pair<user_id *, id_base *> > subst (n_ids);
1667 subst.quick_push (std::make_pair (id, oper));
1683 ns->for_subst_vec.safe_splice (subst);
5047 for = '(' 'for' <subst>... <pattern> ')'
5048 subst = <ident> '(' <ident>... ')' */
  /src/external/gpl3/gcc.old/dist/gcc/
lra.cc 1984 rtx subst, inner = SUBREG_REG (x);
1990 && (subst = simplify_subreg (GET_MODE (x), new_reg, GET_MODE (inner),
1993 *loc = subst;
1977 rtx subst, inner = SUBREG_REG (x); local
stor-layout.cc 186 tree subst, param_name, param_type, param_decl;
192 subst = ref;
196 subst = ref;
199 subst = TREE_OPERAND (ref, 1);
210 size = substitute_in_expr (size, subst, param_decl);
185 tree subst, param_name, param_type, param_decl; local
genmatch.cc 1049 id_base *subst = p->substitutes[j]; local
1050 if (operator_id *q = dyn_cast <operator_id *> (subst))
1053 subst = swap_tree_comparison (q);
1055 newop->substitutes.safe_push (subst);
1504 auto_vec<std::pair<user_id *, id_base *> > subst (n_ids);
1517 subst.quick_push (std::make_pair (id, oper));
1533 ns->for_subst_vec.safe_splice (subst);
4811 for = '(' 'for' <subst>... <pattern> ')'
4812 subst = <ident> '(' <ident>... ')' */
  /src/external/apache2/llvm/dist/clang/lib/AST/
ItaniumMangle.cpp 1019 // ::= W <module-subst> <unscoped-name>* E
1026 // <module-subst> ::= _ <seq-id> # 0 < seq-id < 10
2195 SubstTemplateTemplateParmStorage *subst local
2197 mangleType(subst->getReplacement());
2325 SubstTemplateTemplateParmStorage *subst = local
2327 mangleExistingSubstitution(subst->getReplacement());
  /src/external/gpl3/binutils.old/dist/libiberty/
cp-demangle.c 1487 int subst = 0; local
1522 subst = 1;
1532 if (!subst)
1539 if (!subst && !d_add_substitution (di, dc))
1543 subst = 0;
1547 if (substable && !subst && !d_add_substitution (di, dc))
1614 SUBST is true if we should add substitutions (as normal), false
  /src/external/gpl3/gcc/dist/libiberty/
cp-demangle.c 1487 int subst = 0; local
1522 subst = 1;
1532 if (!subst)
1539 if (!subst && !d_add_substitution (di, dc))
1543 subst = 0;
1547 if (substable && !subst && !d_add_substitution (di, dc))
1614 SUBST is true if we should add substitutions (as normal), false
  /src/external/gpl3/gcc.old/dist/gcc/cp/
constraint.cc 326 if (tree subst = coerce_template_parms (parms, args, tmpl))
328 if (subst == error_mark_node)
331 cands = tree_cons (subst, fn, cands);
729 tree subst = coerce_template_parms (parms, targs, tmpl); local
731 if (subst == error_mark_node)
740 return normalize_expression (def, subst, info);
  /src/external/gpl3/gcc.old/dist/libiberty/
cp-demangle.c 1437 int subst; local
1442 subst = 1;
1451 subst = 0;
1457 called d_substitution() above (i.e., subst == 1). We
1466 if (! subst)
1544 SUBST is true if we should add substitutions (as normal), false
1548 d_prefix (struct d_info *di, int subst)
1614 if (peek != 'S' && d_peek_char (di) != 'E' && subst)
  /src/external/gpl3/gdb.old/dist/libiberty/
cp-demangle.c 1487 int subst = 0; local
1522 subst = 1;
1532 if (!subst)
1539 if (!subst && !d_add_substitution (di, dc))
1543 subst = 0;
1547 if (substable && !subst && !d_add_substitution (di, dc))
1614 SUBST is true if we should add substitutions (as normal), false
  /src/external/gpl3/gdb/dist/libiberty/
cp-demangle.c 1487 int subst = 0; local
1522 subst = 1;
1532 if (!subst)
1539 if (!subst && !d_add_substitution (di, dc))
1543 subst = 0;
1547 if (substable && !subst && !d_add_substitution (di, dc))
1614 SUBST is true if we should add substitutions (as normal), false
  /src/external/gpl3/binutils/dist/libiberty/
cp-demangle.c 1489 int subst = 0; local
1524 subst = 1;
1534 if (!subst)
1541 if (!subst && !d_add_substitution (di, dc))
1545 subst = 0;
1549 if (substable && !subst && !d_add_substitution (di, dc))
1616 SUBST is true if we should add substitutions (as normal), false

Completed in 61 milliseconds

1 2