Symbol: rhs
crypto/openssh/libcrux_mlkem768_sha3.h
6712
libcrux_ml_kem_vector_portable_vector_type_PortableVector *rhs) {
crypto/openssh/libcrux_mlkem768_sha3.h
6717
lhs.elements[uu____0] = lhs.elements[uu____0] + rhs->elements[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
6729
libcrux_ml_kem_vector_portable_vector_type_PortableVector *rhs) {
crypto/openssh/libcrux_mlkem768_sha3.h
6730
return libcrux_ml_kem_vector_portable_arithmetic_add(lhs, rhs);
crypto/openssh/libcrux_mlkem768_sha3.h
6736
libcrux_ml_kem_vector_portable_vector_type_PortableVector *rhs) {
crypto/openssh/libcrux_mlkem768_sha3.h
6741
lhs.elements[uu____0] = lhs.elements[uu____0] - rhs->elements[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
6753
libcrux_ml_kem_vector_portable_vector_type_PortableVector *rhs) {
crypto/openssh/libcrux_mlkem768_sha3.h
6754
return libcrux_ml_kem_vector_portable_arithmetic_sub(lhs, rhs);
crypto/openssh/libcrux_mlkem768_sha3.h
7317
libcrux_ml_kem_vector_portable_vector_type_PortableVector *rhs,
crypto/openssh/libcrux_mlkem768_sha3.h
7322
lhs, rhs, zeta0, (size_t)0U, (size_t)1U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7324
lhs, rhs, -zeta0, (size_t)2U, (size_t)3U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7326
lhs, rhs, zeta1, (size_t)4U, (size_t)5U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7328
lhs, rhs, -zeta1, (size_t)6U, (size_t)7U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7330
lhs, rhs, zeta2, (size_t)8U, (size_t)9U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7332
lhs, rhs, -zeta2, (size_t)10U, (size_t)11U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7334
lhs, rhs, zeta3, (size_t)12U, (size_t)13U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7336
lhs, rhs, -zeta3, (size_t)14U, (size_t)15U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7347
libcrux_ml_kem_vector_portable_vector_type_PortableVector *rhs,
crypto/openssh/libcrux_mlkem768_sha3.h
7349
return libcrux_ml_kem_vector_portable_ntt_ntt_multiply(lhs, rhs, zeta0, zeta1,
crypto/openssh/libcrux_mlkem768_sha3.h
805
Eurydice_slice lhs, Eurydice_slice rhs) {
crypto/openssh/libcrux_mlkem768_sha3.h
811
(uint32_t)Eurydice_slice_index(rhs, i0, uint8_t, uint8_t *));
crypto/openssh/libcrux_mlkem768_sha3.h
818
Eurydice_slice lhs, Eurydice_slice rhs) {
crypto/openssh/libcrux_mlkem768_sha3.h
819
return libcrux_ml_kem_constant_time_ops_compare(lhs, rhs);
crypto/openssh/libcrux_mlkem768_sha3.h
827
Eurydice_slice lhs, Eurydice_slice rhs, uint8_t selector,
crypto/openssh/libcrux_mlkem768_sha3.h
837
((uint32_t)Eurydice_slice_index(rhs, i0, uint8_t, uint8_t *) &
crypto/openssh/libcrux_mlkem768_sha3.h
845
Eurydice_slice lhs, Eurydice_slice rhs, uint8_t selector,
crypto/openssh/libcrux_mlkem768_sha3.h
847
libcrux_ml_kem_constant_time_ops_select_ct(lhs, rhs, selector, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
8863
libcrux_ml_kem_polynomial_PolynomialRingElement_f0 *rhs) {
crypto/openssh/libcrux_mlkem768_sha3.h
8871
&self->coefficients[i0], &rhs->coefficients[i0],
crypto/openssh/libcrux_mlkem768_sha3.h
8904
libcrux_ml_kem_polynomial_PolynomialRingElement_f0 *rhs) {
crypto/openssh/libcrux_mlkem768_sha3.h
8915
&rhs->coefficients[i0]);
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
78
void ossl_ml_dsa_poly_ntt_mult(const POLY *lhs, const POLY *rhs, POLY *out);
crypto/openssl/crypto/ml_dsa/ml_dsa_ntt.c
111
void ossl_ml_dsa_poly_ntt_mult(const POLY *lhs, const POLY *rhs, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_ntt.c
116
out->coeff[i] = reduce_montgomery((uint64_t)lhs->coeff[i] * (uint64_t)rhs->coeff[i]);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
34
poly_add(const POLY *lhs, const POLY *rhs, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
39
out->coeff[i] = reduce_once(lhs->coeff[i] + rhs->coeff[i]);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
52
poly_sub(const POLY *lhs, const POLY *rhs, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
57
out->coeff[i] = mod_sub(lhs->coeff[i], rhs->coeff[i]);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
123
vector_mult_scalar(const VECTOR *lhs, const POLY *rhs, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
128
ossl_ml_dsa_poly_ntt_mult(lhs->poly + i, rhs, out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
83
vector_add(const VECTOR *lhs, const VECTOR *rhs, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
88
poly_add(lhs->poly + i, rhs->poly + i, out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
93
vector_sub(const VECTOR *lhs, const VECTOR *rhs, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
98
poly_sub(lhs->poly + i, rhs->poly + i, out->poly + i);
crypto/openssl/crypto/ml_kem/ml_kem.c
1198
static void vector_add(scalar *lhs, const scalar *rhs, int rank)
crypto/openssl/crypto/ml_kem/ml_kem.c
1201
scalar_add(lhs++, rhs++);
crypto/openssl/crypto/ml_kem/ml_kem.c
1259
static void inner_product(scalar *out, const scalar *lhs, const scalar *rhs,
crypto/openssl/crypto/ml_kem/ml_kem.c
1262
scalar_mult(out, lhs, rhs);
crypto/openssl/crypto/ml_kem/ml_kem.c
1264
scalar_mult_add(out, ++lhs, ++rhs);
crypto/openssl/crypto/ml_kem/ml_kem.c
893
static void scalar_add(scalar *lhs, const scalar *rhs)
crypto/openssl/crypto/ml_kem/ml_kem.c
898
lhs->c[i] = reduce_once(lhs->c[i] + rhs->c[i]);
crypto/openssl/crypto/ml_kem/ml_kem.c
902
static void scalar_sub(scalar *lhs, const scalar *rhs)
crypto/openssl/crypto/ml_kem/ml_kem.c
907
lhs->c[i] = reduce_once(lhs->c[i] - rhs->c[i] + kPrime);
crypto/openssl/crypto/ml_kem/ml_kem.c
922
const scalar *rhs)
crypto/openssl/crypto/ml_kem/ml_kem.c
925
const uint16_t *lc = lhs->c, *rc = rhs->c;
crypto/openssl/crypto/ml_kem/ml_kem.c
940
const scalar *rhs)
crypto/openssl/crypto/ml_kem/ml_kem.c
943
const uint16_t *lc = lhs->c, *rc = rhs->c;
lib/clang/liblldb/LLDBWrapLua.cpp
3014
SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
lib/clang/liblldb/LLDBWrapLua.cpp
3017
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
lib/clang/liblldb/LLDBWrapLua.cpp
3018
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
lib/libc/net/hesiod.c
100
if (ctx->rhs) {
lib/libc/net/hesiod.c
101
*ctx->rhs = '.';
lib/libc/net/hesiod.c
102
strcpy(ctx->rhs + 1,
lib/libc/net/hesiod.c
115
if (ctx->rhs)
lib/libc/net/hesiod.c
116
free(ctx->rhs);
lib/libc/net/hesiod.c
131
free(ctx->rhs);
lib/libc/net/hesiod.c
147
const char *rhs;
lib/libc/net/hesiod.c
163
rhs = name + (p - bindname);
lib/libc/net/hesiod.c
167
rhs = *rhs_list;
lib/libc/net/hesiod.c
174
rhs = ctx->rhs;
lib/libc/net/hesiod.c
180
len += strlen(rhs) + ((rhs[0] != '.') ? 1 : 0);
lib/libc/net/hesiod.c
196
if (rhs[0] != '.')
lib/libc/net/hesiod.c
198
strcat(bindname, rhs);
lib/libc/net/hesiod.c
270
ctx->rhs = strdup(DEF_RHS);
lib/libc/net/hesiod.c
271
if (ctx->lhs && ctx->rhs)
lib/libc/net/hesiod.c
279
ctx->rhs = NULL;
lib/libc/net/hesiod.c
301
? &ctx->lhs : &ctx->rhs;
lib/libc/net/hesiod.c
332
if (!ctx->rhs || ctx->classes[0] == 0 ||
lib/libc/net/hesiod.c
62
char *rhs; /* AKA the default hesiod domain */
lib/libc/net/hesiod.c
97
if (ctx->rhs)
lib/libc/net/hesiod.c
98
free(ctx->rhs);
lib/libc/net/hesiod.c
99
ctx->rhs = malloc(strlen(p) + 2);
lib/libdevdctl/guid.h
115
Guid::operator==(const Guid& rhs) const
lib/libdevdctl/guid.h
117
return (m_GUID == rhs.m_GUID);
lib/libdevdctl/guid.h
121
Guid::operator!=(const Guid& rhs) const
lib/libdevdctl/guid.h
123
return (m_GUID != rhs.m_GUID);
lib/libdevdctl/guid.h
75
bool operator==(const Guid& rhs) const;
lib/libdevdctl/guid.h
76
bool operator!=(const Guid& rhs) const;
sbin/devd/devd.cc
755
config::chop_var(char *&buffer, char *&lhs, char *&rhs) const
sbin/devd/devd.cc
769
rhs = walker;
sbin/devd/devd.cc
779
rhs[-2] = '\0';
sbin/devd/devd.cc
782
rhs = walker;
sbin/devd/devd.cc
787
rhs[-1] = '\0';
sbin/devd/devd.cc
800
char *rhs;
sbin/devd/devd.cc
803
if (!chop_var(buffer, lhs, rhs))
sbin/devd/devd.cc
805
set_variable(lhs, rhs);
sbin/devd/devd.hh
175
bool chop_var(char *&buffer, char *&lhs, char *&rhs) const;
sbin/fsck_ffs/fsutil.c
985
#define CHK(lhs, op, rhs, fmt) \
sbin/fsck_ffs/fsutil.c
986
if (lhs op rhs) { \
sbin/fsck_ffs/fsutil.c
990
#lhs, (intmax_t)lhs, #op, #rhs, (intmax_t)rhs); \
sys/cam/scsi/scsi_all.c
9371
scsi_devid_match(uint8_t *lhs, size_t lhs_len, uint8_t *rhs, size_t rhs_len)
sys/cam/scsi/scsi_all.c
9380
rhs_end = rhs + rhs_len;
sys/cam/scsi/scsi_all.c
9398
rhs_id = (struct scsi_vpd_id_descriptor *)rhs;
sys/cam/scsi/scsi_all.h
4411
int scsi_devid_match(uint8_t *rhs, size_t rhs_len,
sys/compat/linuxkpi/common/include/linux/ktime.h
119
ktime_sub(ktime_t lhs, ktime_t rhs)
sys/compat/linuxkpi/common/include/linux/ktime.h
121
return (lhs - rhs);
sys/compat/linuxkpi/common/include/linux/ktime.h
141
ktime_add(ktime_t lhs, ktime_t rhs)
sys/compat/linuxkpi/common/include/linux/ktime.h
143
return (lhs + rhs);
sys/compat/linuxkpi/common/include/linux/time.h
79
timespec_sub(struct timespec lhs, struct timespec rhs)
sys/compat/linuxkpi/common/include/linux/time.h
83
timespecsub(&lhs, &rhs, &ts);
sys/ddb/db_expr.c
160
db_expr_t lhs, rhs;
sys/ddb/db_expr.c
169
if (!db_term(&rhs)) {
sys/ddb/db_expr.c
178
lhs *= rhs;
sys/ddb/db_expr.c
181
lhs &= rhs;
sys/ddb/db_expr.c
184
if (rhs == 0) {
sys/ddb/db_expr.c
189
lhs /= rhs;
sys/ddb/db_expr.c
191
lhs %= rhs;
sys/ddb/db_expr.c
193
lhs = roundup(lhs, rhs);
sys/ddb/db_expr.c
205
db_expr_t lhs, rhs;
sys/ddb/db_expr.c
213
if (!db_mult_expr(&rhs)) {
sys/ddb/db_expr.c
221
lhs += rhs;
sys/ddb/db_expr.c
224
lhs -= rhs;
sys/ddb/db_expr.c
227
lhs |= rhs;
sys/ddb/db_expr.c
242
db_expr_t lhs, rhs;
sys/ddb/db_expr.c
249
if (!db_add_expr(&rhs)) {
sys/ddb/db_expr.c
255
if (rhs < 0) {
sys/ddb/db_expr.c
256
db_printf("Negative shift amount %jd\n", (intmax_t)rhs);
sys/ddb/db_expr.c
261
lhs <<= rhs;
sys/ddb/db_expr.c
264
lhs = (db_addr_t)lhs >> rhs;
sys/ddb/db_expr.c
277
db_expr_t lhs, rhs;
sys/ddb/db_expr.c
286
if (!db_shift_expr(&rhs)) {
sys/ddb/db_expr.c
296
lhs = (lhs == rhs);
sys/ddb/db_expr.c
299
lhs = (lhs != rhs);
sys/ddb/db_expr.c
302
lhs = (lhs > rhs);
sys/ddb/db_expr.c
305
lhs = (lhs >= rhs);
sys/ddb/db_expr.c
308
lhs = (lhs < rhs);
sys/ddb/db_expr.c
311
lhs = (lhs <= rhs);
sys/ddb/db_expr.c
327
db_expr_t lhs, rhs;
sys/ddb/db_expr.c
335
if (!db_logical_relation_expr(&rhs)) {
sys/ddb/db_expr.c
340
lhs = (lhs && rhs);
sys/ddb/db_expr.c
352
db_expr_t lhs, rhs;
sys/ddb/db_expr.c
360
if (!db_logical_and_expr(&rhs)) {
sys/ddb/db_expr.c
365
lhs = (lhs || rhs);
sys/dev/bhnd/bhnd.h
485
const struct bhnd_core_info *rhs);
sys/dev/bhnd/bhnd_subr.c
521
compare_ascending_probe_order(const void *lhs, const void *rhs)
sys/dev/bhnd/bhnd_subr.c
527
rdev = (*(const device_t *) rhs);
sys/dev/bhnd/bhnd_subr.c
545
compare_descending_probe_order(const void *lhs, const void *rhs)
sys/dev/bhnd/bhnd_subr.c
547
return (compare_ascending_probe_order(rhs, lhs));
sys/dev/bhnd/bhnd_subr.c
63
static int compare_ascending_probe_order(const void *lhs, const void *rhs);
sys/dev/bhnd/bhnd_subr.c
65
const void *rhs);
sys/dev/bhnd/bhnd_subr.c
706
const struct bhnd_core_info *rhs)
sys/dev/bhnd/bhnd_subr.c
711
md = bhnd_core_get_match_desc(rhs);
sys/dev/bhnd/nvram/bhnd_nvram_data_sprom_subr.c
188
bhnd_sprom_opcode_sort_idx(const void *lhs, const void *rhs)
sys/dev/bhnd/nvram/bhnd_nvram_data_sprom_subr.c
193
r = rhs;
sys/dev/bhnd/nvram/bhnd_nvram_data_sprom_subr.c
207
bhnd_nvram_opcode_idx_vid_compare(const void *key, const void *rhs)
sys/dev/bhnd/nvram/bhnd_nvram_data_sprom_subr.c
213
entry = rhs;
sys/dev/bhnd/nvram/bhnd_nvram_data_sprom_subr.c
46
static int bhnd_sprom_opcode_sort_idx(const void *lhs, const void *rhs);
sys/dev/bhnd/nvram/bhnd_nvram_data_sprom_subr.c
48
const void *rhs);
sys/dev/bhnd/nvram/bhnd_nvram_store_subr.c
197
bhnd_nvstore_idx_cmp(const void *lhs, const void *rhs, void *ctx)
sys/dev/bhnd/nvram/bhnd_nvram_store_subr.c
207
r_cookiep = *(void * const *)rhs;
sys/dev/bhnd/nvram/bhnd_nvram_store_subr.c
226
if (order != 0 || lhs == rhs)
sys/dev/bhnd/nvram/bhnd_nvram_store_subr.c
59
static int bhnd_nvstore_idx_cmp(const void *lhs, const void *rhs, void *ctx);
sys/dev/bhnd/nvram/bhnd_nvram_subr.c
553
bhnd_nvram_find_vardefn_compare(const void *key, const void *rhs)
sys/dev/bhnd/nvram/bhnd_nvram_subr.c
555
const struct bhnd_nvram_vardefn *r = rhs;
sys/ufs/ffs/ffs_subr.c
491
#define FCHK(lhs, op, rhs, fmt) \
sys/ufs/ffs/ffs_subr.c
492
if (lhs op rhs) { \
sys/ufs/ffs/ffs_subr.c
495
#lhs, (intmax_t)lhs, #op, #rhs, (intmax_t)rhs); \
sys/ufs/ffs/ffs_subr.c
501
#define WCHK(lhs, op, rhs, fmt) \
sys/ufs/ffs/ffs_subr.c
502
if (lhs op rhs) { \
sys/ufs/ffs/ffs_subr.c
505
#lhs, (intmax_t)lhs, #op, #rhs, (intmax_t)rhs, wmsg);\
sys/ufs/ffs/ffs_subr.c
509
lhs = rhs; \
usr.bin/dtc/input_buffer.cc
589
expression_ptr rhs;
usr.bin/dtc/input_buffer.cc
598
new_left->rhs = std::move(lhs);
usr.bin/dtc/input_buffer.cc
619
result r = (*rhs)();
usr.bin/dtc/input_buffer.cc
645
rhs->dump();
usr.bin/dtc/input_buffer.cc
667
expression_ptr rhs;
usr.bin/dtc/input_buffer.cc
672
result r = (*rhs)();
usr.bin/dtc/input_buffer.cc
693
rhs->dump();
usr.bin/dtc/input_buffer.cc
708
constexpr T operator()(const T &lhs, const T &rhs) const
usr.bin/dtc/input_buffer.cc
710
return lhs << rhs;
usr.bin/dtc/input_buffer.cc
716
constexpr T operator()(const T &lhs, const T &rhs) const
usr.bin/dtc/input_buffer.cc
718
return lhs >> rhs;
usr.bin/dtc/input_buffer.cc
746
result r = (*binary_operator_base::rhs)();
usr.bin/dtc/input_buffer.cc
887
expression_ptr rhs(parse_expression());
usr.bin/dtc/input_buffer.cc
888
if (!rhs)
usr.bin/dtc/input_buffer.cc
893
if (rhs->precedence() < expr->precedence())
usr.bin/dtc/input_buffer.cc
895
expr->rhs = std::move(rhs);
usr.bin/dtc/input_buffer.cc
902
static_cast<binary_operator_base*>(rhs.get());
usr.bin/dtc/input_buffer.cc
905
return rhs;
usr.sbin/pciconf/pciconf.c
360
pci_conf_compar(const void *lhs, const void *rhs)
usr.sbin/pciconf/pciconf.c
365
r = rhs;