Searched refs:DoubleToBits (Results 1 - 10 of 10) sorted by relevance

/external/llvm/include/llvm/Support/
H A DEndianStream.h49 write(DoubleToBits(Val));
61 write(DoubleToBits(Val));
H A DMathExtras.h547 /// DoubleToBits - This function takes a double and returns the bit
551 inline uint64_t DoubleToBits(double Double) { function in namespace:llvm
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DSIMCCodeEmitter.cpp136 if (Val == DoubleToBits(0.5))
139 if (Val == DoubleToBits(-0.5))
142 if (Val == DoubleToBits(1.0))
145 if (Val == DoubleToBits(-1.0))
148 if (Val == DoubleToBits(2.0))
151 if (Val == DoubleToBits(-2.0))
154 if (Val == DoubleToBits(4.0))
157 if (Val == DoubleToBits(-4.0))
/external/llvm/lib/Target/AMDGPU/InstPrinter/
H A DAMDGPUInstPrinter.cpp343 if (Imm == DoubleToBits(0.0))
345 else if (Imm == DoubleToBits(1.0))
347 else if (Imm == DoubleToBits(-1.0))
349 else if (Imm == DoubleToBits(0.5))
351 else if (Imm == DoubleToBits(-0.5))
353 else if (Imm == DoubleToBits(2.0))
355 else if (Imm == DoubleToBits(-2.0))
357 else if (Imm == DoubleToBits(4.0))
359 else if (Imm == DoubleToBits(-4.0))
414 printImmediate64(DoubleToBits(O
[all...]
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DMathExtrasTest.cpp82 EXPECT_FLOAT_EQ(kValue, BitsToDouble(DoubleToBits(kValue)));
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h367 /// DoubleToBits - This function takes a double and returns the bit
371 inline uint64_t DoubleToBits(double Double) { function in namespace:llvm
/external/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp323 return MCOperand::createImm(Is32? FloatToBits(V) : DoubleToBits(V));
/external/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp1468 return (DoubleToBits(0.0) == Val) ||
1469 (DoubleToBits(1.0) == Val) ||
1470 (DoubleToBits(-1.0) == Val) ||
1471 (DoubleToBits(0.5) == Val) ||
1472 (DoubleToBits(-0.5) == Val) ||
1473 (DoubleToBits(2.0) == Val) ||
1474 (DoubleToBits(-2.0) == Val) ||
1475 (DoubleToBits(4.0) == Val) ||
1476 (DoubleToBits(-4.0) == Val);
/external/llvm/unittests/Support/
H A DMathExtrasTest.cpp195 EXPECT_DOUBLE_EQ(kValue, BitsToDouble(DoubleToBits(kValue)));
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
H A DSPUISelLowering.cpp1096 uint64_t dbits = DoubleToBits(FP->getValueAPF().convertToDouble());

Completed in 323 milliseconds