Searched refs:other_half (Results 1 - 2 of 2) sorted by last modified time

/freebsd-current/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp855 outs() << format(" other_half = 0x%04x ", (unsigned int)r_address);
930 outs() << format("other_half = 0x%04x\n", (unsigned int)r_address);
3021 uint32_t r_value, pair_r_value, r_type, r_length, other_half; local
3054 other_half = info->O->getAnyRelocationAddress(RENext) & 0xffff;
3067 op_info->Value = value << 16 | other_half;
3070 op_info->Value = other_half << 16 | value;
3091 value = value << 16 | other_half;
3093 value = other_half << 16 | value;
/freebsd-current/usr.sbin/pmcstudy/
H A Deval_expr.c580 struct expression *op, *other_half, *rest; local
598 other_half = op->next;
599 if (other_half->type == TYPE_PARN_OPEN) {
600 rest = gather_exp_to_paren_close(other_half->next, &val2);
601 } else if(other_half->type == TYPE_VALUE_CON) {
602 val2 = other_half->value;
603 rest = other_half->next;
604 } else if (other_half->type == TYPE_VALUE_PMC) {
605 val2 = other_half->value;
606 rest = other_half
[all...]

Completed in 133 milliseconds