Home
last modified time | relevance | path

Searched full:2047 (Results 1 – 25 of 145) sorted by relevance

123456

/freebsd/crypto/openssh/
H A Dmoduli3 20240828044144 2 6 100 2047 5 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
4 20240828044149 2 6 100 2047 2 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
5 20240828044153 2 6 100 2047 5 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
6 20240828044203 2 6 100 2047 5 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
7 20240828044206 2 6 100 2047 5 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
8 20240828044207 2 6 100 2047 2 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
9 20240828044210 2 6 100 2047 2 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
10 20240828044217 2 6 100 2047 2 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
11 20240828044224 2 6 100 2047 2 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
12 20240828044233 2 6 100 2047 5 C2CE9B70B9DD5860C0846274F1FF29B2E3D5EFFA5A8568C6B9829BD8C42422F0BEE2D…
[all …]
/freebsd/crypto/openssh/regress/
H A Dmoduli.in1 20160301052556 2 6 100 2047 5 DA57B18976E9C55CEAC3BFFF70419A1550258EA7359400BD4FAC8F4203B73E0BC54D6…
2 20160301052601 2 6 100 2047 2 DA57B18976E9C55CEAC3BFFF70419A1550258EA7359400BD4FAC8F4203B73E0BC54D6…
3 20160301052612 2 6 100 2047 5 DA57B18976E9C55CEAC3BFFF70419A1550258EA7359400BD4FAC8F4203B73E0BC54D6…
/freebsd/sys/dev/irdma/
H A Dicrdma_hw.h61 #define GLINT_DYN_CTL(_INT) (0x00160000 + ((_INT) * 4)) /* _i=0...2047 */
69 #define GLINT_CEQCTL(_INT) (0x0015c000 + ((_INT) * 4)) /* _i=0...2047 */
74 #define GLINT_RATE(_INT) (0x0015A000 + ((_INT) * 4)) /* _i=0...2047 */ /* Reset Source: CORER */
/freebsd/lib/libc/gen/
H A Disinf.c48 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0); in __isinf()
68 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0); in __isinfl()
H A Dfpclassify.c69 if (u.bits.exp == 2047) { in __fpclassifyd()
90 if (u.bits.exp == 2047) { in __fpclassifyl()
H A Dfrexp.c49 case 2047: /* infinity or NaN; value of *ex is unspecified */ in frexp()
H A Disnan.c60 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0)); in __isnan()
/freebsd/lib/msun/src/
H A Ds_fmax.c50 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0) in fmax()
52 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0) in fmax()
H A Ds_fmin.c50 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0) in fmin()
52 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0) in fmin()
H A Ds_isfinite.c39 return (u.bits.exp != 2047); in __isfinite()
H A Ds_isnormal.c39 return (u.bits.exp != 0 && u.bits.exp != 2047); in __isnormal()
H A Ds_isnan.c42 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0)); in isnan()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/
H A DXtensaInstPrinter.cpp185 assert((Value >= -2048 && Value <= 2047) && in printImm12_AsmOperand()
186 "Invalid argument, value must be in ranges [-2048,2047]"); in printImm12_AsmOperand()
196 assert((Value >= -2048 && Value <= 2047) && in printImm12m_AsmOperand()
197 "Invalid argument, value must be in ranges [-2048,2047]"); in printImm12m_AsmOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaOperands.td40 // imm12 predicate - Immediate in the range [-2048,2047]
42 def imm12 : Immediate<i32, [{ return Imm >= -2048 && Imm <= 2047; }], "Imm12_AsmOperand"> {
49 def imm12m : Immediate<i32, [{ return Imm >= -2048 && Imm <= 2047; }], "Imm12m_AsmOperand"> {
/freebsd/tools/diag/dumpvfscache/
H A Ddumpvfscache.c61 int histo[2047];
62 int histn[2047];
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Driscv,imsics.yaml81 maximum: 2047
88 maximum: 2047
/freebsd/usr.bin/primes/
H A Dspsp.c116 /* No SPSPs to base 2 less than 2047. */ in isprime()
119 if (n < 2047ULL) in isprime()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLoongArch.cpp268 return SemaRef.BuiltinConstantArgRange(TheCall, 1, -2048, 2047); in CheckLoongArchBuiltinFunctionCall()
276 return SemaRef.BuiltinConstantArgRange(TheCall, 2, -2048, 2047); in CheckLoongArchBuiltinFunctionCall()
495 return SemaRef.BuiltinConstantArgRange(TheCall, 1, -2048, 2047); in CheckLoongArchBuiltinFunctionCall()
503 return SemaRef.BuiltinConstantArgRange(TheCall, 2, -2048, 2047); in CheckLoongArchBuiltinFunctionCall()
/freebsd/contrib/file/magic/Magdir/
H A Dyara9 >4 lelong >2047
/freebsd/sys/contrib/device-tree/Bindings/hwmon/pmbus/
H A Dmps,mpq8785.yaml59 maximum: 2047
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_nat.h37 # define NAT_SIZE_LARGE 2047
44 # define RDR_SIZE_LARGE 2047
52 # define HOSTMAP_SIZE_NORMAL 2047
70 # define NAT_TABLE_SZ_NORMAL 2047
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dmxs-lradc.txt20 1 ... 2047. It counts at 2 kHz and its default is
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/AsmParser/
H A DXtensaAsmParser.cpp162 bool isImm12() const { return isImm(-2048, 2047); } in isImm12()
164 // Convert MOVI to literal load, when immediate is not in range (-2048, 2047)
476 "expected immediate in range [-2048, 2047]"); in MatchAndEmitInstruction()
479 "expected immediate in range [-2048, 2047]"); in MatchAndEmitInstruction()
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dleds-lm3697.txt54 ti,brightness-resolution = <2047>;
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcSubtarget.h88 return is64Bit() ? 2047 : 0; in isTargetLinux()

123456