Searched refs:defn (Results 1 - 25 of 39) sorted by relevance

12

/netbsd-current/usr.bin/m4/
H A Dlook.c118 setup_definition(struct macro_definition *d, const char *defn, const char *name) argument
122 if (strncmp(defn, BUILTIN_MARKER, sizeof(BUILTIN_MARKER)-1) == 0 &&
123 (p = macro_getbuiltin(defn+sizeof(BUILTIN_MARKER)-1)) != NULL) {
125 d->defn = xstrdup(defn+sizeof(BUILTIN_MARKER)-1);
127 if (!*defn)
128 d->defn = xstrdup(null);
130 d->defn = xstrdup(defn);
133 if (STREQ(name, defn))
157 macro_define(const char *name, const char *defn) argument
171 macro_pushdef(const char *name, const char *defn) argument
[all...]
H A Deval.c521 t = argv[0]; /* defn string as a whole */
525 p--; /* last character of defn */
597 dodefine(const char *name, const char *defn) argument
602 macro_define(name, defn);
617 pbstr(p->defn);
620 pbstr(p->defn);
634 dopushdef(const char *name, const char *defn) argument
639 macro_pushdef(name, defn);
652 fprintf(traceout, "%s:\t%s\n", name, p->defn);
654 fprintf(traceout, "%s:\t<%s>\n", name, p->defn);
[all...]
H A Dgnum4.c177 argv[1] = p->defn;
737 char *defn = NULL; local
765 free(defn);
798 defn = xrealloc(defn, defnlen = dl + 1,
799 "defn grow");
801 GETSTR(defn, dl);
802 macro_pushdef(name, defn);
H A Dmain.c105 { "defn", DEFNTYPE },
540 pushs1(xstrdup(macro_getdef(p)->defn)); /* defn string */
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/property/
H A Ddefn_cache.c27 OSSL_PROPERTY_LIST *defn; member in struct:__anon371
46 ossl_property_free(elem->defn);
85 if (r == NULL || !ossl_assert(r->defn != NULL))
87 return r->defn;
122 *pl = p->defn;
129 p->defn = *pl;
H A Dproperty_query.c17 const OSSL_PROPERTY_DEFINITION *defn = local
20 return key - defn->name_idx;
/netbsd-current/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) argument
26 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL))
31 static int int_ctrl_cmd_by_name(const ENGINE_CMD_DEFN *defn, const char *s) argument
34 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) {
36 defn++;
38 if (int_ctrl_cmd_is_null(defn))
44 static int int_ctrl_cmd_by_num(const ENGINE_CMD_DEFN *defn, unsigned int num) argument
51 while (!int_ctrl_cmd_is_null(defn)
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/engine/
H A Deng_ctrl.c27 static int int_ctrl_cmd_is_null(const ENGINE_CMD_DEFN *defn) argument
29 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL))
34 static int int_ctrl_cmd_by_name(const ENGINE_CMD_DEFN *defn, const char *s) argument
37 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) {
39 defn++;
41 if (int_ctrl_cmd_is_null(defn))
47 static int int_ctrl_cmd_by_num(const ENGINE_CMD_DEFN *defn, unsigned int num) argument
54 while (!int_ctrl_cmd_is_null(defn)
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libcpp/
H A Dpch.c70 const unsigned char *defn; local
77 defn = NODE_NAME (hn);
82 defn = cpp_macro_definition (pfile, hn);
83 s.definition_length = ustrlen (defn);
87 || fwrite (defn, 1, s.definition_length, f) != s.definition_length)
410 uchar *defn; local
433 defn = XNEWVEC (uchar, defnlen + 1);
434 defn[defnlen] = 0;
436 if (fread (defn, defnlen, 1, f) != 1)
439 p->definition = defn;
766 const uchar * defn = cpp_macro_definition (r, h); local
826 uchar *defn; local
[all...]
H A Ddirectives.c1545 const uchar *defn = NULL; local
1586 defn = cpp_macro_definition (pfile, node);
1587 defnlen = ustrlen (defn);
1594 memcpy (c->definition, defn, defnlen);
/netbsd-current/external/gpl3/gcc/dist/libcpp/
H A Dpch.cc70 const unsigned char *defn; local
77 defn = NODE_NAME (hn);
82 defn = cpp_macro_definition (pfile, hn);
83 s.definition_length = ustrlen (defn);
87 || fwrite (defn, 1, s.definition_length, f) != s.definition_length)
410 uchar *defn; local
433 defn = XNEWVEC (uchar, defnlen + 1);
434 defn[defnlen] = 0;
436 if (fread (defn, defnlen, 1, f) != 1)
439 p->definition = defn;
766 const uchar * defn = cpp_macro_definition (r, h); local
826 uchar *defn; local
[all...]
H A Ddirectives.cc1586 const uchar *defn = NULL; local
1627 defn = cpp_macro_definition (pfile, node);
1628 defnlen = ustrlen (defn);
1635 memcpy (c->definition, defn, defnlen);
/netbsd-current/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]))
756 # define([OLD], [defn([OLD($@)])changequote()])
790 # define([OLD], [defn([OLD($@)])changequote()])
878 # rely on `changequote', `ifelse' and `defn', but we don't want to
/netbsd-current/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-current/external/cddl/osnet/dist/tools/ctf/cvt/
H A Dmerge.c343 tdesc_t *defn = (ctdp->t_type == FORWARD ? mtdp : ctdp); local
345 return (defn->t_type == STRUCT || defn->t_type == UNION ||
346 defn->t_type == ENUM);
459 debug(3, "Creating new defn type %d <%x>\n", id, id);
877 void *defn; local
879 if (!alist_find(map, (void *)fwd, (void **)&defn))
882 debug(3, "Redirecting an edge to %s\n", tdesc_name(defn));
884 *fwdp = defn;
920 tdesc_t *defn; local
[all...]
/netbsd-current/external/public-domain/sqlite/sqlite2mdoc/
H A Dmain.c121 TAILQ_HEAD(defnq, defn);
138 struct defn { struct
140 TAILQ_ENTRY(defn) entries;
296 struct defn *d;
400 struct defn *d;
456 struct defn *d;
591 struct defn *d;
630 struct defn *d;
709 struct defn *d;
747 struct defn *
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/dwarf2/
H A Dmacro.c329 const gdb_byte *defn; local
338 defn = opcode_definitions[opcode];
339 arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
340 defn += bytes_read;
345 (enum dwarf_form) defn[i], offset_size,
/netbsd-current/external/gpl3/gdb/dist/gdb/dwarf2/
H A Dmacro.c344 const gdb_byte *defn; local
353 defn = opcode_definitions[opcode];
354 arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
355 defn += bytes_read;
360 (enum dwarf_form) defn[i], offset_size,
/netbsd-current/crypto/external/bsd/openssl/dist/test/
H A Dproperty_test.c81 const char *defn; member in struct:__anon84
126 && TEST_ptr(p = ossl_parse_property(NULL, parser_tests[n].defn))
300 const char *defn; member in struct:__anon87
325 && TEST_ptr(d = ossl_parse_property(NULL, definition_tests[n].defn))
/netbsd-current/external/historical/nawk/dist/
H A Dproto.h92 extern void defn(Cell *, Node *, Node *);
H A Dparse.c260 void defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition, */ function
H A Dawkgram.y190 { infunc = false; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; }
/netbsd-current/external/gpl3/gcc/dist/gcc/cp/
H A Dmodule.cc8192 to the class defn). */
11356 depset::hash::add_dependency making the decl and defn depset nodes
11485 // FIXME:QOI Check matching defn
11558 // FIXME:QOI Check matching defn
11597 trees_out::write_class_def (tree defn)
11599 gcc_assert (DECL_P (defn));
11601 dump () && dump ("Writing class definition %N", defn);
11603 tree type = TREE_TYPE (defn);
11681 for (tree friends = DECL_FRIENDLIST (defn);
11723 trees_out::mark_class_def (tree defn)
[all...]
/netbsd-current/external/gpl2/gmake/dist/
H A Dread.c138 static void record_target_var PARAMS ((struct nameseq *filenames, char *defn,
1769 record_target_var (struct nameseq *filenames, char *defn,
1802 v = parse_variable_definition (&p->variable, defn);
1830 v = try_variable_definition (flocp, defn, origin, 1);
1761 record_target_var(struct nameseq *filenames, char *defn, enum variable_origin origin, int exported, const struct floc *flocp) argument
/netbsd-current/external/gpl2/gmake/dist/config/
H A Dtexinfo.tex807 % This defn is used inside fill environments such as @defun.
810 % This defn is used inside nofill environments such as @example.

Completed in 500 milliseconds

12