Searched refs:bitpattern (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/opencsd/decoder/source/etmv3/ |
H A D | trc_pkt_elem_etmv3.cpp | 518 uint32_t bitpattern = m_pkt_data.atom.En_bits; // arranged LSBit oldest, MSbit newest in getAtomStr() local 524 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr() 525 bitpattern >>= 1; in getAtomStr() 535 oss << ((bitpattern & 0x1) ? "WE" : "WN"); // in spec read L->R, oldest->newest in getAtomStr() 536 bitpattern >>= 1; in getAtomStr() 544 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr() 545 bitpattern >>= 1; in getAtomStr() 553 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr()
|
/freebsd/contrib/opencsd/decoder/source/ptm/ |
H A D | trc_pkt_elem_ptm.cpp | 210 uint32_t bitpattern = atom.En_bits; // arranged LSBit oldest, MSbit newest in getAtomStr() local 215 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr() 225 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr() 226 bitpattern >>= 1; in getAtomStr()
|
/freebsd/contrib/llvm-project/libunwind/include/ |
H A D | unwind_arm_ehabi.h | 52 uint32_t bitpattern[5]; member 57 uint32_t bitpattern[4]; member
|
/freebsd/contrib/libcxxrt/ |
H A D | unwind-arm.h | 80 uint32_t bitpattern[5]; member 85 uint32_t bitpattern[4]; member
|
H A D | exception.cc | 78 ucb->barrier_cache.bitpattern[1] = static_cast<uint32_t>(selector); in saveLandingPad() 79 ucb->barrier_cache.bitpattern[3] = reinterpret_cast<uint32_t>(landingPad); in saveLandingPad() 100 *selector = ucb->barrier_cache.bitpattern[1]; in loadLandingPad() 101 *landingPad = reinterpret_cast<dw_eh_ptr_t>(ucb->barrier_cache.bitpattern[3]); in loadLandingPad()
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | unwind.h | 127 uint32_t bitpattern[5]; member 131 uint32_t bitpattern[4]; member
|
/freebsd/contrib/opencsd/decoder/source/etmv4/ |
H A D | trc_pkt_elem_etmv4i.cpp | 690 uint32_t bitpattern = atom.En_bits; in atomSeq() local 693 oss << ((bitpattern & 0x1) ? "E" : "N"); in atomSeq() 694 bitpattern >>= 1; in atomSeq()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | Target.td | 550 // instruction specifies bitpattern A??B where A and B are static bits, the 558 // * InstA with bitpattern 0b0000????, 559 // * InstB with bitpattern 0b000000?? but the associated decoder method 562 // The decoder tries to decode a bitpattern that matches both InstA and 565 // DecodeInstB() returns Fail the bitpattern gets rejected. By setting 569 // decode the bitpattern as InstA too.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMInstrNEON.td | 9152 // using the vmov.f32 encoding but the bitpattern is representable using
|