Home
last modified time | relevance | path

Searched refs:Integer (Results 1 – 25 of 346) sorted by relevance

12345678910>>...14

/openbsd-src/gnu/usr.sbin/mkhybrid/src/libhfs_iso/
H A Dlow.h21 Integer sbSig; /* device signature (should be 0x4552) */
22 Integer sbBlkSize; /* block size of the device (in bytes) */
24 Integer sbDevType; /* reserved */
25 Integer sbDevId; /* reserved */
27 Integer sbDrvrCount; /* number of driver descriptor entries */
29 Integer ddSize; /* size of the driver, in 512-byte blocks */
30 Integer ddType; /* driver operating system type (MacOS = 1) */
31 Integer ddPad[243]; /* additional drivers, if any */
35 Integer bbID; /* boot blocks signature */
37 Integer bbVersion; /* boot blocks version number */
[all …]
H A Dinternal.h48 typedef signed short Integer; typedef
98 Integer v; /* vertical coordinate */
99 Integer h; /* horizontal coordinate */
103 Integer top; /* top edge of rectangle */
104 Integer left; /* left edge */
105 Integer bottom; /* bottom edge */
106 Integer right; /* rightmost edge */
111 Integer frFlags; /* flags */
113 Integer frView; /* folder's view */
119 Integer frUnused; /* reserved */
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.oliva/
H A Dstkalign.C10 struct Integer { struct
11 ~Integer () {} in ~Integer() argument
14 void foo (const Integer& y);
15 Integer bar (const Integer& x);
17 void show (const Integer& x) { in show()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dscope5.C3 class Integer {
16 class Integer: public Description {
18 ::Integer low;
19 ::Integer high;
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMScheduleA8.td94 // Integer multiply pipeline
105 // Integer load pipeline
184 // Integer store pipeline
252 // FP Special Register to Integer Register File Move
284 // Single-Precision FP to Integer Convert
288 // Double-Precision FP to Integer Convert
293 // Integer to Single-Precision FP Convert
297 // Integer to Double-Precision FP Convert
359 // Integer to Single-precision Move
364 // Integer to Double-precision Move
[all …]
H A DARMScheduleV6.td87 // Integer multiply pipeline
96 // Integer load pipeline
149 // Integer store pipeline
194 // FP Special Register to Integer Register File Move
215 // Single-Precision FP to Integer Convert
218 // Double-Precision FP to Integer Convert
221 // Integer to Single-Precision FP Convert
224 // Integer to Double-Precision FP Convert
263 // Integer to Single-precision Move
266 // Integer to Double-precision Move
[all …]
H A DARMScheduleA9.td171 // Integer multiply pipeline
188 // Integer load pipeline
335 // Integer store pipeline
456 // FP Special Register to Integer Register File Move
535 // Single-Precision FP to Integer Convert
543 // Double-Precision FP to Integer Convert
551 // Integer to Single-Precision FP Convert
559 // Integer to Double-Precision FP Convert
664 // Integer to Single-precision Move
673 // Integer to Double-precision Move
[all …]
/openbsd-src/gnu/usr.bin/perl/t/lib/warnings/
H A D6default8 Integer overflow in octal number at - line 3.
19 Integer overflow in octal number at - line 3.
32 Integer overflow in octal number at - line 3.
35 Integer overflow in octal number at - line 8.
43 Integer overflow in hexadecimal number at - line 3.
51 Integer overflow in binary number at - line 3.
80 Integer overflow in hexadecimal number at (eval 1) line 3.
94 Integer overflow in hexadecimal number at (eval 1) line 2.
H A Dutil12 Integer overflow in binary number
16 Integer overflow in octal number
20 Integer overflow in hexadecimal number
56 Integer overflow in binary number at - line 3.
64 Integer overflow in hexadecimal number at - line 3.
72 Integer overflow in octal number at - line 3.
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DTemplateBase.h142 struct I Integer;
175 Integer = Other.Integer;
176 Integer.Type = Type.getAsOpaquePtr();
318 if (Integer.BitWidth <= 64)
319 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
321 unsigned NumWords = APInt::getNumWords(Integer.BitWidth);
322 return APSInt(APInt(Integer.BitWidth, ArrayRef(Integer.pVal, NumWords)),
323 Integer.IsUnsigned);
329 return QualType::getFromOpaquePtr(Integer.Type);
334 Integer.Type = T.getAsOpaquePtr();
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVScheduleV.td175 // 11. Vector Integer Arithmetic Instructions
176 // 11.1. Vector Single-Width Integer Add and Subtract
181 // 11.2. Vector Widening Integer Add/Subtract
185 // 11.3. Vector Integer Extension
187 // 11.4. Vector Integer Arithmetic with Carry or Borrow Instructions
195 // 11.7. Vector Narrowing Integer Right Shift Instructions
199 // 11.8. Vector Integer Comparison Instructions
200 // 11.9. Vector Integer Min/Max Instructions
204 // 11.10. Vector Single-Width Integer Multiply Instructions
207 // 11.11. Vector Integer Divide Instructions
[all …]
H A DRISCVFeatures.td15 "'M' (Integer Multiplication and Division)">;
18 "'M' (Integer Multiplication and Division)">;
22 "'Zmmul' (Integer Multiplication)">;
27 "'M' (Integer Multiplication and Division) or "
28 "'Zmmul' (Integer Multiplication)">;
99 "'Zfinx' (Float in Integer)">;
102 "'Zfinx' (Float in Integer)">;
106 "'Zdinx' (Double in Integer)",
110 "'Zdinx' (Double in Integer)">;
114 "'Zhinxmin' (Half Float in Integer Minimal)",
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86Schedule.td135 defm WriteADC : X86SchedWritePair; // Integer ALU + flags op.
140 // Integer multiplication
141 defm WriteIMul8 : X86SchedWritePair; // Integer 8-bit multiplication.
142 defm WriteIMul16 : X86SchedWritePair; // Integer 16-bit multiplication.
143 defm WriteIMul16Imm : X86SchedWritePair; // Integer 16-bit multiplication by immediate.
144 defm WriteIMul16Reg : X86SchedWritePair; // Integer 16-bit multiplication by register.
145 defm WriteIMul32 : X86SchedWritePair; // Integer 32-bit multiplication.
146 defm WriteIMul32Imm : X86SchedWritePair; // Integer 32-bit multiplication by immediate.
147 defm WriteIMul32Reg : X86SchedWritePair; // Integer 32-bit multiplication by register.
148 defm WriteIMul64 : X86SchedWritePair; // Integer 64-bit multiplication.
[all …]
H A DX86ScheduleZnver3.td87 // Integer Execution Unit
130 // Integer Multiplication issued on ALU1.
232 // Integer Adds, Subtracts, and Compares
239 // Integer Multiplies, SAD, Blendvb
252 // Moves and Logical operations on Packed Integer Data Types
304 // Integer Adds, Subtracts, and Compares
311 // Integer Multiplies, SAD, Blendvb
321 // Moves and Logical operations on Packed Integer Data Types
566 defm : Zn3WriteResIntPair<WriteADC, [Zn3ALU0123], 1, [4], 1>; // Integer ALU + flags op.
614 // Integer multiplication
[all …]
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DJSONGenerator.h30 class Integer; variable
39 typedef std::shared_ptr<Integer> IntegerSP;
84 Integer *GetAsInteger() { in GetAsInteger()
86 return (Integer *)this; in GetAsInteger()
157 class Integer : public Object {
159 Integer(uint64_t value = 0) : Object(Type::eTypeInteger), m_value(value) {} in Object()
161 virtual ~Integer() {} in ~Integer()
265 AddItem(key, ObjectSP(new Integer(value))); in AddIntegerItem()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DStructuredData.h54 class Integer; variable
63 typedef std::shared_ptr<Integer> IntegerSP;
97 Integer *GetAsInteger() { in GetAsInteger()
99 ? static_cast<Integer *>(this) in GetAsInteger()
104 Integer *integer = GetAsInteger();
293 class Integer : public Object {
295 Integer(uint64_t i = 0)
298 ~Integer() override = default;
526 AddItem(key, std::make_shared<Integer>(value)); in AddIntegerItem()
/openbsd-src/gnu/gcc/gcc/config/avr/
H A Dconstraints.md58 "Integer constant in the range 0 @dots{} 63."
63 "Integer constant in the range -63 @dots{} 0."
68 "Integer constant 2."
78 "Integer constant in the range 0 @dots{} 0xff."
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DPostfixExpression.h34 Integer, enumerator
91 IntegerNode(int64_t value) : Node(Integer), m_value(value) {} in IntegerNode()
95 static bool classof(const Node *node) { return node->GetKind() == Integer; } in classof()
182 case Node::Integer: in Dispatch()
/openbsd-src/gnu/usr.bin/perl/t/op/
H A Dsprintf2.t302 like($@, qr/^Integer overflow in format string for sprintf /, "overflow in sprintf");
304 like($@, qr/^Integer overflow in format string for printf /, "overflow in printf");
325 like $@, qr/Integer overflow/ , "%NNN\$s where NNN=~$i";
967 like("$@", qr/Integer overflow in format string/,
968 qq{Integer overflow: "$fmt", "$arg"});
1053 like $@, qr/Integer overflow/, "overflow: %*s $hex, $i";
1056 like $@, qr/Integer overflow/, 'overflow: %*2$s';
1059 like $@, qr/Integer overflow/, 'overflow: %.*s';
1062 like $@, qr/Integer overflow/, 'overflow: %.*2$s';
1067 like $@, qr/Integer overflow/, 'overflow: %.NNNf';
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp50 enum KindTy { Token, Integer, Float, Symbol, BrList } Kind; enumerator
99 bool isImm() const override { return Kind == Integer || Kind == Symbol; } in isImm()
125 if (Kind == Integer) in addImmOperands()
161 case Integer: in print()
394 WebAssemblyOperand::Integer, Int.getLoc(), Int.getEndLoc(), in parseSingleInteger()
449 if (!Lexer.is(AsmToken::Integer)) in checkForP2AlignIfLoadStore()
465 WebAssemblyOperand::Integer, Tok.getLoc(), Tok.getEndLoc(), in checkForP2AlignIfLoadStore()
480 WebAssemblyOperand::Integer, NameLoc, NameLoc, in addBlockTypeOperand()
486 if (!Tok.is(AsmToken::Integer)) in parseLimits()
496 if (!Tok.is(AsmToken::Integer)) in parseLimits()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DMCAsmParser.cpp73 if (getTok().getKind() != AsmToken::Integer) in parseIntToken()
152 if (Tok.isNot(AsmToken::Integer)) in parseGNUAttribute()
157 if (Tok.isNot(AsmToken::Integer)) in parseGNUAttribute()
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCAsmMacro.h32 Integer, enumerator
116 assert(Kind == Integer && "This token isn't an integer!"); in getIntVal()
121 assert((Kind == Integer || Kind == BigNum) && in getAPIntVal()
/openbsd-src/gnu/gcc/gcc/config/i386/
H A Dconstraints.md25 ;; Integer register constraints.
89 ;; Integer constant constraints.
91 "Integer constant in the range 0 @dots{} 31, for 32-bit shifts."
96 "Integer constant in the range 0 @dots{} 63, for 64-bit shifts."
122 "@internal Integer constant in the range 0 @dots{} 127, for 128-bit shifts."
/openbsd-src/gnu/usr.bin/perl/t/lib/
H A Dh2ph.h74 function Tru64_Pascal(n: Integer): Integer;
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h146 std::optional<dwarf::Form> Form, uint64_t Integer);
148 void addUInt(DIEValueList &Block, dwarf::Form Form, uint64_t Integer);
152 std::optional<dwarf::Form> Form, int64_t Integer);
154 void addSInt(DIELoc &Die, std::optional<dwarf::Form> Form, int64_t Integer);
171 void addSectionOffset(DIE &Die, dwarf::Attribute Attribute, uint64_t Integer);

12345678910>>...14