| /freebsd-12-stable/contrib/llvm-project/lld/MachO/ |
| D | SymbolTable.cpp | 201 enum class Boundary { enum 213 Boundary which) { in handleSectionBoundarySymbol() 247 if (which == Boundary::Start) in handleSectionBoundarySymbol() 254 Boundary which) { in handleSegmentBoundarySymbol() 256 if (which == Boundary::Start) in handleSegmentBoundarySymbol() 266 return handleSectionBoundarySymbol(sym, name, Boundary::Start); in treatUndefinedSymbol() 268 return handleSectionBoundarySymbol(sym, name, Boundary::End); in treatUndefinedSymbol() 270 return handleSegmentBoundarySymbol(sym, name, Boundary::Start); in treatUndefinedSymbol() 272 return handleSegmentBoundarySymbol(sym, name, Boundary::End); in treatUndefinedSymbol()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| D | common.h | 30 inline constexpr uptr roundUpTo(uptr X, uptr Boundary) { in roundUpTo() argument 31 return (X + Boundary - 1) & ~(Boundary - 1); in roundUpTo() 34 inline constexpr uptr roundDownTo(uptr X, uptr Boundary) { in roundDownTo() argument 35 return X & ~(Boundary - 1); in roundDownTo()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/ |
| D | scudo_allocator.h | 63 constexpr uptr RoundUpTo(uptr Size, uptr Boundary) { in RoundUpTo() argument 64 return (Size + Boundary - 1) & ~(Boundary - 1); in RoundUpTo()
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | imx6dl-nit6xlite.dts | 3 * Copyright 2015 Boundary Devices, Inc. 11 model = "Boundary Devices i.MX6 Solo Nitrogen6_Lite Board";
|
| D | imx6q-nitrogen6_max.dts | 3 * Copyright 2015 Boundary Devices, Inc. 11 model = "Boundary Devices i.MX6 Quad Nitrogen6_MAX Board";
|
| D | imx6q-nitrogen6_som2.dts | 3 * Copyright 2016 Boundary Devices, Inc. 11 model = "Boundary Devices i.MX6 Quad Nitrogen6_SOM2 Board";
|
| D | imx6qp-nitrogen6_som2.dts | 3 * Copyright 2017 Boundary Devices, Inc. 12 model = "Boundary Devices i.MX6 Quad Plus Nitrogen6_SOM2 Board";
|
| D | imx6qp-nitrogen6_max.dts | 3 * Copyright 2016 Boundary Devices, Inc. 12 model = "Boundary Devices i.MX6 Quad Plus Nitrogen6_MAX Board";
|
| D | imx6dl-nitrogen6x.dts | 3 * Copyright 2013 Boundary Devices, Inc. 13 model = "Boundary Devices i.MX6 DualLite Nitrogen6x Board";
|
| D | imx6q-nitrogen6x.dts | 3 * Copyright 2013 Boundary Devices, Inc. 13 model = "Boundary Devices i.MX6 Quad Nitrogen6x Board";
|
| D | imx6sx-nitrogen6sx.dts | 3 * Copyright (C) 2016 Boundary Devices, Inc. 11 model = "Boundary Devices i.MX6 SoloX Nitrogen6sx Board";
|
| D | imx7d-nitrogen7.dts | 3 * Copyright 2016 Boundary Devices, Inc. 11 model = "Boundary Devices i.MX7 Nitrogen7 Board";
|
| D | imx6qdl-nit6xlite.dtsi | 3 * Copyright 2015 Boundary Devices, Inc.
|
| D | imx6qdl-nitrogen6x.dtsi | 3 * Copyright 2013 Boundary Devices, Inc.
|
| D | imx6qdl-nitrogen6_som2.dtsi | 3 * Copyright 2016 Boundary Devices, Inc.
|
| D | imx6qdl-nitrogen6_max.dtsi | 3 * Copyright 2015 Boundary Devices, Inc.
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/ |
| D | guarded_pool_allocator.cpp | 29 size_t roundUpTo(size_t Size, size_t Boundary) { in roundUpTo() argument 30 return (Size + Boundary - 1) & ~(Boundary - 1); in roundUpTo()
|
| /freebsd-12-stable/sys/gnu/dts/arm64/freescale/ |
| D | imx8mq-nitrogen.dts | 3 * Copyright 2018 Boundary Devices 12 model = "Boundary Devices i.MX8MQ Nitrogen8M";
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| D | CommonArgs.cpp | 1557 unsigned Boundary; in addX86AlignBranchArgs() local 1558 if (Value.getAsInteger(10, Boundary) || Boundary < 16 || in addX86AlignBranchArgs() 1559 !llvm::isPowerOf2_64(Boundary)) { in addX86AlignBranchArgs() 1563 addArg("-x86-align-branch-boundary=" + Twine(Boundary)); in addX86AlignBranchArgs()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | SplitKit.cpp | 747 SlotIndex Boundary = Idx.getBoundaryIndex(); in leaveIntvAfter() local 748 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary); in leaveIntvAfter() 751 return Boundary.getNextSlot(); in leaveIntvAfter() 754 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary); in leaveIntvAfter() 768 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(), in leaveIntvAfter()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| D | ControlHeightReduction.cpp | 244 CHRScope *split(Region *Boundary) { in split() argument 245 assert(Boundary && "Boundary null"); in split() 246 assert(RegInfos.begin()->R != Boundary && in split() 249 RegInfos, [&Boundary](const RegInfo &RI) { return Boundary == RI.R; }); in split()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/ |
| D | Decl.cpp | 3514 SourceLocation Boundary = getNameInfo().getBeginLoc(); in getReturnTypeSourceRange() local 3515 if (RTRange.isInvalid() || Boundary.isInvalid() || in getReturnTypeSourceRange() 3516 !SM.isBeforeInTranslationUnit(RTRange.getEnd(), Boundary)) in getReturnTypeSourceRange()
|
| /freebsd-12-stable/sys/dev/cxgbe/firmware/ |
| D | t5fw_cfg_fpga.txt | 98 # round them up to the Ingress Padding Boundary.
|
| D | t6fw_cfg_fpga.txt | 77 # round them up to the Ingress Padding Boundary.
|
| D | t5fw_cfg_uwire.txt | 77 # round them up to the Ingress Padding Boundary.
|