Home
last modified time | relevance | path

Searched refs:rhs (Results 1 – 9 of 9) sorted by relevance

/f-stack/freebsd/ddb/
H A Ddb_expr.c163 db_expr_t lhs, rhs; in db_mult_expr() local
181 lhs *= rhs; in db_mult_expr()
184 lhs &= rhs; in db_mult_expr()
192 lhs /= rhs; in db_mult_expr()
194 lhs %= rhs; in db_mult_expr()
208 db_expr_t lhs, rhs; in db_add_expr() local
224 lhs += rhs; in db_add_expr()
227 lhs -= rhs; in db_add_expr()
230 lhs |= rhs; in db_add_expr()
258 if (rhs < 0) { in db_shift_expr()
[all …]
/f-stack/app/micro_thread/
H A Dmt_session.h82 virtual int HashCmp(HashKey* rhs){ in HashCmp() argument
83 return this->_session_id - (int)rhs->HashValue(); in HashCmp()
H A Dheap.h72 inline int HeapValueCmp(HeapEntry* rhs) { in HeapValueCmp() argument
73 if (this->HeapValue() == rhs->HeapValue()) { in HeapValueCmp()
75 } else if (this->HeapValue() > rhs->HeapValue()) { in HeapValueCmp()
H A Dmt_mbuf_pool.h175 virtual int HashCmp(HashKey* rhs){ in HashCmp() argument
176 return this->_max_buf_size - (int)rhs->HashValue(); in HashCmp()
H A Dmt_connection.h241 virtual int HashCmp(HashKey* rhs){ in HashCmp() argument
242 TcpKeepKey* data = dynamic_cast<TcpKeepKey*>(rhs); in HashCmp()
H A Dmt_net.h133 virtual int HashCmp(HashKey* rhs);
414 virtual int HashCmp(HashKey* rhs) { in HashCmp() argument
415 CDestLinks* data = (CDestLinks*)(rhs); in HashCmp()
H A Dhash_list.h52 virtual int HashCmp(HashKey* rhs) = 0;
H A Dmt_net.cpp598 int32_t CNetHandler::HashCmp(HashKey* rhs) in HashCmp() argument
600 CNetHandler* data = (CNetHandler*)(rhs); in HashCmp()
/f-stack/freebsd/contrib/zstd/lib/dictBuilder/
H A Dcover.c252 U32 const rhs = *(U32 const *)rp; in COVER_cmp() local
253 return memcmp(ctx->samples + lhs, ctx->samples + rhs, ctx->d); in COVER_cmp()
261 U64 const rhs = MEM_readLE64(ctx->samples + *(U32 const *)rp) & mask; in COVER_cmp8() local
262 if (lhs < rhs) { in COVER_cmp8()
265 return (lhs > rhs); in COVER_cmp8()