search for: regoff_t

Displaying 5 results from an estimated 5 matches for "regoff_t".

Did you mean: pgoff_t
1997 Jun 09
1
R-beta: compiling R under HP-UX
...on a HP-UX sim B.10.20 A 9000/819 machine: ranlib ../lib/libappl.a cd regex; make c89 -Ae -g -I../include -DPOSIX_MISTAKE -c regcomp.c cc: warning 422: Unknown option "-Ae" ignored. cc: "../include/regex.h", line 50: error 1000: Unexpected symbol: "regoff_t". cc: "../include/regex.h", line 60: error 1000: Unexpected symbol: "regoff_t". cc: "../include/regex.h", line 61: error 1000: Unexpected symbol: "rm_eo". cc: "../include/regex.h", line 62: error 1000: Unexpected symbol: "}". cc: &quo...
2003 Apr 28
1
Red Hat 9 regex symbol conflict
...nless this function is called, the first search or match using PATTERN_BUFFER will allocate its own register data, without freeing the old data. */ ! extern void re_set_registers _RE_ARGS ((struct re_pattern_buffer *buffer, struct re_registers *regs, unsigned num_regs, regoff_t *starts, regoff_t *ends)); --- 512,518 ---- Unless this function is called, the first search or match using PATTERN_BUFFER will allocate its own register data, without freeing the old data. */ ! static void re_set_registers _RE_ARGS ((struct re_pattern_buffer *buffer, struct...
2009 Aug 25
0
[LLVMdev] Regular Expression lib support
...so the OpenBSD implementation has some extensions (see docs/regex.7), if they are useful those can be added to the Regex class also. A summary of changes from OpenBSD version: - rename functions and types to avoid clashes with system one: regcomp->llvm_regcomp, ..., regex_t -> llvm_regex_t, regoff_t -> llvm_regoff_t, BAD -> REGEX_BAD ... - include strlcpy.c (llvm_strlcpy), a configure check could be added to use system's one, but the function is so simple I just unconditionally always use it - memcpy -> memmove (parameters may overlap, BSD memcpy allows that but POSIX doesn'...
2009 Aug 24
3
[LLVMdev] Regular Expression lib support
On Aug 23, 2009, at 11:59 PM, Török Edwin wrote: > If LLVM is going to have an integrated regex library I suggest using > it > regardless if the platform has one. > The LLVM integrated regex library will provide consistent behaviour > and > execution time, the system one will not. Hi Edwin, Can you propose the openbsd implementation as a patch to lib/support? -Chris
2009 Aug 25
6
[LLVMdev] Regular Expression lib support
...ation has some extensions (see docs/regex.7), > if they are useful those can be added to the Regex class also. > > A summary of changes from OpenBSD version: >  - rename functions and types to avoid clashes with system one: > regcomp->llvm_regcomp, ..., regex_t -> llvm_regex_t, regoff_t -> > llvm_regoff_t, BAD -> REGEX_BAD ... >  - include strlcpy.c (llvm_strlcpy), a configure check could be added to > use system's one, but the function is so simple I just unconditionally > always use it >  - memcpy -> memmove (parameters may overlap, BSD memcpy allows...