| /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
| H A D | enable_execute_stack.c | 44 MEMORY_BASIC_INFORMATION mbi; in __enable_execute_stack() local 45 if (!VirtualQuery(addr, &mbi, sizeof(mbi))) in __enable_execute_stack() 47 VirtualProtect(mbi.BaseAddress, mbi.RegionSize, PAGE_EXECUTE_READWRITE, in __enable_execute_stack() 48 &mbi.Protect); in __enable_execute_stack()
|
| /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | arm,gic-v3.yaml | 118 being exposed by the HW, and the mbi-ranges property present. 120 mbi-ranges: 123 that can be used an MBI, and "span" the size of that range. Multiple 130 mbi-alias: 182 mbi-ranges: [ msi-controller ] 183 msi-controller: [ mbi-ranges ] 257 mbi-ranges = <256 128>;
|
| H A D | hisilicon,mbigen-v2.txt | 6 MBI is kind of msi interrupt only used on Non-PCI devices.
|
| /freebsd/sys/security/mac_bsdextended/ |
| H A D | mac_bsdextended.c | 469 int mbi; in ugidfw_accmode2mbi() local 471 mbi = 0; in ugidfw_accmode2mbi() 473 mbi |= MBI_EXEC; in ugidfw_accmode2mbi() 475 mbi |= MBI_WRITE; in ugidfw_accmode2mbi() 477 mbi |= MBI_READ; in ugidfw_accmode2mbi() 479 mbi |= MBI_ADMIN; in ugidfw_accmode2mbi() 481 mbi |= MBI_STAT; in ugidfw_accmode2mbi() 483 mbi |= MBI_APPEND; in ugidfw_accmode2mbi() 484 return (mbi); in ugidfw_accmode2mbi()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_win.cpp | 124 MEMORY_BASIC_INFORMATION mbi; in GetThreadStackTopAndBottom() local 125 CHECK_NE(VirtualQuery(&mbi /* on stack */, &mbi, sizeof(mbi)), 0); in GetThreadStackTopAndBottom() 129 *stack_top = (uptr)mbi.BaseAddress + mbi.RegionSize; in GetThreadStackTopAndBottom() 130 *stack_bottom = (uptr)mbi.AllocationBase; in GetThreadStackTopAndBottom() 151 MEMORY_BASIC_INFORMATION mbi; in UnmapOrDie() local 152 CHECK(VirtualQuery(addr, &mbi, sizeof(mbi))); in UnmapOrDie() 430 MEMORY_BASIC_INFORMATION mbi; in MemoryRangeIsAvailable() local 431 CHECK(VirtualQuery((void *)range_start, &mbi, sizeof(mbi))); in MemoryRangeIsAvailable() 432 return mbi.Protect == PAGE_NOACCESS && in MemoryRangeIsAvailable() 433 (uptr)mbi.BaseAddress + mbi.RegionSize >= range_end; in MemoryRangeIsAvailable()
|
| /freebsd/usr.bin/localedef/ |
| H A D | scanner.c | 466 static int mbi = 0; in get_wide() local 472 mbi = 0; in get_wide() 476 if ((mbi == mb_cur_max) || ((c = get_byte()) == EOF)) { in get_wide() 481 mbi = 0; in get_wide() 485 mbs[mbi++] = c; in get_wide() 486 mbs[mbi] = 0; in get_wide() 494 mbi = 0; in get_wide()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineBlockFrequencyInfo.cpp | 139 for (auto MBI = F->begin(); MBI != F->end(); ++MBI, ++O) { in getNodeLabel() local 140 LayoutOrderMap[&*MBI] = O; in getNodeLabel()
|
| H A D | XRayInstrumentation.cpp | 204 auto MBI = llvm::find_if( in runOnMachineFunction() local 206 if (MBI == MF.end()) in runOnMachineFunction() 210 auto &FirstMBB = *MBI; in runOnMachineFunction()
|
| H A D | MachineBlockPlacement.cpp | 3544 for (auto MBI = std::next(MF.begin()), MBE = MF.end(); MBI != MBE; ++MBI) { in runOnMachineFunction() local 3545 auto LayoutPred = std::prev(MBI); in runOnMachineFunction() 3546 if (!LayoutPred->isSuccessor(&*MBI)) { in runOnMachineFunction() 3548 MBI->setAlignment(Align(1ULL << AlignAllNonFallThruBlocks), in runOnMachineFunction() 3551 MBI->setAlignment(Align(1ULL << AlignAllNonFallThruBlocks)); in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86FixupLEAs.cpp | 671 MachineBasicBlock::iterator MBI = searchBackwards(p, I, MBB); in seekLEAFixup() 672 if (MBI != MachineBasicBlock::iterator()) { in seekLEAFixup() 673 MachineInstr *NewMI = postRAConvertToLEA(MBB, MBI); in seekLEAFixup() 676 LLVM_DEBUG(dbgs() << "FixLEA: Candidate to replace:"; MBI->dump();); in seekLEAFixup() 679 MBB.getParent()->substituteDebugValuesForInst(*MBI, *NewMI, 1); in seekLEAFixup() 680 MBB.erase(MBI); in seekLEAFixup() 670 MachineBasicBlock::iterator MBI = searchBackwards(p, I, MBB); seekLEAFixup() local
|
| /freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
| H A D | dsa-threecolumn.pem | 57 mbI
|
| /freebsd/sys/arm64/arm64/ |
| H A D | gic_v3_fdt.c | 132 ret = OF_getencprop_alloc_multi(ofw_bus_get_node(dev), "mbi-ranges", in gic_v3_fdt_attach() 141 device_printf(dev, "Malformed mbi-ranges property\n"); in gic_v3_fdt_attach()
|
| H A D | gic_v3.c | 384 mtx_init(&sc->gic_mbi_mtx, "GICv3 mbi lock", NULL, MTX_DEF); in gic_v3_attach()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 910 MEMORY_BASIC_INFORMATION mbi; 911 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi)); 918 Size = mbi.RegionSize;
|
| /freebsd/sys/dev/qlnx/qlnxe/ |
| H A D | ecore_mcp_api.h | 634 * @brief Get the MBI version value 638 * @param p_mbi_ver - A pointer to a variable to be filled with the MBI version.
|
| H A D | ecore_mcp.c | 2315 DP_NOTICE(p_hwfn, false, "Emulation - can't get MBI version\n"); in ecore_mcp_get_mbi_ver()
|
| /freebsd/usr.sbin/bhyve/aarch64/ |
| H A D | fdt.c | 202 fdt_property_placeholder(fdt, "mbi-ranges", 2 * sizeof(uint32_t), in fdt_add_gic()
|
| /freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
| H A D | rk3568-lubancat-2.dts | 511 mbi-ranges = <94 31>, <229 31>, <289 31>;
|
| H A D | rk356x.dtsi | 364 mbi-alias = <0x0 0xfd410000>; 365 mbi-ranges = <296 24>;
|
| H A D | rk3588-base.dtsi | 1983 mbi-alias = <0x0 0xfe610000>; 1984 mbi-ranges = <424 56>;
|
| /freebsd/sys/x86/x86/ |
| H A D | mptable.c | 119 {UNKNOWN_BUSTYPE, "MBI "},
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_read_support_format_cab.c | 57 * Window to see last decoded data, from 32KBi to 2MBi. 2098 /* Allow bits from 15(32KBi) up to 21(2MBi) */ in lzx_decode_init()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.cpp | 5388 auto MBI = BuildMI(MBB, MBBI, DL, TII->get(Opc), TmpReg) in emitFrameOffsetAdj() local 5392 MBI = MBI.addImm( in emitFrameOffsetAdj() 5394 MBI = MBI.setMIFlag(Flag); in emitFrameOffsetAdj()
|
| /freebsd/sys/dev/bxe/ |
| H A D | ecore_hsi.h | 1538 /* MBI version */ 1541 /* MBI date */
|
| /freebsd/contrib/wpa/src/drivers/ |
| H A D | nl80211_copy.h | 4362 * for a given frequency range. The value is in mBi (100 * dBi).
|