Home
last modified time | relevance | path

Searched refs:Left (Results 1 – 25 of 93) sorted by relevance

1234

/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DTokenAnnotator.cpp238 Left->Previous && Left->Previous->is(tok::kw_for); in parseParens()
2217 if (Left.is(tok::comma) && Left.NestingLevel == 0) in splitPenalty()
2326 if (Left.is(tok::colon) && Left.is(TT_ObjCMethodExpr)) in splitPenalty()
2339 if (Left.is(tok::l_paren) && Left.Previous && in splitPenalty()
2362 (Left.NextOperator || Left.OperatorIndex != 0)) in splitPenalty()
2448 return Left.Tok.isLiteral() || (Left.is(tok::identifier) && Left.Previous && in spaceRequiredBetween()
2560 if (Left.is(TT_TemplateCloser) && Left.MatchingParen && in spaceRequiredBetween()
2665 (Left.is(Keywords.kw_of) && Left.Previous && in spaceRequiredBefore()
2676 if (Left.is(tok::kw_default) && Left.Previous && in spaceRequiredBefore()
3162 if (Left.is(TT_TemplateString) && Left.opensScope()) in canBreakBefore()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DAttrIterator.h86 friend bool operator==(specific_attr_iterator Left,
88 assert((Left.Current == nullptr) == (Right.Current == nullptr));
89 if (Left.Current < Right.Current)
90 Left.AdvanceToNext(Right.Current);
92 Right.AdvanceToNext(Left.Current);
93 return Left.Current == Right.Current;
95 friend bool operator!=(specific_attr_iterator Left,
97 return !(Left == Right);
/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dtrie-node.h50 mergeTrieNodes(const TrieNode<T> &Left, const TrieNode<T> &Right, in mergeTrieNodes() argument
57 assert(Left.FuncId == Right.FuncId); in mergeTrieNodes()
59 Left.FuncId, NewParent, {}, MergeFn(Left.ExtraData, Right.ExtraData)}); in mergeTrieNodes()
65 for (auto *Callee : Left.Callees) { in mergeTrieNodes()
H A Dxray-stacks.cpp264 StackDuration mergeStackDuration(const StackDuration &Left, in mergeStackDuration() argument
267 Data.TerminalDurations.reserve(Left.TerminalDurations.size() + in mergeStackDuration()
269 Data.IntermediateDurations.reserve(Left.IntermediateDurations.size() + in mergeStackDuration()
272 for (auto duration : Left.TerminalDurations) in mergeStackDuration()
277 for (auto duration : Left.IntermediateDurations) in mergeStackDuration()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DFormatAdapters.h46 size_t Left; variable
50 PadAdapter(T &&Item, size_t Left, size_t Right) in PadAdapter() argument
51 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter()
55 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 DFormatCommon.h18 enum class AlignStyle { Left, Center, Right }; enumerator
51 case AlignStyle::Left: in format()
/freebsd-12.1/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c379 char c, *Left, *Right; in AcpiNsBuildNormalizedPath() local
441 Left = FullPath; in AcpiNsBuildNormalizedPath()
444 while (Left < Right) in AcpiNsBuildNormalizedPath()
446 c = *Left; in AcpiNsBuildNormalizedPath()
447 *Left++ = *Right; in AcpiNsBuildNormalizedPath()
/freebsd-12.1/sys/gnu/dts/arm64/allwinner/
H A Dsun50i-a64-pinebook.dts317 simple-audio-card,widgets = "Microphone", "Internal Microphone Left",
322 "Left DAC", "AIF1 Slot 0 Left",
329 "AIF1 Slot 0 Left ADC", "Left ADC",
331 "Internal Microphone Left", "MBIAS",
332 "MIC1", "Internal Microphone Left",
H A Dsun50i-a64-sopine-baseboard.dts192 "Left DAC", "AIF1 Slot 0 Left",
195 "AIF1 Slot 0 Left ADC", "Left ADC",
H A Dsun50i-a64-pine64.dts288 "Left DAC", "AIF1 Slot 0 Left",
291 "AIF1 Slot 0 Left ADC", "Left ADC",
H A Dsun50i-a64-bananapi-m64.dts358 "Left DAC", "AIF1 Slot 0 Left",
360 "AIF1 Slot 0 Left ADC", "Left ADC",
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DTildeExpressionResolver.cpp86 StringRef Left = in ResolveFullPath() local
89 if (!ResolveExact(Left, Output)) in ResolveFullPath()
92 Output.append(Expr.begin() + Left.size(), Expr.end()); in ResolveFullPath()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp172 if (N->Left) in update()
594 if (N->Left) in dump()
595 dump(N->Left); in dump()
604 order(N->Left, Seq); in order()
631 N->Left = add(N->Left, R); in add()
643 N->Left = remove(N->Left, D); in remove()
652 return (N->Left == nullptr) ? N->Right : N->Left; in remove()
656 Node *M = N->Left; in remove()
659 M->Left = remove(N->Left, M); in remove()
672 Higher->Right = Lower->Left; in rotateLeft()
[all …]
H A DHexagonSplitDouble.cpp798 bool Left = !Right; in splitShift() local
804 unsigned ShiftOpc = Left ? S2_asl_i_r in splitShift()
835 if (S == 16 && Left) in splitShift()
842 BuildMI(B, MI, DL, TII->get(ShiftOpc), (Left ? LoR : TmpR)) in splitShift()
846 if (Left) { in splitShift()
870 BuildMI(B, MI, DL, TII->get(TargetOpcode::COPY), (Left ? HiR : LoR)) in splitShift()
871 .addReg(Op1.getReg(), RS & ~RegState::Kill, (Left ? LoSR : HiSR)); in splitShift()
873 BuildMI(B, MI, DL, TII->get(A2_tfrsi), (Left ? LoR : HiR)) in splitShift()
881 if (S == 16 && Left) in splitShift()
888 BuildMI(B, MI, DL, TII->get(ShiftOpc), (Left ? HiR : LoR)) in splitShift()
[all …]
H A DHexagonBlockRanges.cpp407 RegisterSet Left; in computeInitialLiveRanges() local
410 Left.insert(I.first); in computeInitialLiveRanges()
413 Left.insert(I.first); in computeInitialLiveRanges()
414 for (auto R : Left) in computeInitialLiveRanges()
/freebsd-12.1/sys/gnu/dts/arm/
H A Dsun4i-a10-inet9f-rev03.dts69 label = "Left Joystick Left";
77 label = "Left Joystick Right";
85 label = "Left Joystick Up";
93 label = "Left Joystick Down";
101 label = "Right Joystick Left";
133 label = "DPad Left";
201 label = "Top Left Button";
/freebsd-12.1/contrib/libucl/haskell/
H A Dhucl.hs73 then return $ Left $ ucl_parser_get_object p
82 then return $ Left $ ucl_parser_get_object p
88 (Left obj) -> case MSG.fromObject (ucl_to_msgpack_object obj) of
90 (Just a) -> Left a
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp81 CharUnits Left = RegionSize - TypeSize; in evenFlexibleArraySize() local
82 if (Left.isNegative()) in evenFlexibleArraySize()
85 return Left % FlexSize == 0; in evenFlexibleArraySize()
/freebsd-12.1/contrib/less/
H A Dscreen.c1452 cpos.X = csbi.srWindow.Left + (col - 1); in _settextposition()
1530 size.X = scr.srWindow.Right - scr.srWindow.Left + 1; in win32_init_term()
1662 rcClip.Left = csbi.srWindow.Left; in add_line()
1672 new_org.X = rcSrc.Left; in add_line()
1716 rcSrc.Left = csbi.srWindow.Left;
1722 rcClip.Left = rcSrc.Left;
1728 new_org.X = rcSrc.Left;
1803 rcSrc.Left = csbi.srWindow.Left;
1809 rcClip.Left = rcSrc.Left;
1815 new_org.X = rcSrc.Left;
[all …]
/freebsd-12.1/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c200 rec.Left = (short) x; in con_write16()
241 rec.Left = (short) x; in con_write8()
568 p->SBI.srWindow.Left, in get_SBI()
574 p->origin.X = p->SBI.srWindow.Left; in get_SBI()
648 PropOf(TCB)->SBI.srWindow.Left); in drv_size()
870 readRegion.Left = 0; in save_original_screen()
877 readRegion.Left, in save_original_screen()
894 - p->SBI.srWindow.Left + 1); in save_original_screen()
903 readRegion.Left = p->SBI.srWindow.Left; in save_original_screen()
910 readRegion.Left, in save_original_screen()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp1060 static int getTryAncestor(const WinEHFuncInfo &FuncInfo, int Left, int Right) { in getTryAncestor() argument
1061 int LeftRank = getTryRank(FuncInfo, Left); in getTryAncestor()
1070 Left = FuncInfo.ClrEHUnwindMap[Left].TryParentState; in getTryAncestor()
1074 while (Left != Right) { in getTryAncestor()
1075 Left = FuncInfo.ClrEHUnwindMap[Left].TryParentState; in getTryAncestor()
1079 return Left; in getTryAncestor()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DIntrinsicsAArch64.td318 // Vector Saturating Shift Left
322 // Vector Rounding Shift Left
326 // Vector Saturating Rounding Shift Left
330 // Vector Signed->Unsigned Shift Left by Constant
350 // Vector Shift Left
354 // Vector Widening Shift Left by Constant
362 // Vector Shift Left by Constant and Insert
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1765 ValueList Left, Right; in buildTree_rec() local
1929 ValueList Left, Right; in buildTree_rec() local
2659 Left.push_back(I->getOperand(0)); in reorderAltShuffleOperands()
2671 std::swap(Left[j], Right[j]); in reorderAltShuffleOperands()
2686 std::swap(Left[j], Right[j]); in reorderAltShuffleOperands()
2727 if (VLeft == Left[i - 1]) in shouldReorderOperands()
2730 if (VRight == Left[i - 1]) in shouldReorderOperands()
2779 Left.push_back(VLeft); in reorderInputsAccordingToOpcode()
2802 Left.push_back(VRight); in reorderInputsAccordingToOpcode()
2805 Left.push_back(VLeft); in reorderInputsAccordingToOpcode()
[all …]
/freebsd-12.1/share/syscons/keymaps/
H A Del.iso07.kbd6 # English/Greek keyboard lock: (Left)Alt+(Left|Right)Shift
11 # Extra escape (for vi users): (Left)Windows
13 # Previous screen: Ctrl+Left Arrow
17 # Suspend power (APM): (Left)Alt+Pause
/freebsd-12.1/crypto/heimdal/lib/roken/
H A Dget_window_size.c113 *columns = 1 + sb_info.srWindow.Right - sb_info.srWindow.Left; in get_window_size()

1234