Home
last modified time | relevance | path

Searched refs:other_half (Results 1 – 2 of 2) sorted by relevance

/freebsd/usr.sbin/pmcstudy/
H A Deval_expr.c580 struct expression *op, *other_half, *rest; in run_expr() local
598 other_half = op->next; in run_expr()
599 if (other_half->type == TYPE_PARN_OPEN) { in run_expr()
600 rest = gather_exp_to_paren_close(other_half->next, &val2); in run_expr()
601 } else if(other_half->type == TYPE_VALUE_CON) { in run_expr()
602 val2 = other_half->value; in run_expr()
603 rest = other_half->next; in run_expr()
604 } else if (other_half->type == TYPE_VALUE_PMC) { in run_expr()
605 val2 = other_half->value; in run_expr()
606 rest = other_half->next; in run_expr()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp3021 uint32_t r_value, pair_r_value, r_type, r_length, other_half; in SymbolizerGetOpInfo() local
3054 other_half = info->O->getAnyRelocationAddress(RENext) & 0xffff; in SymbolizerGetOpInfo()
3067 op_info->Value = value << 16 | other_half; in SymbolizerGetOpInfo()
3070 op_info->Value = other_half << 16 | value; in SymbolizerGetOpInfo()
3091 value = value << 16 | other_half; in SymbolizerGetOpInfo()
3093 value = other_half << 16 | value; in SymbolizerGetOpInfo()