Searched refs:UNSIGNED (Results 1 - 11 of 11) sorted by relevance
/ast/src/lib/libexpr/ |
H A D | extype.c | 46 case UNSIGNED:
|
H A D | exzero.c | 45 case UNSIGNED:
|
H A D | exdata.c | 64 EXID("unsigned",DECLARE, UNSIGNED, UNSIGNED,0),
|
H A D | Oexparse.h | 36 #define UNSIGNED 261 macro
|
H A D | exparse.y | 54 %token UNSIGNED 141 %type <integer> INTEGER UNSIGNED array 575 rel = ($1->type == STRING) ? STRING : (($1->type == UNSIGNED) ? UNSIGNED : $3->type); 718 $$ = exnewnode(expr.program, $1, 1, $2->type == UNSIGNED ? INTEGER : $2->type, $2, NiL); 908 | UNSIGNED 910 $$ = exnewnode(expr.program, CONSTANT, 0, UNSIGNED, NiL, NiL);
|
H A D | exeval.c | 168 case UNSIGNED: 383 if (node->type != INTEGER && node->type != UNSIGNED) 590 case UNSIGNED: 679 case UNSIGNED: 875 case UNSIGNED: 1094 case UNSIGNED: 1119 if (expr->type == UNSIGNED) 1130 if (expr->data.operand.left->type == UNSIGNED)
|
H A D | exgram.h | 278 v.integer = (type == UNSIGNED) ? (Sfulong_t)v.floating : v.floating; 285 v.floating = (from == UNSIGNED) ? (Sfulong_t)v.integer : v.integer; 495 t = UNSIGNED; 559 case UNSIGNED:
|
H A D | expr.h | 86 #define INTEGRAL(t) ((t)>=CHAR&&(t)<=UNSIGNED) 197 Sflong_t(*integer)(char**); /* INTEGER|UNSIGNED return value*/
|
H A D | extoken.c | 133 case UNSIGNED: 134 s = " UNSIGNED "; 575 q = UNSIGNED;
|
H A D | Oexparse.c | 77 #define UNSIGNED 261 macro 623 "CHAR","INT","INTEGER","UNSIGNED","FLOATING","STRING","VOID","STATIC","ADDRESS", 718 "constant : UNSIGNED", 1427 rel = (exvsp[-2].expr->type == STRING) ? STRING : ((exvsp[-2].expr->type == UNSIGNED) ? UNSIGNED : exvsp[0].expr->type); 1618 exval.expr = exnewnode(expr.program, exvsp[-1].op, 1, exvsp[0].expr->type == UNSIGNED ? INTEGER : exvsp[0].expr->type, exvsp[0].expr, NiL); 1847 exval.expr = exnewnode(expr.program, CONSTANT, 0, UNSIGNED, NiL, NiL);
|
H A D | excc.c | 214 case UNSIGNED: 323 case UNSIGNED:
|
Completed in 23 milliseconds