HomeSort by: relevance | last modified time | path
    Searched defs:Expression (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
dtparser.y 171 UINT64 DtParserResult; /* Expression return value */
196 %type <value> Expression
238 : Expression OP_EXP_NEW_LINE { DtParserResult=$1; return 0; } /* End of line (newline) */
239 | Expression OP_EXP_EOF { DtParserResult=$1; return 0; } /* End of string (0) */
242 Expression
246 : OP_EXP_LOGICAL_NOT Expression { $$ = DtDoOperator ($2, OP_EXP_LOGICAL_NOT, $2);}
247 | OP_EXP_ONES_COMPLIMENT Expression { $$ = DtDoOperator ($2, OP_EXP_ONES_COMPLIMENT, $2);}
251 | Expression OP_EXP_MULTIPLY Expression { $$ = DtDoOperator ($1, OP_EXP_MULTIPLY, $3);}
252 | Expression OP_EXP_DIVIDE Expression { $$ = DtDoOperator ($1, OP_EXP_DIVIDE, $3);
    [all...]
prparser.y 170 UINT64 PrParserResult; /* Expression return value */
196 %type <value> Expression
246 : Expression EXPOP_NEW_LINE { PrParserResult=$1; return 0; } /* End of line (newline) */
247 | Expression EXPOP_EOF { PrParserResult=$1; return 0; } /* End of string (0) */
250 Expression
254 : EXPOP_LOGICAL_NOT Expression { $$ = DtDoOperator ($2, EXPOP_LOGICAL_NOT, $2);}
255 | EXPOP_ONES_COMPLIMENT Expression { $$ = DtDoOperator ($2, EXPOP_ONES_COMPLIMENT, $2);}
259 | Expression EXPOP_MULTIPLY Expression { $$ = DtDoOperator ($1, EXPOP_MULTIPLY, $3);}
260 | Expression EXPOP_DIVIDE Expression { $$ = DtDoOperator ($1, EXPOP_DIVIDE, $3);
    [all...]
  /src/usr.bin/xlint/lint1/
README.md 106 When lint parses an expression,
121 As an example, the expression `strcmp(names[i], "name")` has this internal
170 ## Expression scope
173 end of analyzing the expression.
190 | op | `op_t` | an operator used in an expression |
212 | build_binary | tree.c | Creates an expression for a unary or binary operator |
214 | expr | tree.c | Checks a full expression |

Completed in 14 milliseconds