Searched refs:other_half (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/usr.sbin/pmcstudy/
H A Deval_expr.c583 struct expression *op, *other_half, *rest; local
601 other_half = op->next;
602 if (other_half->type == TYPE_PARN_OPEN) {
603 rest = gather_exp_to_paren_close(other_half->next, &val2);
604 } else if(other_half->type == TYPE_VALUE_CON) {
605 val2 = other_half->value;
606 rest = other_half->next;
607 } else if (other_half->type == TYPE_VALUE_PMC) {
608 val2 = other_half->value;
609 rest = other_half
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMachObjectWriter.cpp254 uint32_t other_half = 0; local
257 other_half = (FixedValue >> 16) & 0xffff;
266 other_half = FixedValue & 0xffff;
271 other_half = FixedValue & 0xffff;
280 makeScatteredRelocationInfo(MRE, other_half, MachO::GENERIC_RELOC_PAIR,
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp1885 uint32_t r_value, pair_r_value, r_type, r_length, other_half; local
1919 other_half = info->O->getAnyRelocationAddress(RENext) & 0xffff;
1934 op_info->Value = value << 16 | other_half;
1937 op_info->Value = other_half << 16 | value;
1958 value = value << 16 | other_half;
1960 value = other_half << 16 | value;

Completed in 74 milliseconds