/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/ |
H A D | TokenAnnotator.cpp | 46 static bool isLambdaParameterList(const FormatToken *Left) { in isLambdaParameterList() argument 48 if (Left->Previous && Left->Previous->is(tok::greater) && in isLambdaParameterList() 49 Left->Previous->MatchingParen && in isLambdaParameterList() 50 Left->Previous->MatchingParen->is(TT_TemplateOpener)) in isLambdaParameterList() 51 Left = Left->Previous->MatchingParen; in isLambdaParameterList() 54 return Left->Previous && Left->Previous->is(tok::r_square) && in isLambdaParameterList() 55 Left->Previous->MatchingParen && in isLambdaParameterList() 56 Left->Previous->MatchingParen->is(TT_LambdaLSquare); in isLambdaParameterList() 98 FormatToken *Left = CurrentToken->Previous; in parseAngle() local 99 Left->ParentBracket = Contexts.back().ContextKind; in parseAngle() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | AttrIterator.h | 85 friend bool operator==(specific_attr_iterator Left, 87 assert((Left.Current == nullptr) == (Right.Current == nullptr)); 88 if (Left.Current < Right.Current) 89 Left.AdvanceToNext(Right.Current); 91 Right.AdvanceToNext(Left.Current); 92 return Left.Current == Right.Current; 94 friend bool operator!=(specific_attr_iterator Left, 96 return !(Left == Right);
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/ |
H A D | ProfileGenerator.h | 147 int32_t Left = Right; variable 148 while (Left >= LeftBoundary && Context[Left] == Context[Left + I]) { 151 Left--; 154 bool DuplicationFound = (Left < LeftBoundary); 162 std::copy(BeginIter + Right + 1, BeginIter + Left + I + 1, 164 End += Left + I - Right; 166 Right = Left + I;
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | FormatAdapters.h | 44 size_t Left; variable 48 PadAdapter(T &&Item, size_t Left, size_t Right) in PadAdapter() argument 49 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter() 53 Stream.indent(Left); in format() 92 detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) { in fmt_pad() argument 93 return detail::PadAdapter<T>(std::forward<T>(Item), Left, Right); in fmt_pad()
|
H A D | FormatCommon.h | 17 enum class AlignStyle { Left, Center, Right }; enumerator 50 case AlignStyle::Left: in format()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/ |
H A D | trie-node.h | 49 mergeTrieNodes(const TrieNode<T> &Left, const TrieNode<T> &Right, in mergeTrieNodes() argument 56 assert(Left.FuncId == Right.FuncId); in mergeTrieNodes() 58 Left.FuncId, NewParent, {}, MergeFn(Left.ExtraData, Right.ExtraData)}); in mergeTrieNodes() 64 for (auto *Callee : Left.Callees) { in mergeTrieNodes()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
H A D | GtestMatchers.cpp | 89 internal::BindableMatcher<Stmt> gtestAssert(GtestCmp Cmp, StatementMatcher Left, in gtestAssert() argument 93 hasArgument(2, Left), hasArgument(3, Right)); in gtestAssert() 96 internal::BindableMatcher<Stmt> gtestExpect(GtestCmp Cmp, StatementMatcher Left, in gtestExpect() argument 100 hasArgument(2, Left), hasArgument(3, Right)); in gtestExpect()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | PseudoProbeInserter.cpp | 124 auto IsEqual = [](const MachineInstr *Left, const MachineInstr *Right) { in runOnMachineFunction() argument 125 return Left->getOperand(0).getImm() == Right->getOperand(0).getImm() && in runOnMachineFunction() 126 Left->getOperand(1).getImm() == Right->getOperand(1).getImm() && in runOnMachineFunction() 127 Left->getOperand(3).getImm() == Right->getOperand(3).getImm() && in runOnMachineFunction() 128 Left->getDebugLoc() == Right->getDebugLoc(); in runOnMachineFunction()
|
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/arm/iwmmxt/ |
H A D | wsll.cgs | 17 # Test Halfword Logical Shift Left 43 # Test Halfword Aritc Shift Left by CG register 67 # Test Word Logical Shift Left 93 # Test Word Logical Shift Left by CG register 117 # Test Double Word Logical Shift Left 143 # Test Double Word Logical Shift Left by CG register
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | PseudoProbe.cpp | 146 auto IsEqual = [](const PseudoProbeInst *Left, const PseudoProbeInst *Right) { in removeRedundantPseudoProbes() argument 147 return Left->getFuncGuid() == Right->getFuncGuid() && in removeRedundantPseudoProbes() 148 Left->getIndex() == Right->getIndex() && in removeRedundantPseudoProbes() 149 Left->getAttributes() == Right->getAttributes() && in removeRedundantPseudoProbes() 150 Left->getDebugLoc() == Right->getDebugLoc(); in removeRedundantPseudoProbes()
|
/netbsd-src/sys/external/bsd/acpica/dist/namespace/ |
H A D | nsnames.c | 265 char c, *Left, *Right; in AcpiNsBuildNormalizedPath() local 327 Left = FullPath; in AcpiNsBuildNormalizedPath() 330 while (Left < Right) in AcpiNsBuildNormalizedPath() 332 c = *Left; in AcpiNsBuildNormalizedPath() 333 *Left++ = *Right; in AcpiNsBuildNormalizedPath()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
H A D | HexagonConstExtenders.cpp | 129 Node *Left = nullptr, *Right = nullptr; member 172 N->Height = 1 + std::max(height(N->Left), height(N->Right)); in update() 173 if (N->Left) in update() 174 N->MaxEnd = std::max(N->MaxEnd, N->Left->MaxEnd); in update() 181 int32_t Balance = height(N->Right) - height(N->Left); in rebalance() 183 return rotateRight(N->Left, N); in rebalance() 591 dbgs() << " Left: " << N->Left << '\n'; in dump() 594 if (N->Left) in dump() 595 dump(N->Left); in dump() 604 order(N->Left, Seq); in order() [all …]
|
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
H A D | sun4i-a10-inet9f-rev03.dts | 67 label = "Left Joystick Left"; 75 label = "Left Joystick Right"; 83 label = "Left Joystick Up"; 91 label = "Left Joystick Down"; 99 label = "Right Joystick Left"; 131 label = "DPad Left"; 199 label = "Top Left Button";
|
/netbsd-src/external/mit/xorg/lib/xkeyboard-config/rules/ |
H A D | base.lst | 787 grp:lswitch Left Alt (while pressed) 788 grp:lwin_switch Left Win (while pressed) 795 grp:lalt_toggle Left Alt 799 grp:win_menu_select Left Win to first layout; Right Win/Menu to second layout 800 grp:ctrl_select Left Ctrl to first layout; Right Ctrl to second layout 807 grp:lctrl_lshift_toggle Left Ctrl+Left Shift 811 grp:lalt_lshift_toggle Left Alt+Left Shift 814 grp:lwin_toggle Left Win 819 grp:lshift_toggle Left Shift 821 grp:lctrl_toggle Left Ctrl [all …]
|
H A D | evdev.lst | 787 grp:lswitch Left Alt (while pressed) 788 grp:lwin_switch Left Win (while pressed) 795 grp:lalt_toggle Left Alt 799 grp:win_menu_select Left Win to first layout; Right Win/Menu to second layout 800 grp:ctrl_select Left Ctrl to first layout; Right Ctrl to second layout 807 grp:lctrl_lshift_toggle Left Ctrl+Left Shift 811 grp:lalt_lshift_toggle Left Alt+Left Shift 814 grp:lwin_toggle Left Win 819 grp:lshift_toggle Left Shift 821 grp:lctrl_toggle Left Ctrl [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/ |
H A D | Parsing.cpp | 223 auto Left = ParseElement(P->State); in parsePair() local 224 if (!Left) in parsePair() 225 return Left.takeError(); in parsePair() 227 P = parseChar(',', Left->State); in parsePair() 240 Op(std::move(Left->Value), std::move(Right->Value))); in parsePair()
|
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/ |
H A D | PRBTree.cc | 43 #define D_OPPOSITE(x) (((x)==Left) ? Right : Left ) 182 d = Left; in rb_copy_node() 352 d = Left; in rb_locate() 385 d = (key < y->key) ? Left : Right; in insert() 436 if (rb_child (lm, Left, curts) && rb_child (lm, Right, curts)) in remove() 441 x = rb_child (y, Left, curts); in remove()
|
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/ |
H A D | PRBTree.cc | 43 #define D_OPPOSITE(x) (((x)==Left) ? Right : Left ) 182 d = Left; in rb_copy_node() 352 d = Left; in rb_locate() 385 d = (key < y->key) ? Left : Right; in insert() 436 if (rb_child (lm, Left, curts) && rb_child (lm, Right, curts)) in remove() 441 x = rb_child (y, Left, curts); in remove()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
H A D | GtestMatchers.h | 34 internal::BindableMatcher<Stmt> gtestAssert(GtestCmp Cmp, StatementMatcher Left, 38 internal::BindableMatcher<Stmt> gtestExpect(GtestCmp Cmp, StatementMatcher Left,
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CastSizeChecker.cpp | 82 CharUnits Left = RegionSize - TypeSize; in evenFlexibleArraySize() local 83 if (Left.isNegative()) in evenFlexibleArraySize() 86 return Left % FlexSize == 0; in evenFlexibleArraySize()
|
/netbsd-src/external/bsd/less/dist/ |
H A D | screen.c | 833 sys_width = scr.srWindow.Right - scr.srWindow.Left + 1; in scrsize() 1548 cpos.X = csbi.srWindow.Left + (col - 1); in _settextposition() 1642 size.X = scr.srWindow.Right - scr.srWindow.Left + 1; in win32_init_term() 1920 rcClip.Left = csbi.srWindow.Left; in add_line() 1930 new_org.X = rcSrc.Left; in add_line() 1972 rcSrc.Left = csbi.srWindow.Left; 1978 rcClip.Left = rcSrc.Left; 1984 new_org.X = rcSrc.Left; 2056 rcSrc.Left = csbi.srWindow.Left; in win32_scroll_up() 2062 rcClip.Left = rcSrc.Left; in win32_scroll_up() [all …]
|
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/allwinner/ |
H A D | sun50i-a64-pinebook.dts | 369 simple-audio-card,widgets = "Microphone", "Internal Microphone Left", 374 "Left DAC", "DACL", 381 "ADCL", "Left ADC", 383 "Internal Microphone Left", "MBIAS", 384 "MIC1", "Internal Microphone Left",
|
H A D | sun50i-a64-pinetab.dts | 416 simple-audio-card,widgets = "Microphone", "Internal Microphone Left", 421 "Left DAC", "DACL", 428 "ADCL", "Left ADC", 430 "Internal Microphone Left", "MBIAS", 431 "MIC1", "Internal Microphone Left",
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/diagtool/ |
H A D | DiagnosticNames.cpp | 48 static bool orderByID(const DiagnosticRecord &Left, in orderByID() argument 50 return Left.DiagID < Right.DiagID; in orderByID()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
H A D | CodeBeadsGen.cpp | 99 unsigned Left = Right + 8; in run() local 102 for (unsigned i = Right; i != Left; ++i) { in run()
|