/external/llvm-project/llvm/test/CodeGen/AArch64/ |
D | fpimm.ll | 4 …del=tiny -verify-machineinstrs < %s | FileCheck %s --check-prefix=TINY 11 ; TINY-LABEL: check_float: 17 ; TINY-DAG: fmov {{s[0-9]+}}, #8.5 23 ; TINY-DAG: mov [[W128:w[0-9]+]], #1124073472 24 ; TINY-DAG: fmov {{s[0-9]+}}, [[W128]] 27 ; TINY: ret 33 ; TINY-LABEL: check_double: 39 ; TINY-DAG: fmov {{d[0-9]+}}, #8.5 45 ; TINY-DAG: mov [[X128:x[0-9]+]], #4638707616191610880 46 ; TINY-DAG: fmov {{d[0-9]+}}, [[X128]] [all …]
|
D | arm64-tls-initial-exec.ll | 3 …rify-machineinstrs -show-mc-encoding -code-model=tiny < %s | FileCheck %s --check-prefix=CHECK-TINY 4 …letype=obj < %s -code-model=tiny | llvm-objdump -r - | FileCheck --check-prefix=CHECK-TINY-RELOC %s 24 ; CHECK-TINY: ldr x[[TP_OFFSET:[0-9]+]], :gottprel:initial_exec_var 25 ; CHECK-TINY: mrs x[[TP:[0-9]+]], TPIDR_EL0 26 ; CHECK-TINY: ldr w0, [x[[TP]], x[[TP_OFFSET]]] 28 ; CHECK-TINY-RELOC: R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 45 ; CHECK-TINY: ldr x[[TP_OFFSET:[0-9]+]], :gottprel:initial_exec_var 46 ; CHECK-TINY: mrs [[TP:x[0-9]+]], TPIDR_EL0 47 ; CHECK-TINY: add x0, [[TP]], x[[TP_OFFSET]] 49 ; CHECK-TINY-RELOC: R_AARCH64_TLSIE_LD_GOTTPREL_PREL19
|
D | literal_pools_float.ll | 3 …iple=aarch64-none-none-eabi -code-model=tiny -mcpu=cyclone | FileCheck --check-prefix=CHECK-TINY %s 6 …ch64-none-none-eabi -code-model=tiny -mattr=-fp-armv8 | FileCheck --check-prefix=CHECK-NOFP-TINY %s 20 ; CHECK-TINY: mov [[W128:w[0-9]+]], #1124073472 22 ; CHECK-NOFP-TINY-NOT: ldr {{s[0-9]+}}, 40 ; CHECK-TINY: mov [[W129:x[0-9]+]], #35184372088832 41 ; CHECK-TINY: movk [[W129]], #16480, lsl #48 42 ; CHECK-TINY: fmov {{d[0-9]+}}, [[W129]] 43 ; CHECK-NOFP-TINY-NOT: ldr {{d[0-9]+}}, 44 ; CHECK-NOFP-TINY-NOT: fadd
|
D | blockaddress.ll | 3 …arch64-enable-atomic-cfg-tidy=0 -verify-machineinstrs < %s | FileCheck --check-prefix=CHECK-TINY %s 26 ; CHECK-TINY: adr [[DEST:x[0-9]+]], {{.Ltmp[0-9]+}} 27 ; CHECK-TINY: str [[DEST]], 28 ; CHECK-TINY: ldr [[NEWDEST:x[0-9]+]] 29 ; CHECK-TINY: br [[NEWDEST]]
|
D | extern-weak.ll | 4 …c -mtriple=aarch64-none-none-eabi -code-model=tiny -o - %s | FileCheck --check-prefix=CHECK-TINY %s 26 ; CHECK-TINY: ldr x0, :got:var 47 ; CHECK-TINY: ldr [[BASE:x[0-9]+]], :got:arr_var 48 ; CHECK-TINY: add x0, [[BASE]], #20 64 ; CHECK-TINY: adr x0, defined_weak_var
|
D | jump-table.ll | 4 …e=aarch64-none-linux-gnu -aarch64-enable-atomic-cfg-tidy=0 | FileCheck --check-prefix=CHECK-TINY %s 47 ; CHECK-TINY-LABEL: test_jumptable: 48 ; CHECK-TINY: adr x[[JT:[0-9]+]], .LJTI0_0 49 ; CHECK-TINY: adr [[PCBASE:x[0-9]+]], [[JTBASE:.LBB[0-9]+_[0-9]+]] 50 ; CHECK-TINY: ldrb w[[OFFSET:[0-9]+]], [x[[JT]], {{x[0-9]+}}] 51 ; CHECK-TINY: add [[DEST:x[0-9]+]], [[PCBASE]], x[[OFFSET]], lsl #2 52 ; CHECK-TINY: br [[DEST]]
|
/external/python/cpython2/Lib/test/ |
D | test_float.py | 1026 TINY = fromHex('0x0.0000000000001p-1022') # min subnormal variable in HexFloatTestCase 1041 self.identical(self.TINY, ldexp(1.0, -1074)) 1138 TINY = self.TINY; 1288 self.identical(fromHex('0x1.00000000000000001p-1075'), TINY) 1289 self.identical(fromHex('-0x1.1p-1075'), -TINY) 1290 self.identical(fromHex('0x1.fffffffffffffffffp-1075'), TINY) 1295 self.identical(fromHex('0X3p-1076'), TINY) 1296 self.identical(fromHex('0x4p-1076'), TINY) 1297 self.identical(fromHex('0X5p-1076'), TINY) 1298 self.identical(fromHex('0X6p-1076'), 2*TINY) [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_float.py | 1055 TINY = fromHex('0x0.0000000000001p-1022') # min subnormal variable in HexFloatTestCase 1070 self.identical(self.TINY, ldexp(1.0, -1074)) 1167 TINY = self.TINY; 1316 self.identical(fromHex('0x1.00000000000000001p-1075'), TINY) 1317 self.identical(fromHex('-0x1.1p-1075'), -TINY) 1318 self.identical(fromHex('0x1.fffffffffffffffffp-1075'), TINY) 1323 self.identical(fromHex('0X3p-1076'), TINY) 1324 self.identical(fromHex('0x4p-1076'), TINY) 1325 self.identical(fromHex('0X5p-1076'), TINY) 1326 self.identical(fromHex('0X6p-1076'), 2*TINY) [all …]
|
/external/rust/crates/libm/src/math/ |
D | powf.rs | 23 const TINY: f32 = 1.0e-30; constant 187 sn * TINY * TINY in powf() 195 sn * TINY * TINY in powf() 297 return sn * TINY * TINY; /* underflow */ in powf() 302 return sn * TINY * TINY; /* underflow */ in powf()
|
D | pow.rs | 67 const TINY: f64 = 1.0e-300; constant 239 return if hy < 0 { HUGE * HUGE } else { TINY * TINY }; in pow() 243 return if hy > 0 { HUGE * HUGE } else { TINY * TINY }; in pow() 252 s * TINY * TINY in pow() 259 s * TINY * TINY in pow() 364 return s * TINY * TINY; /* underflow */ in pow() 368 return s * TINY * TINY; /* underflow */ in pow()
|
D | sqrtf.rs | 47 const TINY: f32 = 1.0e-30; in sqrtf() constant 114 z = 1.0 - TINY; /* raise inexact flag */ in sqrtf() 116 z = 1.0 + TINY; in sqrtf()
|
D | sqrt.rs | 114 const TINY: f64 = 1.0e-300; in sqrt() constant 217 z = 1.0 - TINY; /* raise inexact flag */ in sqrt() 219 z = 1.0 + TINY; in sqrt()
|
/external/llvm-project/llvm/test/CodeGen/ARM/ |
D | codemodel.ll | 1 …ineinstrs -o - -mtriple=arm-none-eabi -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=TINY 4 ; TINY: Target does not support the tiny CodeModel
|
/external/llvm-project/llvm/test/CodeGen/SPARC/ |
D | codemodel.ll | 1 …s -o - -mtriple=sparc64-unknown-linux -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=TINY 4 ; TINY: Target does not support the tiny CodeModel
|
/external/llvm-project/llvm/test/CodeGen/PowerPC/ |
D | codemodel.ll | 1 …instrs -o - -mtriple=powerpc-pc-linux -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=TINY 4 ; TINY: Target does not support the tiny CodeModel
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | codemodel.ll | 1 …einstrs -o - -mtriple=s390x-linux-gnu -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=TINY 4 ; TINY: Target does not support the tiny CodeModel
|
/external/crcalc/tests/src/com/hp/creals/ |
D | ConversionTest.java | 33 final CR TINY = CR.ONE.shiftRight(1078); field in ConversionTest 60 check(TINY.doubleValue() == 0.0d, "Tiny.doubleValue()"); in testConversions()
|
/external/llvm-project/llvm/test/CodeGen/Lanai/ |
D | codemodel.ll | 3 ; RUN: not --crash llc -march=lanai < %s -code-model=tiny 2>&1 | FileCheck -check-prefix CHECK-TINY… 6 ; CHECK-TINY: Target does not support the tiny CodeModel
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | codemodel.ll | 3 ; RUN: not --crash llc < %s -code-model=tiny 2>&1 | FileCheck -check-prefix CHECK-TINY %s 9 ; CHECK-TINY: Target does not support the tiny CodeModel
|
/external/llvm-project/clang/utils/analyzer/ |
D | ProjectMap.py | 43 TINY = auto() variable in Size
|
/external/llvm-project/flang/lib/Evaluate/ |
D | fold-real.cpp | 124 return Expr<T>{Scalar<T>::TINY()}; in FoldIntrinsicFunction()
|
/external/llvm-project/flang/include/flang/Evaluate/ |
D | real.h | 144 static constexpr Real TINY() { in TINY() function
|
/external/cldr/common/uca/ |
D | allkeys_CLDR.txt | 1760 10B3A ; [*01E2.0020.0002] # TINY TWO DOTS OVER ONE DOT PUNCTUATION 4646 29FE ; [.0BE8.0020.0002] # TINY 8028 1F78C ; [.1910.0020.0002] # BLACK TINY SQUARE 8039 1F797 ; [.191B.0020.0002] # BLACK TINY DIAMOND 8045 1F79D ; [.1921.0020.0002] # BLACK TINY LOZENGE
|
D | UCA_Rules.txt | 1753 < # 5.2 [Po] [01E2.0020.0002] U+10B3A TINY TWO DOTS OVER ONE DOT PUNCTUATION 4581 < ⧾ # 3.2 [Sm] [0BE8.0020.0002] U+29FE TINY 7949 < # 7.0 [So] [1910.0020.0002] U+1F78C BLACK TINY SQUARE 7960 < # 7.0 [So] [191B.0020.0002] U+1F797 BLACK TINY DIAMOND 7966 < # 7.0 [So] [1921.0020.0002] U+1F79D BLACK TINY LOZENGE
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | ApproximateWidth.txt | 253 10B3A; 0; # TINY TWO DOTS OVER ONE DOT PUNCTUATION
|