/external/blktrace/btt/ |
bno_dump.c | 24 FILE *rfp, *wfp, *cfp; member in struct:bno_dump 60 bdp->cfp = bno_dump_open(device, 'c'); 79 if (bdp->cfp) 80 bno_dump_write(bdp->cfp, iop);
|
seek.c | 37 FILE *rfp, *wfp, *cfp, *sps_fp; member in struct:seeki 214 sip->cfp = seek_open(str, 'c'); 261 if (sip->cfp) 262 fprintf(sip->cfp, "%15.9lf %13lld %c\n", tstamp, dist, rw);
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/ |
p2.cpp | 19 // const float *cfp = cta;
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
basic.cpp | 7 void test_f0(int *ip, float const *cfp) { 9 A<const float> a1 = f0(cfp);
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DebugLocEntry.h | 37 Value(const DIExpression *Expr, const ConstantFP *CFP) 39 Constant.CFP = CFP; 60 const ConstantFP *CFP; 72 const ConstantFP *getConstantFP() const { return Constant.CFP; } 165 return A.Constant.CFP == B.Constant.CFP;
|
AsmPrinter.cpp | [all...] |
/external/llvm/lib/Target/X86/ |
X86TargetObjectFile.cpp | 139 } else if (const auto *CFP = dyn_cast<ConstantFP>(C)) { 140 return APIntToHexString(CFP->getValueAPF().bitcastToAPInt());
|
/external/mesa3d/src/gallium/drivers/radeon/ |
AMDGPUISelLowering.cpp | 293 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) { 294 return CFP->isExactlyValue(1.0); 304 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) { 305 return CFP->getValueAPF().isZero();
|
/external/llvm/include/llvm/CodeGen/ |
MachineOperand.h | 156 const ConstantFP *CFP; // For MO_FPImmediate. 422 return Contents.CFP; 513 void setFPImm(const ConstantFP *CFP) { 515 Contents.CFP = CFP; 591 static MachineOperand CreateFPImm(const ConstantFP *CFP) { 593 Op.Contents.CFP = CFP;
|
/external/llvm/lib/IR/ |
Constants.cpp | 47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) 48 return CFP->isZero() && CFP->isNegative(); 73 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) 74 return CFP->isZero(); 97 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) 98 return CFP->isZero() && !CFP->isNegative(); 112 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) 113 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue() [all...] |
AsmWriter.cpp | [all...] |
/cts/tools/cfassembler/src/dxconvext/ |
ClassFileParser.java | 56 ClassFileParser cfp = new ClassFileParser(); local 57 cfp.process(args[0], args[1], args[2]);
|
/external/llvm/lib/Target/CppBackend/ |
CPPBackend.cpp | 141 void printCFP(const ConstantFP* CFP); 220 void CppWriter::printCFP(const ConstantFP *CFP) { 222 APFloat APF = APFloat(CFP->getValueAPF()); // copy 223 if (CFP->getType() == Type::getFloatTy(CFP->getContext())) 234 if (CFP->getType() == Type::getDoubleTy(CFP->getContext())) 241 std::string StrVal = ftostr(CFP->getValueAPF()); 251 (CFP->isExactlyValue(atof(StrVal.c_str())))) { 252 if (CFP->getType() == Type::getDoubleTy(CFP->getContext()) [all...] |
/external/wpa_supplicant_8/src/utils/ |
radiotap.h | 228 * during CFP
|
/external/llvm/lib/Target/AArch64/ |
AArch64FastISel.cpp | 232 unsigned materializeFP(const ConstantFP *CFP, MVT VT); 353 unsigned AArch64FastISel::materializeFP(const ConstantFP *CFP, MVT VT) { 356 if (CFP->isNullValue()) 357 return fastMaterializeFloatZero(CFP); 362 const APFloat Val = CFP->getValueAPF(); 382 .addImm(CFP->getValueAPF().bitcastToAPInt().getZExtValue()); 394 unsigned Align = DL.getPrefTypeAlignment(CFP->getType()); 396 Align = DL.getTypeAllocSize(CFP->getType()); 398 unsigned CPI = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align); 471 else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C) [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXAsmPrinter.cpp | [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineMulDivRem.cpp | 436 ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(C->getAggregateElement(I)); 437 if (!CFP || !CFP->getValueAPF().isFiniteNonZero()) 451 ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(C->getAggregateElement(I)); 452 if (!CFP || !CFP->getValueAPF().isNormal()) [all...] |
InstCombineCasts.cpp | [all...] |
InstCombineAddSub.cpp | 498 if (ConstantFP *CFP = dyn_cast<ConstantFP>(NewAddSub)) { 499 const APFloat &F = CFP->getValueAPF(); [all...] |
/system/ca-certificates/files/ |
119afc2e.0 | 23 CfP+JmeaUOTDBS8rNXiRTHyoERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+g
|
/external/llvm/lib/Target/Mips/ |
MipsFastISel.cpp | 143 unsigned materializeFP(const ConstantFP *CFP, MVT VT); 328 unsigned MipsFastISel::materializeFP(const ConstantFP *CFP, MVT VT) { 331 int64_t Imm = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); 397 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) 398 return (UnsupportedFPMode) ? 0 : materializeFP(CFP, VT); [all...] |
/frameworks/compile/slang/BitWriter_2_9/ |
BitcodeWriter.cpp | 875 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { 877 Type *Ty = CFP->getType(); 879 Record.push_back(CFP->getValueAPF().bitcastToAPInt().getZExtValue()); 883 APInt api = CFP->getValueAPF().bitcastToAPInt(); [all...] |
/frameworks/compile/slang/BitWriter_2_9_func/ |
BitcodeWriter.cpp | 873 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { 875 Type *Ty = CFP->getType(); [all...] |
/frameworks/compile/slang/BitWriter_3_2/ |
BitcodeWriter.cpp | [all...] |
/external/llvm/lib/Analysis/ |
InstructionSimplify.cpp | [all...] |