Home
last modified time | relevance | path

Searched refs:srcpos (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/dtc/
H A Dsrcpos.h70 struct srcpos { struct
78 #define YYLTYPE struct srcpos argument
103 extern struct srcpos srcpos_empty;
105 extern void srcpos_update(struct srcpos *pos, const char *text, int len);
106 extern struct srcpos *srcpos_copy(struct srcpos *pos);
107 extern char *srcpos_string(struct srcpos *pos);
109 extern void srcpos_verror(struct srcpos *pos, const char *prefix,
112 extern void srcpos_error(struct srcpos *pos, const char *prefix,
H A Dsrcpos.c204 struct srcpos srcpos_empty = {
214 void srcpos_update(struct srcpos *pos, const char *text, int len) in srcpos_update()
238 struct srcpos *
239 srcpos_copy(struct srcpos *pos) in srcpos_copy()
241 struct srcpos *pos_new; in srcpos_copy()
243 pos_new = xmalloc(sizeof(struct srcpos)); in srcpos_copy()
244 memcpy(pos_new, pos, sizeof(struct srcpos)); in srcpos_copy()
250 srcpos_string(struct srcpos *pos) in srcpos_string()
274 void srcpos_verror(struct srcpos *pos, const char *prefix, in srcpos_verror()
288 void srcpos_error(struct srcpos *pos, const char *prefix, in srcpos_error()
/freebsd-12.1/gnu/usr.bin/dtc/
H A DMakefile12 flattree.c srcpos.c util.c \