| /qemu/qobject/ |
| A D | qlit.c | 30 for (i = 0; lhs->value.qdict[i].key; i++) { in qlit_equal_qdict() 31 QObject *obj = qdict_get(qdict, lhs->value.qdict[i].key); in qlit_equal_qdict() 33 if (!qlit_equal_qobject(&lhs->value.qdict[i].value, obj)) { in qlit_equal_qdict() 55 if (!qlit_equal_qobject(&lhs->value.qlist[i], obj)) { in qlit_equal_qlist() 61 return !e && lhs->value.qlist[i].type == QTYPE_NONE; in qlit_equal_qlist() 64 bool qlit_equal_qobject(const QLitObject *lhs, const QObject *rhs) in qlit_equal_qobject() argument 66 if (!rhs || lhs->type != qobject_type(rhs)) { in qlit_equal_qobject() 70 switch (lhs->type) { in qlit_equal_qobject() 76 return (strcmp(lhs->value.qstr, in qlit_equal_qobject() 79 return qlit_equal_qdict(lhs, qobject_to(QDict, rhs)); in qlit_equal_qobject() [all …]
|
| /qemu/libdecnumber/ |
| A D | decNumber.c | 970 if (lhs->exponent!=0 || decNumberIsSpecial(lhs) || decNumberIsNegative(lhs) in decNumberAnd() 1978 if (lhs->exponent!=0 || decNumberIsSpecial(lhs) || decNumberIsNegative(lhs) in decNumberOr() 3392 if (lhs->exponent!=0 || decNumberIsSpecial(lhs) || decNumberIsNegative(lhs) in decNumberXor() 4141 t=lhs; lhs=rhs; rhs=t; in decAddOp() 4175 if (lhs->digits>maxdigits) maxdigits=lhs->digits; in decAddOp() 4203 decDumpAr('A', lhs->lsu, D2U(lhs->digits)); in decAddOp() 4573 if (lhs->digits>maxdigits) maxdigits=lhs->digits; in decDivideOp() 5058 if (((lhs->bits & DECINF)==0 && ISZERO(lhs)) in decMultiplyOp() 5072 lhs=rhs; in decMultiplyOp() 6213 result=decUnitCompare(lhs->lsu, D2U(lhs->digits), [all …]
|
| /qemu/scripts/ |
| A D | minikconf.py | 65 def __init__(self, lhs, rhs): argument 66 self.lhs = lhs 78 def __init__(self, lhs, rhs): argument 79 self.lhs = lhs 91 def __init__(self, lhs): argument 92 self.lhs = lhs 481 lhs = lhs | self.parse_primary() 482 return lhs 486 lhs = self.parse_disj() 489 lhs = lhs & self.parse_disj() [all …]
|
| /qemu/fsdev/ |
| A D | 9p-marshal.c | 42 void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs) in v9fs_string_copy() argument 44 v9fs_string_free(lhs); in v9fs_string_copy() 45 v9fs_string_sprintf(lhs, "%s", rhs->data); in v9fs_string_copy()
|
| A D | 9p-marshal.h | 80 void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs);
|
| /qemu/scripts/qapi/ |
| A D | commands.py | 74 lhs = '' 76 lhs = 'retval = ' 96 name=name, args=argstr, lhs=lhs)
|
| /qemu/tests/qtest/ |
| A D | m48t59-test.c | 81 static int tm_cmp(struct tm *lhs, struct tm *rhs) in tm_cmp() argument 86 memcpy(&d1, lhs, sizeof(d1)); in tm_cmp()
|
| A D | rtc-test.c | 42 static int tm_cmp(struct tm *lhs, struct tm *rhs) in tm_cmp() argument 47 memcpy(&d1, lhs, sizeof(d1)); in tm_cmp()
|
| /qemu/include/qapi/qmp/ |
| A D | qlit.h | 51 bool qlit_equal_qobject(const QLitObject *lhs, const QObject *rhs);
|
| /qemu/target/i386/kvm/ |
| A D | kvm.c | 3346 lhs->type = 3; in set_v8086_seg() 3347 lhs->present = 1; in set_v8086_seg() 3348 lhs->dpl = 3; in set_v8086_seg() 3349 lhs->db = 0; in set_v8086_seg() 3350 lhs->s = 1; in set_v8086_seg() 3351 lhs->l = 0; in set_v8086_seg() 3352 lhs->g = 0; in set_v8086_seg() 3353 lhs->avl = 0; in set_v8086_seg() 3354 lhs->unusable = 0; in set_v8086_seg() 3371 lhs->unusable = !lhs->present; in set_seg() [all …]
|
| /qemu/tcg/arm/ |
| A D | tcg-target.c.inc | 864 TCGReg dst, TCGReg lhs, TCGArg rhs, int rhs_is_const) 867 tcg_out_dat_imm(s, cond, opc, dst, lhs, encode_imm_nofail(rhs)); 869 tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0)); 878 ARMInsn opinv, TCGReg dst, TCGReg lhs, TCGArg rhs, 887 tcg_out_dat_imm(s, cond, opc, dst, lhs, imm12); 889 tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0)); 894 ARMInsn opneg, TCGReg dst, TCGReg lhs, TCGArg rhs, 906 tcg_out_dat_imm(s, cond, opc, dst, lhs, imm12); 908 tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0));
|
| /qemu/target/openrisc/ |
| A D | disas.c | 95 INSN(lhs, "r%d, %d(r%d)", a->d, a->i, a->a)
|
| /qemu/target/i386/tcg/ |
| A D | emit.c.inc | 1668 * - s->cc_srcT: memory operand (lhs for comparison)
|