Home
last modified time | relevance | path

Searched refs:defn (Results 1 – 25 of 178) sorted by relevance

12345678

/netbsd-src/usr.bin/m4/
H A Dlook.c118 setup_definition(struct macro_definition *d, const char *defn, const char *name) in setup_definition() argument
122 if (strncmp(defn, BUILTIN_MARKER, sizeof(BUILTIN_MARKER)-1) == 0 && in setup_definition()
123 (p = macro_getbuiltin(defn+sizeof(BUILTIN_MARKER)-1)) != NULL) { in setup_definition()
125 d->defn = xstrdup(defn+sizeof(BUILTIN_MARKER)-1); in setup_definition()
127 if (!*defn) in setup_definition()
128 d->defn = xstrdup(null); in setup_definition()
130 d->defn = xstrdup(defn); in setup_definition()
133 if (STREQ(name, defn)) in setup_definition()
157 macro_define(const char *name, const char *defn) in macro_define() argument
161 if (n->d->defn != null) in macro_define()
[all …]
H A Deval.c597 dodefine(const char *name, const char *defn) in dodefine() argument
602 macro_define(name, defn); in dodefine()
617 pbstr(p->defn); in dodefn()
620 pbstr(p->defn); in dodefn()
634 dopushdef(const char *name, const char *defn) in dopushdef() argument
639 macro_pushdef(name, defn); in dopushdef()
652 fprintf(traceout, "%s:\t%s\n", name, p->defn); in dump_one_def()
654 fprintf(traceout, "%s:\t<%s>\n", name, p->defn); in dump_one_def()
657 fprintf(traceout, "`%s'\t`%s'\n", name, p->defn); in dump_one_def()
H A Dgnum4.c177 argv[1] = p->defn; in doindir()
737 char *defn = NULL; in thaw_state() local
765 free(defn); in thaw_state()
798 defn = xrealloc(defn, defnlen = dl + 1, in thaw_state()
801 GETSTR(defn, dl); in thaw_state()
802 macro_pushdef(name, defn); in thaw_state()
H A Dmdef.h146 char *defn; /* definition.. */ member
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/engine/
H A Deng_ctrl.c27 static int int_ctrl_cmd_is_null(const ENGINE_CMD_DEFN *defn) in int_ctrl_cmd_is_null() argument
29 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL)) in int_ctrl_cmd_is_null()
34 static int int_ctrl_cmd_by_name(const ENGINE_CMD_DEFN *defn, const char *s) in int_ctrl_cmd_by_name() argument
37 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) { in int_ctrl_cmd_by_name()
39 defn++; in int_ctrl_cmd_by_name()
41 if (int_ctrl_cmd_is_null(defn)) in int_ctrl_cmd_by_name()
47 static int int_ctrl_cmd_by_num(const ENGINE_CMD_DEFN *defn, unsigned int num) in int_ctrl_cmd_by_num() argument
54 while (!int_ctrl_cmd_is_null(defn) && (defn->cmd_num < num)) { in int_ctrl_cmd_by_num()
56 defn++; in int_ctrl_cmd_by_num()
58 if (defn->cmd_num == num) in int_ctrl_cmd_by_num()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/engine/
H A Deng_ctrl.c24 static int int_ctrl_cmd_is_null(const ENGINE_CMD_DEFN *defn) in int_ctrl_cmd_is_null() argument
26 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL)) in int_ctrl_cmd_is_null()
31 static int int_ctrl_cmd_by_name(const ENGINE_CMD_DEFN *defn, const char *s) in int_ctrl_cmd_by_name() argument
34 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) { in int_ctrl_cmd_by_name()
36 defn++; in int_ctrl_cmd_by_name()
38 if (int_ctrl_cmd_is_null(defn)) in int_ctrl_cmd_by_name()
44 static int int_ctrl_cmd_by_num(const ENGINE_CMD_DEFN *defn, unsigned int num) in int_ctrl_cmd_by_num() argument
51 while (!int_ctrl_cmd_is_null(defn) && (defn->cmd_num < num)) { in int_ctrl_cmd_by_num()
53 defn++; in int_ctrl_cmd_by_num()
55 if (defn->cmd_num == num) in int_ctrl_cmd_by_num()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/property/
H A Ddefn_cache.c27 OSSL_PROPERTY_LIST *defn; member
46 ossl_property_free(elem->defn); in property_defn_free()
85 if (r == NULL || !ossl_assert(r->defn != NULL)) in ossl_prop_defn_get()
87 return r->defn; in ossl_prop_defn_get()
122 *pl = p->defn; in ossl_prop_defn_set()
129 p->defn = *pl; in ossl_prop_defn_set()
H A Dproperty_query.c17 const OSSL_PROPERTY_DEFINITION *defn = in property_idx_cmp() local
20 return key - defn->name_idx; in property_idx_cmp()
H A Dproperty_parse.c345 OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn) in ossl_parse_property() argument
350 const char *s = defn; in ossl_parse_property()
472 const OSSL_PROPERTY_LIST *defn) in ossl_property_match_count() argument
475 const OSSL_PROPERTY_DEFINITION *const d = defn->properties; in ossl_property_match_count()
484 if (j < defn->num_properties) { in ossl_property_match_count()
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dpch.c70 const unsigned char *defn; in write_macdef() local
77 defn = NODE_NAME (hn); in write_macdef()
82 defn = cpp_macro_definition (pfile, hn); in write_macdef()
83 s.definition_length = ustrlen (defn); in write_macdef()
87 || fwrite (defn, 1, s.definition_length, f) != s.definition_length) in write_macdef()
410 uchar *defn; in _cpp_restore_pushed_macros() local
433 defn = XNEWVEC (uchar, defnlen + 1); in _cpp_restore_pushed_macros()
434 defn[defnlen] = 0; in _cpp_restore_pushed_macros()
436 if (fread (defn, defnlen, 1, f) != 1) in _cpp_restore_pushed_macros()
439 p->definition = defn; in _cpp_restore_pushed_macros()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dpch.cc70 const unsigned char *defn; in write_macdef() local
77 defn = NODE_NAME (hn); in write_macdef()
82 defn = cpp_macro_definition (pfile, hn); in write_macdef()
83 s.definition_length = ustrlen (defn); in write_macdef()
87 || fwrite (defn, 1, s.definition_length, f) != s.definition_length) in write_macdef()
410 uchar *defn; in _cpp_restore_pushed_macros() local
433 defn = XNEWVEC (uchar, defnlen + 1); in _cpp_restore_pushed_macros()
434 defn[defnlen] = 0; in _cpp_restore_pushed_macros()
436 if (fread (defn, defnlen, 1, f) != 1) in _cpp_restore_pushed_macros()
439 p->definition = defn; in _cpp_restore_pushed_macros()
[all …]
/netbsd-src/external/gpl2/texinfo/dist/m4/
H A Donceonly.m432 AC_DEFUN([gl_CHECK_HEADER_]m4_quote(translit(defn([gl_HEADER_NAME]),
46 AC_DEFUN([gl_CHECK_FUNC_]defn([gl_FUNC_NAME]), [
47 AC_CHECK_FUNCS(defn([gl_FUNC_NAME]))
49 AC_REQUIRE([gl_CHECK_FUNC_]defn([gl_FUNC_NAME]))
58 AC_DEFUN([gl_CHECK_DECL_]defn([gl_DECL_NAME]), [
59 AC_CHECK_DECLS(defn([gl_DECL_NAME]))
61 AC_REQUIRE([gl_CHECK_DECL_]defn([gl_DECL_NAME]))
/netbsd-src/external/gpl3/autoconf/dist/bin/
H A Dautoupdate.in267 define([_au__defn], defn([defn]))
268 define([_au__divert], defn([divert]))
269 define([_au__ifdef], defn([ifdef]))
270 define([_au__include], defn([include]))
271 define([_au___undefine], defn([undefine]))
/netbsd-src/external/gpl3/binutils/dist/cpu/
H A Dm32c.cpu5973 (define-pmacro (unary-insn-defn-g mach group mode wstr op encoding sem opg)
5983 (define-pmacro (unary-insn-defn mach group mode wstr op encoding sem)
5984 (unary-insn-defn-g mach group mode wstr op encoding sem "")
5988 (define-pmacro (unary16-defn-g mode wstr wbit op opc1 opc2 opc3 sem opg)
5989 (unary-insn-defn-g 16 16 mode wstr op
5993 (define-pmacro (unary16-defn mode wstr wbit op opc1 opc2 opc3 sem)
5994 (unary-16-defn-g mode wstr wbit op opc1 opc2 opc3 sem "")
5997 (define-pmacro (unary32-defn-g mode wstr wbit op opc1 opc2 opc3 sem opg)
6002 ; (unary-insn-defn 32 24-absolute-indirect mode wstr op
6005 (unary-insn-defn-g 32 16-Unprefixed mode wstr op
[all …]
H A DChangeLog671 (arith-jnz-imm4-dst-defn): Make relaxable.
672 (arith-jnz16-imm4-dst-defn): Fix encodings.
736 (unary-insn-defn-g, binary-arith-imm-dst-defn,
737 binary-arith-imm4-dst-defn): Add 1ADDR attribute.
738 (binary-arith-src-dst-defn): Add 2ADDR attribute.
837 (arith-jnz16-imm4-dst-defn, arith-jnz32-imm4-dst-defn,
841 (unary-insn-defn, unary16-defn, unary32-defn, unary-insn-mach,
852 (mov-dspsp-dst-defn, mov-src-dspsp-defn, mov16-dspsp-dst-defn,
853 mov16-src-dspsp-defn, mov32-dspsp-dst-defn, mov32-src-dspsp-defn):
/netbsd-src/external/gpl3/gdb/dist/cpu/
H A Dm32c.cpu5973 (define-pmacro (unary-insn-defn-g mach group mode wstr op encoding sem opg)
5983 (define-pmacro (unary-insn-defn mach group mode wstr op encoding sem)
5984 (unary-insn-defn-g mach group mode wstr op encoding sem "")
5988 (define-pmacro (unary16-defn-g mode wstr wbit op opc1 opc2 opc3 sem opg)
5989 (unary-insn-defn-g 16 16 mode wstr op
5993 (define-pmacro (unary16-defn mode wstr wbit op opc1 opc2 opc3 sem)
5994 (unary-16-defn-g mode wstr wbit op opc1 opc2 opc3 sem "")
5997 (define-pmacro (unary32-defn-g mode wstr wbit op opc1 opc2 opc3 sem opg)
6002 ; (unary-insn-defn 32 24-absolute-indirect mode wstr op
6005 (unary-insn-defn-g 32 16-Unprefixed mode wstr op
[all …]
/netbsd-src/external/gpl3/gdb.old/dist/cpu/
H A Dm32c.cpu5973 (define-pmacro (unary-insn-defn-g mach group mode wstr op encoding sem opg)
5983 (define-pmacro (unary-insn-defn mach group mode wstr op encoding sem)
5984 (unary-insn-defn-g mach group mode wstr op encoding sem "")
5988 (define-pmacro (unary16-defn-g mode wstr wbit op opc1 opc2 opc3 sem opg)
5989 (unary-insn-defn-g 16 16 mode wstr op
5993 (define-pmacro (unary16-defn mode wstr wbit op opc1 opc2 opc3 sem)
5994 (unary-16-defn-g mode wstr wbit op opc1 opc2 opc3 sem "")
5997 (define-pmacro (unary32-defn-g mode wstr wbit op opc1 opc2 opc3 sem opg)
6002 ; (unary-insn-defn 32 24-absolute-indirect mode wstr op
6005 (unary-insn-defn-g 32 16-Unprefixed mode wstr op
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/cpu/
H A Dm32c.cpu5973 (define-pmacro (unary-insn-defn-g mach group mode wstr op encoding sem opg)
5983 (define-pmacro (unary-insn-defn mach group mode wstr op encoding sem)
5984 (unary-insn-defn-g mach group mode wstr op encoding sem "")
5988 (define-pmacro (unary16-defn-g mode wstr wbit op opc1 opc2 opc3 sem opg)
5989 (unary-insn-defn-g 16 16 mode wstr op
5993 (define-pmacro (unary16-defn mode wstr wbit op opc1 opc2 opc3 sem)
5994 (unary-16-defn-g mode wstr wbit op opc1 opc2 opc3 sem "")
5997 (define-pmacro (unary32-defn-g mode wstr wbit op opc1 opc2 opc3 sem opg)
6002 ; (unary-insn-defn 32 24-absolute-indirect mode wstr op
6005 (unary-insn-defn-g 32 16-Unprefixed mode wstr op
[all …]
H A DChangeLog654 (arith-jnz-imm4-dst-defn): Make relaxable.
655 (arith-jnz16-imm4-dst-defn): Fix encodings.
719 (unary-insn-defn-g, binary-arith-imm-dst-defn,
720 binary-arith-imm4-dst-defn): Add 1ADDR attribute.
721 (binary-arith-src-dst-defn): Add 2ADDR attribute.
820 (arith-jnz16-imm4-dst-defn, arith-jnz32-imm4-dst-defn,
824 (unary-insn-defn, unary16-defn, unary32-defn, unary-insn-mach,
835 (mov-dspsp-dst-defn, mov-src-dspsp-defn, mov16-dspsp-dst-defn,
836 mov16-src-dspsp-defn, mov32-dspsp-dst-defn, mov32-src-dspsp-defn):
/netbsd-src/external/cddl/osnet/dist/tools/ctf/cvt/
H A Dmerge.c343 tdesc_t *defn = (ctdp->t_type == FORWARD ? mtdp : ctdp); in fwd_equiv() local
345 return (defn->t_type == STRUCT || defn->t_type == UNION || in fwd_equiv()
346 defn->t_type == ENUM); in fwd_equiv()
877 void *defn; in fwd_redir() local
879 if (!alist_find(map, (void *)fwd, (void **)&defn)) in fwd_redir()
882 debug(3, "Redirecting an edge to %s\n", tdesc_name(defn)); in fwd_redir()
884 *fwdp = defn; in fwd_redir()
920 tdesc_t *defn; in redir_mstr_fwd_cb() local
925 (void *)&defn)) { in redir_mstr_fwd_cb()
927 tdesc_name(defn)); in redir_mstr_fwd_cb()
[all …]
/netbsd-src/external/public-domain/sqlite/sqlite2mdoc/
H A Dmain.c121 TAILQ_HEAD(defnq, defn);
138 struct defn { struct
140 TAILQ_ENTRY(defn) entries; argument
296 struct defn *d; in decl_function()
400 struct defn *d; in decl_define()
456 struct defn *d; in decl()
591 struct defn *d; in seealso()
630 struct defn *d; in desc()
709 struct defn *d; in keys()
747 struct defn *d; in init()
[all …]
/netbsd-src/external/lgpl3/gmp/dist/mpn/x86/
H A Ddarwin.m445 ifelse(index(defn(`load_eip'), `$2'),-1,
53 ifelse(index(defn(`darwin_bd'), `bol $1
70 ifelse(index(defn(`load_eip'), `$2'),-1,
/netbsd-src/crypto/external/bsd/openssl/dist/include/internal/
H A Dproperty.h30 OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn);
36 const OSSL_PROPERTY_LIST *defn);
/netbsd-src/crypto/external/bsd/openssl/dist/test/
H A Dproperty_test.c81 const char *defn; member
130 && TEST_ptr(p = ossl_parse_property(NULL, parser_tests[n].defn)) in test_property_parse()
307 const char *defn; member
332 && TEST_ptr(d = ossl_parse_property(NULL, definition_tests[n].defn)) in test_definition_compares()
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dclojure29 0 regex \^\\\(defn-?[[:space:]] Clojure module source text

12345678