| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | APValue.h | 72 APSInt Real, Imag; member 73 ComplexAPSInt() : Real(1), Imag(1) {} in ComplexAPSInt() 76 APFloat Real, Imag; member 77 ComplexAPFloat() : Real(0.0), Imag(0.0) {} in ComplexAPFloat() 218 return ((ComplexAPSInt*)(char*)Data.buffer)->Real; in getComplexIntReal() 234 return ((ComplexAPFloat*)(char*)Data.buffer)->Real; in getComplexFloatReal() 366 ((ComplexAPSInt *)(char *)Data.buffer)->Real = std::move(R); in setComplexInt() 373 ((ComplexAPFloat *)(char *)Data.buffer)->Real = std::move(R); in setComplexFloat()
|
| HD | StmtVisitor.h | 159 UNARYOP_FALLBACK(Real) UNARYOP_FALLBACK(Imag)
|
| /NextBSD/contrib/jansson/doc/ |
| HD | conformance.rst | 39 Real vs. Integer 43 does. Real numbers are mapped to the ``double`` type and integers to 64 Real numbers whose absolute values are too small to be represented in 69 Real numbers whose absolute values are too large to be represented in
|
| /NextBSD/usr.bin/fortune/datfiles/ |
| HD | murphy | 1351 Real programmers always have a better idea. 1353 Real programmers are kind to rookies. 1355 Real programmers are secure enough to write readable code, 1358 Real programmers argue with the systems analyst as a 1361 Real programmers can do octal, hexadecimal and 1364 Real programmers do not apply DP terminology to non-DP 1367 Real programmers do not document. 1371 Real programmers do not eat breakfast from the 1374 Real programmers do not practice four-syllable words before 1377 Real programmers do not read books like [all …]
|
| /NextBSD/sys/arm/conf/ |
| HD | QILA9G20.hints | 5 # STMicroelctrtronics M41T94 Real-Time Clock
|
| /NextBSD/sys/boot/pc98/btx/btx/ |
| HD | btx.S | 26 .set MEM_ESPR,0x5e00 # Real mode stack 51 .set SEL_RCODE,0x18 # Real mode code 52 .set SEL_RDATA,0x20 # Real mode data 269 exit.2: xor %ax,%ax # Real mode segment 595 movl %eax,MEM_ESPR-0x16 # Real mode target CS:IP 681 movl $MEM_ESPR-0x0c,%esi # Real mode stack GP regs
|
| /NextBSD/sys/boot/i386/btx/btx/ |
| HD | btx.S | 26 .set MEM_ESPR,0x5e00 # Real mode stack 53 .set SEL_RCODE,0x18 # Real mode code 54 .set SEL_RDATA,0x20 # Real mode data 271 exit.2: xor %ax,%ax # Real mode segment 569 movl %eax,MEM_ESPR-0x16 # Real mode target CS:IP 655 movl $MEM_ESPR-0x0c,%esi # Real mode stack GP regs
|
| /NextBSD/contrib/tcsh/nls/ukrainian/ |
| HD | set19 | 14 11 \tЗанято пам'ять з 0x%lx до 0x%lx. Real top at 0x%lx\n
|
| /NextBSD/contrib/tcsh/nls/russian/ |
| HD | set19 | 14 11 \tAllocated memory from 0x%lx to 0x%lx. Real top at 0x%lx\n
|
| /NextBSD/contrib/tcsh/nls/C/ |
| HD | set19 | 14 11 \tAllocated memory from 0x%lx to 0x%lx. Real top at 0x%lx\n
|
| /NextBSD/sys/fs/cd9660/ |
| HD | TODO | 8 o Real Name(long name)
|
| /NextBSD/contrib/llvm/include/llvm/MC/MCParser/ |
| HD | MCAsmLexer.h | 37 Real, enumerator
|
| /NextBSD/contrib/llvm/lib/MC/MCParser/ |
| HD | AsmLexer.cpp | 90 return AsmToken(AsmToken::Real, in LexFloatLiteral() 138 return AsmToken(AsmToken::Real, StringRef(TokStart, CurPtr - TokStart)); in LexHexFloatLiteral()
|
| /NextBSD/sys/boot/i386/btx/btxldr/ |
| HD | btxldr.S | 31 .set MEM_STUB,0x600 # Real mode stub
|
| /NextBSD/sys/boot/pc98/btx/btxldr/ |
| HD | btxldr.S | 28 .set MEM_STUB,0x600 # Real mode stub
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGExprComplex.cpp | 317 llvm::Value *Real=nullptr, *Imag=nullptr; in EmitLoadOfLValue() local 322 Real = Builder.CreateAlignedLoad(RealP, AlignR, isVolatile, in EmitLoadOfLValue() 332 return ComplexPairTy(Real, Imag); in EmitLoadOfLValue() 998 llvm::Value *Real = CGF.EmitScalarExpr(E->getInit(0)); in VisitInitListExpr() local 1000 return ComplexPairTy(Real, Imag); in VisitInitListExpr()
|
| /NextBSD/contrib/ntp/ |
| HD | TODO | 6 970711: Look Real Hard at changing the key stuff from u_long to u_int32.
|
| /NextBSD/sys/boot/pc98/boot0.5/ |
| HD | boot.s | 174 b_partn: .word 0 # Real partition number
|
| /NextBSD/usr.sbin/crunch/ |
| HD | README | 74 Crunch was written for the Maruti Hard Real-Time Operating System
|
| /NextBSD/contrib/mdocml/ |
| HD | lib.in | 106 LINE("librt", "POSIX Real\\-time Library (librt, \\-lrt)")
|
| /NextBSD/contrib/llvm/tools/llvm-mc/ |
| HD | llvm-mc.cpp | 268 case AsmToken::Real: in AsLexInput()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ExprConstant.cpp | 7913 APFloat &Real = Result.FloatReal; in VisitCastExpr() local 7914 if (!EvaluateFloat(E->getSubExpr(), Real, Info)) in VisitCastExpr() 7918 Result.FloatImag = APFloat(Real.getSemantics()); in VisitCastExpr() 7949 APSInt &Real = Result.IntReal; in VisitCastExpr() local 7950 if (!EvaluateInteger(E->getSubExpr(), Real, Info)) in VisitCastExpr() 7954 Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned()); in VisitCastExpr() 8000 APFloat &Real = Result.FloatReal; in VisitBinaryOperator() local 8001 LHSOK = EvaluateFloat(E->getLHS(), Real, Info); in VisitBinaryOperator() 8004 Result.FloatImag = APFloat(Real.getSemantics()); in VisitBinaryOperator() 8015 APFloat &Real = RHS.FloatReal; in VisitBinaryOperator() local [all …]
|
| /NextBSD/sys/gnu/fs/reiserfs/ |
| HD | README | 69 Real users, as opposed to folks who want to hack and then understand
|
| /NextBSD/share/dict/ |
| HD | propernames | 976 Real
|
| /NextBSD/libexec/bootpd/ |
| HD | Changes | 4 Date, <email> Real Name
|