| /src/sys/ddb/ |
| db_expr.c | 147 db_expr_t lhs, rhs; local 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 186 if (!db_mult_expr(&lhs)) 209 db_expr_t lhs, rhs; local [all...] |
| /src/lib/libc/net/ |
| hesiod.c | 88 char *lhs; /* normally ".ns" */ local 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/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 [all...] |
| var.c | 1527 Substring lhs; member in struct:ModifyWord_SubstArgs 1544 lhsLen = Substring_Length(args->lhs); 1547 memcmp(word.start, args->lhs.start, lhsLen) != 0) 1563 if (memcmp(word.end - lhsLen, args->lhs.start, lhsLen) != 0) 1573 if (Substring_IsEmpty(args->lhs)) 1577 while ((match = Substring_Find(word, args->lhs)) != NULL) { 2218 * escaped and replace each unescaped '&' with subst->lhs. 2232 LazyBuf_AddSubstring(part, subst->lhs); 2974 args.lhs = LazyBuf_Get(&lhsBuf); 3710 /* Test whether the modifier has the form '<lhs>=<rhs>'. * 3738 Substring lhs; local [all...] |
| /src/sbin/cgdconfig/ |
| utils.c | 183 string_assign(string_t **lhs, string_t *rhs) 186 string_free(*lhs); 187 *lhs = rhs; 282 bits_assign(bits_t **lhs, bits_t *rhs) 285 bits_free(*lhs); 286 *lhs = rhs;
|
| /src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
| UnitTests.cs | 30 public static bool byteArrEqual( byte[] lhs, byte[] rhs )
32 if (lhs.Length != rhs.Length)
34 for (int i = lhs.Length-1; i >= 0; --i)
35 if (lhs[i] != rhs[i])
|
| /src/usr.bin/config/ |
| files.c | 565 int lhs, rhs; local 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/unit-tests/ |
| varmisc.exp | 12 :? only lhs when value true
|
| varmisc.mk | 38 @echo :? only lhs when value true
|
| varmod-edge.mk | 173 # The call to "pattern.lhs = ParseModifierPart" fails.
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_common.h | 529 bool operator==(const InternalMmapVectorNoCtor<T> &lhs, 531 if (lhs.size() != rhs.size()) return false; 532 return internal_memcmp(lhs.data(), rhs.data(), lhs.size() * sizeof(T)) == 0; 536 bool operator!=(const InternalMmapVectorNoCtor<T> &lhs, 538 return !(lhs == rhs);
|