| /NextBSD/contrib/llvm/tools/clang/lib/Format/ |
| HD | TokenAnnotator.cpp | 1616 const FormatToken &Right = Tok; in splitPenalty() local 1622 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty() 1624 if (Right.is(Keywords.kw_implements)) in splitPenalty() 1629 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty() 1635 if (Left.is(tok::comma) || (Right.is(tok::identifier) && Right.Next && in splitPenalty() 1636 Right.Next->is(TT_DictLiteral))) in splitPenalty() 1638 if (Right.is(tok::l_square)) { in splitPenalty() 1642 if (Right.is(TT_LambdaLSquare) && Left.is(tok::equal)) in splitPenalty() 1644 if (!Right.isOneOf(TT_ObjCMethodExpr, TT_LambdaLSquare, in splitPenalty() 1649 if (Right.isOneOf(TT_StartOfName, TT_FunctionDeclarationName) || in splitPenalty() [all …]
|
| HD | TokenAnnotator.h | 151 const FormatToken &Right); 155 bool mustBreakBefore(const AnnotatedLine &Line, const FormatToken &Right); 157 bool canBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | AttrIterator.h | 100 specific_attr_iterator Right) { 101 assert((Left.Current == nullptr) == (Right.Current == nullptr)); 102 if (Left.Current < Right.Current) 103 Left.AdvanceToNext(Right.Current); 105 Right.AdvanceToNext(Left.Current); 106 return Left.Current == Right.Current; 109 specific_attr_iterator Right) { 110 return !(Left == Right);
|
| /NextBSD/sys/contrib/dev/acpica/components/namespace/ |
| HD | nsnames.c | 212 char c, *Left, *Right; in AcpiNsBuildNormalizedPath() local 272 Right = FullPath+Length-1; in AcpiNsBuildNormalizedPath() 273 while (Left < Right) in AcpiNsBuildNormalizedPath() 276 *Left++ = *Right; in AcpiNsBuildNormalizedPath() 277 *Right-- = c; in AcpiNsBuildNormalizedPath()
|
| /NextBSD/contrib/llvm/include/llvm/IR/ |
| HD | CFG.h | 210 inline Self& operator+=(int Right) { 211 unsigned new_idx = idx + Right; 217 inline Self operator+(int Right) const { 219 tmp += Right; 223 inline Self& operator-=(int Right) { 224 return operator+=(-Right); 227 inline Self operator-(int Right) const { 228 return operator+(-Right);
|
| HD | IntrinsicsAArch64.td | 320 // Vector Signed->Unsigned Narrowing Saturating Shift Right by Constant 323 // Vector Signed->Unsigned Rounding Narrowing Saturating Shift Right by Const 326 // Vector Narrowing Shift Right by Constant 330 // Vector Rounding Narrowing Shift Right by Constant 333 // Vector Rounding Narrowing Saturating Shift Right by Constant 346 // Vector Shift Right by Constant and Insert
|
| /NextBSD/contrib/less/ |
| HD | screen.c | 734 sys_width = scr.srWindow.Right - scr.srWindow.Left + 1; in scrsize() 1506 size.X = scr.srWindow.Right - scr.srWindow.Left + 1; in win32_init_term() 1638 rcClip.Right = csbi.srWindow.Right; in add_line() 1692 rcSrc.Right = csbi.srWindow.Right; 1698 rcClip.Right = rcSrc.Right; 1779 rcSrc.Right = csbi.srWindow.Right; 1785 rcClip.Right = rcSrc.Right; 1803 size = (n * csbi.dwSize.X) + (rcSrc.Right - topleft.X); 1878 size.X = scr.srWindow.Right - scr.srWindow.Left + 1; in check_winch()
|
| /NextBSD/contrib/llvm/lib/Transforms/Vectorize/ |
| HD | SLPVectorizer.cpp | 452 SmallVectorImpl<Value *> &Right); 457 SmallVectorImpl<Value *> &Right); 1242 ValueList Left, Right; in buildTree_rec() local 1243 reorderInputsAccordingToOpcode(VL, Left, Right); in buildTree_rec() 1245 buildTree_rec(Right, Depth + 1); in buildTree_rec() 1395 ValueList Left, Right; in buildTree_rec() local 1396 reorderAltShuffleOperands(VL, Left, Right); in buildTree_rec() 1398 buildTree_rec(Right, Depth + 1); in buildTree_rec() 1850 SmallVectorImpl<Value *> &Right) { in reorderAltShuffleOperands() argument 1856 Right.push_back(cast<Instruction>(VL[i])->getOperand(1)); in reorderAltShuffleOperands() [all …]
|
| /NextBSD/contrib/llvm/lib/Transforms/Utils/ |
| HD | LoopUtils.cpp | 420 Value *Left, Value *Right) { in createMinMaxOp() argument 447 Cmp = Builder.CreateFCmp(P, Left, Right, "rdx.minmax.cmp"); in createMinMaxOp() 449 Cmp = Builder.CreateICmp(P, Left, Right, "rdx.minmax.cmp"); in createMinMaxOp() 451 Value *Select = Builder.CreateSelect(Cmp, Left, Right, "rdx.minmax.select"); in createMinMaxOp()
|
| /NextBSD/contrib/ncurses/ncurses/win32con/ |
| HD | win_driver.c | 202 rec.Right = (short) (x + limit - 1); in con_write16() 243 rec.Right = (short) (x + n - 1); in con_write8() 569 p->SBI.srWindow.Right)); in get_SBI() 647 *Cols = (int) (PropOf(TCB)->SBI.srWindow.Right + 1 - in drv_size() 872 readRegion.Right = (SHORT) (bufferSize.X - 1); in save_original_screen() 879 readRegion.Right, in save_original_screen() 893 bufferSize.X = (SHORT) (p->SBI.srWindow.Right in save_original_screen() 905 readRegion.Right = p->SBI.srWindow.Right; in save_original_screen() 912 readRegion.Right, in save_original_screen()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/ |
| HD | VerifyDiagnosticConsumer.cpp | 697 DiagList Right(d2_begin, d2_end); in CheckLists() local 705 for (II = Right.begin(), IE = Right.end(); II != IE; ++II) { in CheckLists() 725 Right.erase(II); in CheckLists() 732 num += PrintUnexpected(Diags, &SourceMgr, Right.begin(), Right.end(), Label); in CheckLists()
|
| /NextBSD/crypto/heimdal/lib/roken/ |
| HD | get_window_size.c | 113 *columns = 1 + sb_info.srWindow.Right - sb_info.srWindow.Left; in get_window_size()
|
| /NextBSD/contrib/llvm/tools/llvm-diff/ |
| HD | DiffConsumer.h | 37 virtual void enterContext(Value *Left, Value *Right) = 0;
|
| /NextBSD/sys/mips/conf/ |
| HD | PB47 | 27 # Right now it will just detect 32mb out of 64mb, as well as
|
| /NextBSD/share/misc/ |
| HD | usb_hid_usages | 57 0x8A System Menu Right 65 0x92 D-pad Right 198 0x21 Turn Right/Left 200 0x23 Roll Right/Left 201 0x24 Move Right/Left 204 0x27 Lean Right/Left 328 0x5E Keypad 6 and Right Arrow 452 0xE7 Keyboard Right GUI 633 0x45 Menu Right 742 0x150 Balance Right [all …]
|
| /NextBSD/contrib/tcsh/nls/ukrainian/ |
| HD | set1 | 95 92 Right hand side too long
|
| /NextBSD/share/syscons/keymaps/ |
| HD | el.iso07.kbd | 6 # English/Greek keyboard lock: (Left)Alt+(Left|Right)Shift 7 # English/Greek keyboard shift: (Right)AltGr 9 # Meta shift: (Right)Windows or Menu 14 # Next screen: Ctrl+Right Arrow
|
| /NextBSD/share/vt/keymaps/ |
| HD | gr.kbd | 6 # English/Greek keyboard lock: (Left)Alt+(Left|Right)Shift 7 # English/Greek keyboard shift: (Right)AltGr 9 # Meta shift: (Right)Windows or Menu 14 # Next screen: Ctrl+Right Arrow
|
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | ImmutableSet.h | 91 ImutAVLTree *Right = T->getRight(); in getMaxElement() local 92 while (Right) { T = Right; Right = T->getRight(); } in getMaxElement()
|
| HD | ilist.h | 663 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { 664 Left.swap(Right);
|
| /NextBSD/contrib/llvm/include/llvm/Transforms/Utils/ |
| HD | LoopUtils.h | 149 Value *Left, Value *Right);
|
| /NextBSD/contrib/gcc/ |
| HD | LANGUAGES | 1 Right now there is no documentation for the GCC tree -> rtl interfaces
|
| /NextBSD/sys/gnu/dts/arm/ |
| HD | ste-nomadik-nhk15.dts | 112 0x0301006a // Right
|
| /NextBSD/crypto/openssl/doc/crypto/ |
| HD | RSA_check_key.pod | 52 to be considered. Right now RSA_check_key() simply uses the RSA structure
|
| /NextBSD/sys/boot/forth/ |
| HD | version.4th | 84 \ Right justify the text
|