HomeSort by relevance Sort by last modified time
    Searched full:cfp (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium_org/chrome_frame/test/
chrome_tab_mocks.h 31 HRESULT Initialize(MockIChromeFramePrivileged** cfp) {
32 *cfp = this;
  /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/chromium_org/third_party/sqlite/src/tool/
lemon.c 256 struct config *cfp; /* All configurations in this set */ member in struct:state
269 struct config *cfp; /* The configuration to which linked */ member in struct:plink
810 struct config *cfp, *bp; local
830 cfp = Configlist_return();
831 Configlist_eat(cfp);
836 cfp = Configlist_return(); /* Get a pointer to the config list */
840 stp->cfp = cfp; /* Remember the configuration closure */
870 struct config *cfp; /* For looping thru the config closure of "stp" */ local
873 struct symbol *sp; /* Symbol following the dot in configuration "cfp" */
924 struct config *cfp, *other; local
959 struct config *cfp; local
995 struct config *cfp; local
1201 struct config *cfp, model; local
1226 struct config *cfp, model; local
1254 struct config *cfp, *newcfp; local
2942 struct config *cfp; local
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 95 unsigned PPCMaterializeFP(const ConstantFP *CFP, MVT VT);
117 unsigned PPCFastISel::PPCMaterializeFP(const ConstantFP *CFP, MVT VT) {
123 unsigned Align = TD.getPrefTypeAlignment(CFP->getType());
125 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
284 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
285 return PPCMaterializeFP(CFP, VT);
  /external/chromium_org/third_party/mesa/src/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/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/lib/IR/
Constants.cpp 47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48 return CFP->isZero() && CFP->isNegative();
68 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
69 return CFP->isZero();
81 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
82 return CFP->isZero() && !CFP->isNegative();
94 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
95 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue()
    [all...]
AsmWriter.cpp 777 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
778 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle ||
779 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble) {
786 bool isHalf = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEhalf;
787 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
788 bool isInf = CFP->getValueAPF().isInfinity();
789 bool isNaN = CFP->getValueAPF().isNaN();
791 double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
792 CFP->getValueAPF().convertToFloat();
817 APFloat apf = CFP->getValueAPF()
    [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 136 void printCFP(const ConstantFP* CFP);
215 void CppWriter::printCFP(const ConstantFP *CFP) {
217 APFloat APF = APFloat(CFP->getValueAPF()); // copy
218 if (CFP->getType() == Type::getFloatTy(CFP->getContext()))
229 if (CFP->getType() == Type::getDoubleTy(CFP->getContext()))
236 std::string StrVal = ftostr(CFP->getValueAPF());
246 (CFP->isExactlyValue(atof(StrVal.c_str())))) {
247 if (CFP->getType() == Type::getDoubleTy(CFP->getContext())
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 450 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
451 return CFP->isExactlyValue(1.0);
460 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
461 return CFP->getValueAPF().isZero();
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 153 const ConstantFP *CFP; // For MO_FPImmediate.
414 return Contents.CFP;
554 static MachineOperand CreateFPImm(const ConstantFP *CFP) {
556 Op.Contents.CFP = CFP;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 316 ConstantFP *CFP = dyn_cast<ConstantFP>(I->getOperand(0));
317 if (CFP && CFP->isExactlyValue(0.5)) {
321 CFP = dyn_cast<ConstantFP>(I->getOperand(1));
322 if (CFP && CFP->isExactlyValue(0.5))
    [all...]
InstCombineCasts.cpp     [all...]
  /external/tcpdump/
ieee802_11_radio.h 194 * during CFP
  /external/wpa_supplicant_8/src/utils/
radiotap.h 216 * during CFP
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 81 const ConstantFP *CFP;
111 Constants.CFP = FPtr;
136 const ConstantFP *getConstantFP() const { return Constants.CFP; }
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 333 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(V))
334 return CFP->isExactlyValue(Val);
337 if (ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(C->getSplatValue()))
338 return CFP->isExactlyValue(Val);
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /libcore/luni/src/main/files/cacerts/
119afc2e.0 23 CfP+JmeaUOTDBS8rNXiRTHyoERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+g

Completed in 1304 milliseconds

1 2 3