Home
last modified time | relevance | path

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

/dports/net-mgmt/ettercap/ettercap-0.8.3.1/utils/etterfilter/
H A Def_grammar.y90 %type <fop> math_expr
172 | offset TOKEN_OP_ASSIGN math_expr {
329 | offset TOKEN_OP_ADD math_expr {
341 | offset TOKEN_OP_SUB math_expr {
351 math_expr:
356 | math_expr TOKEN_OP_ADD math_expr {
360 | math_expr TOKEN_OP_SUB math_expr {
364 | math_expr TOKEN_OP_MUL math_expr {
368 | math_expr TOKEN_OP_DIV math_expr {
372 | TOKEN_OP_SUB math_expr %prec TOKEN_UMINUS {
/dports/textproc/miller/miller-5.10.2/c/parsing/
H A Dex0_parse.y57 md_body ::= math_expr(B). { in math_expr() function
61 math_expr(C) ::= MD_TOKEN_NUMBER(A) MD_TOKEN_PLUS(O) MD_TOKEN_NUMBER(B) . { in math_expr() function
65 math_expr(C) ::= MD_TOKEN_NUMBER(A) MD_TOKEN_MINUS(O) MD_TOKEN_NUMBER(B) . { in math_expr() function
69 math_expr(C) ::= MD_TOKEN_NUMBER(A) MD_TOKEN_TIMES(O) MD_TOKEN_NUMBER(B) . { in math_expr() function
73 math_expr(C) ::= MD_TOKEN_NUMBER(A) MD_TOKEN_DIVIDE(O) MD_TOKEN_NUMBER(B) . { in math_expr() function
/dports/games/vultures-eye/vulture-2.3.67/unnethack/util/
H A Dlev_comp.y653 integer_list : math_expr
657 | integer_list ',' math_expr
2163 | '(' math_expr ')' { }
2169 | math_expr '+' math_expr { add_opvars(splev, "o", SPO_MATH_ADD); }
2170 | math_expr '-' math_expr { add_opvars(splev, "o", SPO_MATH_SUB); }
2171 | math_expr '*' math_expr { add_opvars(splev, "o", SPO_MATH_MUL); }
2172 | math_expr '/' math_expr { add_opvars(splev, "o", SPO_MATH_DIV); }
2173 | math_expr '%' math_expr { add_opvars(splev, "o", SPO_MATH_MOD); }
2174 | '(' math_expr ')' { }
2226 | ellipse_ID '(' coord_or_var ',' math_expr ',' math_expr ')'
[all …]
/dports/math/py-matplotlib/matplotlib-3.4.3/doc/users/prev_whats_new/
H A Dwhats_new_3.4.0.rst716 math_expr = r"$ x \overset{f}{\rightarrow} y \underset{f}{\leftarrow} z $"
717 plt.text(0.4, 0.5, math_expr, usetex=False)
/dports/math/giacxcas/giac-1.6.0/src/
H A Dkdisplay.cc11311 void *math_expr = nullptr; in nspire_fr() local
11314 …int error = TI_MS_evaluateExpr_ACBER(NULL, NULL, (const uint16_t*)input_w, &math_expr, &str_offset… in nspire_fr()
11319 error = TI_MS_MathExprToStr(math_expr, NULL, (uint16_t**)&output_w); in nspire_fr()
11320 syscall<e_free, void>(math_expr); // Should be TI_MS_DeleteMathExpr in nspire_fr()