update prebuilt

This commit is contained in:
David Rose 2003-02-25 02:33:58 +00:00
parent 2fd799cf29
commit 324280b3f2
11 changed files with 12202 additions and 7813 deletions

View File

@ -144,6 +144,7 @@ extern FILE *yyin, *yyout;
{ \
/* Undo effects of setting up yytext. */ \
*yy_cp = yy_hold_char; \
YY_RESTORE_YY_MORE_OFFSET \
yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
} \
@ -253,7 +254,7 @@ void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *str ));
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
@ -478,6 +479,7 @@ static char *yy_last_accepting_cpos;
#define REJECT reject_used_but_not_detected
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "dcLexer.lxx"
#define INITIAL 0
@ -768,7 +770,7 @@ inline void accept() {
col_number += yyleng;
}
#line 773 "lex.yy.c"
#line 775 "lex.yy.c"
/* Macros after this point can all be overridden by user definitions in
* section 1.
@ -790,6 +792,10 @@ static void yyunput YY_PROTO(( int c, char *buf_ptr ));
static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen YY_PROTO(( yyconst char * ));
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput YY_PROTO(( void ));
@ -912,7 +918,7 @@ YY_MALLOC_DECL
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register char *yy_cp = NULL, *yy_bp = NULL;
register int yy_act;
#line 295 "dcLexer.lxx"
@ -921,7 +927,7 @@ YY_DECL
#line 926 "lex.yy.c"
#line 932 "lex.yy.c"
if ( yy_init )
{
@ -1350,7 +1356,7 @@ YY_RULE_SETUP
#line 526 "dcLexer.lxx"
ECHO;
YY_BREAK
#line 1355 "lex.yy.c"
#line 1361 "lex.yy.c"
case YY_STATE_EOF(INITIAL):
yyterminate();
@ -1361,6 +1367,7 @@ case YY_STATE_EOF(INITIAL):
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = yy_hold_char;
YY_RESTORE_YY_MORE_OFFSET
if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
{
@ -1506,7 +1513,7 @@ static int yy_get_next_buffer()
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
{
/* We matched a singled characater, the EOB, so
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
@ -1533,7 +1540,7 @@ static int yy_get_next_buffer()
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
yy_n_chars = 0;
yy_current_buffer->yy_n_chars = yy_n_chars = 0;
else
{
@ -1588,6 +1595,8 @@ static int yy_get_next_buffer()
/* Read in more data. */
YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
yy_n_chars, num_to_read );
yy_current_buffer->yy_n_chars = yy_n_chars;
}
if ( yy_n_chars == 0 )
@ -1712,6 +1721,7 @@ register char *yy_bp;
yy_cp += (int) (dest - source);
yy_bp += (int) (dest - source);
yy_current_buffer->yy_n_chars =
yy_n_chars = yy_current_buffer->yy_buf_size;
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
@ -1750,19 +1760,31 @@ static int input()
else
{ /* need more input */
yytext_ptr = yy_c_buf_p;
int offset = yy_c_buf_p - yytext_ptr;
++yy_c_buf_p;
switch ( yy_get_next_buffer() )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
yyrestart( yyin );
/* fall through */
case EOB_ACT_END_OF_FILE:
{
if ( yywrap() )
{
yy_c_buf_p =
yytext_ptr + YY_MORE_ADJ;
return EOF;
}
if ( ! yy_did_buffer_switch_on_eof )
YY_NEW_FILE;
@ -1774,17 +1796,8 @@ static int input()
}
case EOB_ACT_CONTINUE_SCAN:
yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
yy_c_buf_p = yytext_ptr + offset;
break;
case EOB_ACT_LAST_MATCH:
#ifdef __cplusplus
YY_FATAL_ERROR(
"unexpected last match in yyinput()" );
#else
YY_FATAL_ERROR(
"unexpected last match in input()" );
#endif
}
}
}
@ -1907,11 +1920,6 @@ YY_BUFFER_STATE b;
}
#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#endif
#ifdef YY_USE_PROTOS
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
@ -1948,6 +1956,9 @@ YY_BUFFER_STATE b;
#endif
{
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
@ -2007,17 +2018,17 @@ yy_size_t size;
#ifndef YY_NO_SCAN_STRING
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_string( yyconst char *str )
YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )
#else
YY_BUFFER_STATE yy_scan_string( str )
yyconst char *str;
YY_BUFFER_STATE yy_scan_string( yy_str )
yyconst char *yy_str;
#endif
{
int len;
for ( len = 0; str[len]; ++len )
for ( len = 0; yy_str[len]; ++len )
;
return yy_scan_bytes( str, len );
return yy_scan_bytes( yy_str, len );
}
#endif
@ -2138,7 +2149,7 @@ char msg[];
{ \
/* Undo effects of setting up yytext. */ \
yytext[yyleng] = yy_hold_char; \
yy_c_buf_p = yytext + n - YY_MORE_ADJ; \
yy_c_buf_p = yytext + n; \
yy_hold_char = *yy_c_buf_p; \
*yy_c_buf_p = '\0'; \
yyleng = n; \
@ -2164,6 +2175,22 @@ int n;
}
#endif
#ifdef YY_NEED_STRLEN
#ifdef YY_USE_PROTOS
static int yy_flex_strlen( yyconst char *s )
#else
static int yy_flex_strlen( s )
yyconst char *s;
#endif
{
register int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
#ifdef YY_USE_PROTOS
static void *yy_flex_alloc( yy_size_t size )

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,6 @@
#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H
# define INTEGER 257
# define REAL 258
# define STRING 259
@ -34,3 +37,5 @@
extern YYSTYPE dcyylval;
#endif /* not BISON_Y_TAB_H */

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +1,19 @@
#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H
#ifndef YYLTYPE
typedef
struct yyltype
typedef struct yyltype
{
int timestamp;
int first_line;
int first_column;
int last_line;
int last_column;
char *text;
}
yyltype;
} yyltype;
# define YYLTYPE yyltype
# define YYLTYPE_IS_TRIVIAL 1
#endif
# define REAL 257
@ -113,3 +114,5 @@ typedef
# define START_CONST_EXPR 352
# define START_TYPE 353
#endif /* not BISON_Y_TAB_H */

View File

@ -1124,7 +1124,7 @@ YY_MALLOC_DECL
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register char *yy_cp = NULL, *yy_bp = NULL;
register int yy_act;
#line 291 "lexer.lxx"
@ -2544,11 +2544,6 @@ YY_BUFFER_STATE b;
}
#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#endif
#ifdef YY_USE_PROTOS
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,6 @@
#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H
# define NUMBER 257
# define STRING 258
# define BEZIERCURVE 259
@ -81,3 +84,5 @@
extern YYSTYPE eggyylval;
#endif /* not BISON_Y_TAB_H */

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,50 @@
#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H
# define NUMBER 257
# define NUMBER_FEET 258
# define NUMBER_INCHES 259
# define IDENTIFIER 260
# define STRING 261
# define KW_DEFINE 262
# define KW_LENS 263
# define KW_INPUT_IMAGE 264
# define KW_OUTPUT_IMAGE 265
# define KW_EYEPOINT 266
# define KW_PERSPECTIVE 267
# define KW_FISHEYE 268
# define KW_CYLINDRICAL 269
# define KW_PSPHERE 270
# define KW_FOCAL_LENGTH 271
# define KW_FOV 272
# define KW_SINGULARITY_TOLERANCE 273
# define KW_RESOLUTION 274
# define KW_FILENAME 275
# define KW_FADE 276
# define KW_POINT 277
# define KW_SHOW_POINTS 278
# define KW_IMAGE_SIZE 279
# define KW_FILM_SIZE 280
# define KW_FILM_OFFSET 281
# define KW_GRID 282
# define KW_UNTEXTURED_COLOR 283
# define KW_HPR 284
# define KW_POS 285
# define KW_RADIUS 286
# define KW_ANGLE 287
# define KW_HEIGHT 288
# define KW_LAYERS 289
# define KW_STITCH 290
# define KW_SCREEN 291
# define KW_POINTS 292
# define KW_USING 293
# define KW_IN 294
# define KW_MM 295
# define KW_FT 296
# define KW_CM 297
# define KW_P 298
extern YYSTYPE stitchyylval;
#endif /* not BISON_Y_TAB_H */