/src/sys/ddb/ |
db_expr.c | 147 db_expr_t lhs, rhs; local in function:db_mult_expr 150 if (!db_unary(&lhs)) 160 lhs *= rhs; 167 lhs /= rhs; 169 lhs %= rhs; 171 lhs = ((lhs+rhs-1)/rhs)*rhs; 176 *valuep = lhs; 183 db_expr_t lhs, rhs; local in function:db_add_expr 186 if (!db_mult_expr(&lhs)) 209 db_expr_t lhs, rhs; local in function:db_shift_expr [all...] |
/src/lib/libc/net/ |
hesiod.c | 88 char *lhs; /* normally ".ns" */ member in struct:hesiod_p 155 free(ctx->lhs); 175 if (ctx->lhs) 176 free(ctx->lhs); 225 if (ctx->lhs) 226 len += strlen(ctx->lhs) + ((ctx->lhs[0] != '.') ? 1 : 0); 237 /* Only append lhs if it isn't empty. */ 238 if (ctx->lhs && ctx->lhs[0] != '\0' ) [all...] |
/src/usr.bin/config/ |
files.c | 565 int lhs, rhs; local in function:expr_eval 576 lhs = expr_eval(expr->cx_and.left, fn, ctx); 578 return (lhs & rhs); 581 lhs = expr_eval(expr->cx_or.left, fn, ctx); 583 return (lhs | rhs);
|
/src/usr.bin/make/ |
cond.c | 509 EvalCompareNum(double lhs, ComparisonOp op, double rhs) 511 DEBUG3(COND, "Comparing %f %s %f\n", lhs, opname[op], rhs); 515 return lhs < rhs; 517 return lhs <= rhs; 519 return lhs > rhs; 521 return lhs >= rhs; 523 return lhs == rhs; 525 return lhs != rhs; 530 EvalCompareStr(const char *lhs, ComparisonOp op, const char *rhs) 536 opname[op], lhs, rhs) 590 FStr lhs, rhs; local in function:CondParser_Comparison [all...] |
var.c | 1523 Substring lhs; member in struct:ModifyWord_SubstArgs 1540 lhsLen = Substring_Length(args->lhs); 1543 memcmp(word.start, args->lhs.start, lhsLen) != 0) 1559 if (memcmp(word.end - lhsLen, args->lhs.start, lhsLen) != 0) 1569 if (Substring_IsEmpty(args->lhs)) 1573 while ((match = Substring_Find(word, args->lhs)) != NULL) { 2214 * escaped and replace unescaped ampersands with subst->lhs. 2228 LazyBuf_AddSubstring(part, subst->lhs); 2970 args.lhs = LazyBuf_Get(&lhsBuf); 3699 /* Test whether the modifier has the form '<lhs>=<rhs>'. * 3727 Substring lhs; local in function:ApplyModifier_SysV [all...] |