Searched refs:CX_SET (Results 1 - 5 of 5) sorted by relevance
/ast/src/lib/libdss/ |
H A D | cx.h | 123 #define CX_SET ((23<<CX_ATTR)|CX_ASSIGN) macro 128 #define CX_CAST (CX_SET|CX_UNARY) 129 #define CX_EQ (CX_SET|CX_X2)
|
H A D | cxcomp.c | 264 if ((code & CX_ASSIGN) && code != CX_SET) 645 else if (op == CX_GET || op == CX_SET || op == CX_REF || op == CX_CALL || !cxisstring(type1)) 1032 if (!code(cx, cc, expr, CX_SET, 0, cx->state->type_void, v->type, v, 0, NiL)) 1061 p = cx->table->precedence[CX_SET]; 1062 if (o != CX_SET) 1122 if (precedence >= p && o != CX_SET) 1145 if (o != CX_SET && ((o & CX_UNARY) ? !code(cx, cc, expr, o, 0, cc->type, cx->state->type_void, NiL, 0, NiL) : !code(cx, cc, expr, o, -1, t, cc->type, NiL, 0, h))) 1161 if (!code(cx, cc, expr, CX_SET, 0, cx->state->type_void, cc->type, v, 0, NiL)) 2014 if (pc->op == CX_GET || pc->op == CX_SET || pc->op == CX_REF || pc->op == CX_CALL)
|
H A D | cxeval.c | 161 if (cx->returnf && pc->op == CX_END && (pc-1)->op != CX_SET)
|
H A D | cxopen.c | 1397 else if (callout->op.code == CX_GET || callout->op.code == CX_SET || callout->op.code == CX_DEL || callout->op.code == CX_RET) 1694 else if (recode->op.code == CX_GET || recode->op.code == CX_SET || recode->op.code == CX_DEL || recode->op.code == CX_RET) 2298 table.opcode['='] = CX_SET; 2342 table.precedence[CX_SET] = 3;
|
/ast/src/cmd/dsslib/validate/ |
H A D | validate.c | 166 if (!(state->setf = cxcallout(cx, CX_SET, cx->state->type_void, cx->state->type_void, cx->disc))) 169 (*cx->disc->errorf)(NiL, cx->disc, 3, "reair requires CX_SET callout");
|
Completed in 89 milliseconds