Home
last modified time | relevance | path

Searched refs:bc_vm_handleError (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/bc/include/
H A Dstatus.h926 #define bc_error(e, l, ...) (bc_vm_handleError((e)))
932 #define bc_err(e) (bc_vm_handleError((e)))
938 #define bc_verr(e, ...) (bc_vm_handleError((e)))
952 (bc_vm_handleError((e), __FILE__, __LINE__, (l), __VA_ARGS__))
954 #define bc_error(e, l, ...) (bc_vm_handleError((e), (l), __VA_ARGS__))
962 #define bc_err(e) (bc_vm_handleError((e), __FILE__, __LINE__, 0))
964 #define bc_err(e) (bc_vm_handleError((e), 0))
973 (bc_vm_handleError((e), __FILE__, __LINE__, 0, __VA_ARGS__))
975 #define bc_verr(e, ...) (bc_vm_handleError((e), 0, __VA_ARGS__))
H A Dparse.h115 (bc_vm_handleError((e), __FILE__, __LINE__, (p)->l.line))
117 #define bc_parse_err(p, e) (bc_vm_handleError((e), (p)->l.line))
129 (bc_vm_handleError((e), __FILE__, __LINE__, (p)->l.line, __VA_ARGS__))
132 (bc_vm_handleError((e), (p)->l.line, __VA_ARGS__))
H A Dlex.h53 #define bc_lex_err(l, e) (bc_vm_handleError((e), __FILE__, __LINE__, (l)->line))
55 #define bc_lex_err(l, e) (bc_vm_handleError((e), (l)->line))
66 (bc_vm_handleError((e), __FILE__, __LINE__, (l)->line, __VA_ARGS__))
68 #define bc_lex_verr(l, e, ...) (bc_vm_handleError((e), (l)->line, __VA_ARGS__))
H A Dvm.h982 bc_vm_handleError(BcErr e);
1019 bc_vm_handleError(BcErr e, const char* file, int fline, size_t line, ...);
1031 bc_vm_handleError(BcErr e, size_t line, ...);
/freebsd-14.2/contrib/bc/src/
H A Dvm.c329 bc_vm_handleError(BcErr e) function
357 bc_vm_handleError(BcErr e, const char* file, int fline, size_t line, ...) function
360 bc_vm_handleError(BcErr e, size_t line, ...)