Home | History | Annotate | Download | only in vbit-test

Lines Matching refs:opnd

64 valgrind_set_vbits(opnd_t *opnd)
69 num_bytes = opnd->type == Ity_I1 ? 4 : sizeof_irtype(opnd->type);
70 rc = VALGRIND_SET_VBITS(&opnd->value, &opnd->vbits.bits, num_bytes);
74 vbits_t actual = { .num_bits = opnd->vbits.num_bits };
75 rc = VALGRIND_GET_VBITS(&opnd->value, &actual.bits, num_bytes);
78 assert(equal_vbits(opnd->vbits, actual));
83 valgrind_get_vbits(opnd_t *opnd)
89 num_bytes = opnd->type == Ity_I1 ? 4 : sizeof_irtype(opnd->type);
90 opnd->vbits.num_bits = bitsof_irtype(opnd->type);
91 rc = VALGRIND_GET_VBITS(&opnd->value, &opnd->vbits.bits, num_bytes);
126 printf("opnd #%u: ", i);