Searched refs:convert (Results 251 - 275 of 393) sorted by path

<<111213141516

/external/libxml2/
H A Dxmlcatalog.c39 static int convert = 0; variable
363 } else if ((!strcmp(argv[i], "-convert")) ||
364 (!strcmp(argv[i], "--convert"))) {
365 convert++;
417 if (convert)
585 if ((!sgml) && ((add) || (del) || (create) || (convert))) {
/external/libyuv/
H A DAndroid.mk9 files/source/convert.cc \
/external/lldb/test/pexpect-2.4/examples/
H A Drippy.py5 This script helps to convert video from one format to another.
121 'video_source_filename':("dvd://1", 'video source filename?', """This is the filename of the video that you want to convert from.
215 # This is the important convert control function
217 def convert (options): function
222 This options dictionary could be used again to repeat the convert process
860 # convert all flag options to 0 or 1
965 convert (options)
969 convert (options)
/external/llvm/include/llvm/ADT/
H A DAPFloat.h321 opStatus convert(const fltSemantics &, roundingMode, bool *);
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h262 /// Normally SDUse will just implicitly convert to an SDValue that it holds.
1394 Tmp.convert(Value->getValueAPF().getSemantics(),
/external/llvm/include/llvm/IR/
H A DConstants.h148 /// the signed version avoids callers having to convert a signed quantity
285 FV.convert(Val.getSemantics(), APFloat::rmNearestTiesToEven, &ignored);
979 /// @brief Return true if this is a convert constant expression
1029 // warnings about whether to convert Idx to ArrayRef<Constant *> or
1046 // warnings about whether to convert Idx to ArrayRef<Constant *> or
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp70 // If the vector is a vector of floating point, convert it to vector of int
104 // If this is a scalar -> vector cast, convert the input into a <1 x scalar>
146 // Okay, we know the destination is integer, if the input is FP, convert
659 // PtrToInt may change the bitwidth so we have convert to the right size
1311 APF.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &unused);
1406 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &unused);
1419 Val.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &lost);
1561 Val.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &lost);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp2389 /// sanity. PFS is used to convert function-local operands of metadata (since
3012 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
3015 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp661 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp79 assert(VT.isFloatingPoint() && "Can only convert between FP types");
81 // convert modifies in place, so make a copy.
84 (void) Val2.convert(SelectionDAG::EVTToAPFloatSemantics(VT),
97 // Look through a bit convert.
145 // Look through a bit convert.
1253 apf.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven,
2748 (void)V.convert(EVTToAPFloatSemantics(VT),
3426 (void)V.convert(EVTToAPFloatSemantics(VT),
4681 "Cannot convert from FP to Int or Int -> FP!");
4683 "Cannot use trunc store to convert t
[all...]
/external/llvm/lib/IR/
H A DAsmWriter.cpp819 // Halves and floats are represented in ASCII IR as double, convert.
821 apf.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
H A DConstantFold.cpp578 Val.convert(DestTy->isHalfTy() ? APFloat::IEEEhalf :
H A DConstants.cpp598 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
1219 // convert modifies in place, so make a copy.
1230 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1236 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1244 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1592 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1606 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1620 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1634 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1646 assert((fromVec == toVec) && "Cannot convert fro
[all...]
/external/llvm/lib/Support/
H A DAPFloat.cpp988 status = extendedAddend.convert(extendedSemantics, rmTowardZero, &ignored);
1950 /// APFloat::convert - convert a value of one floating point type to another.
1958 APFloat::convert(const fltSemantics &toSemantics,
2909 fs = extended.convert(extendedSemantics, rmNearestTiesToEven, &losesInfo);
2914 fs = u.convert(IEEEdouble, rmNearestTiesToEven, &losesInfo);
2920 // just set the second double to zero. Otherwise, re-convert back to
2922 // convert exactly to double.
2924 fs = u.convert(extendedSemantics, rmNearestTiesToEven, &losesInfo);
2930 fs = v.convert(IEEEdoubl
[all...]
/external/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc90 MakeErrMsg(errMsg, std::string(filename) + ": Can't convert to UTF-16: ");
H A DProgram.inc231 MakeErrMsg(ErrMsg, "Unable to convert environment variable to UTF-16");
296 std::string("Unable to convert application name to UTF-16"));
304 std::string("Unable to convert command-line to UTF-16"));
/external/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp203 /// Cmo-convert the last block passed to canConvertCmp(), assuming
205 void convert(SmallVectorImpl<MachineBasicBlock *> &RemovedBlocks);
342 DEBUG(dbgs() << "Can't convert compare with live destination: " << *I);
563 void SSACCmpConv::convert(SmallVectorImpl<MachineBasicBlock *> &RemovedBlocks) { function in class:SSACCmpConv
591 llvm_unreachable("Cannot convert Head branch");
698 llvm_unreachable("Cannot convert Head branch");
786 // convert() removes CmpBB which was previously dominated by Head.
883 CmpConv.convert(RemovedBlocks);
H A DAArch64ISelLowering.cpp3166 CmpVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &Lossy);
3913 // Use the default implementation in TargetLowering to convert the register
5528 // source operand, so we may have to convert it here before inserting.
7138 // we can convert that DUP into another extract_high (of a bigger DUP), which
7332 // If we get a splat of a scalar convert this vector store to a store of
/external/llvm/lib/Target/ARM/
H A DARMMCInstLower.cpp107 Val.convert(APFloat::IEEEdouble, APFloat::rmTowardZero, &ignored);
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp221 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp2045 APF.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &ignored);
2049 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
H A DNVPTXMCExpr.cpp33 APF.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &Ignored);
38 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &Ignored);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp401 // With SSE3 we can use fisttpll to convert to a signed i64; without
769 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
1044 // sequence to convert from v2i32 to v2f32.
1940 // If we don't have SSE2 available, convert to v4f32 so the generated
3654 /// \brief Returns true if it is beneficial to convert a load of a constant
6581 // convert it to a vector with movd (S2V+shuffle to zero extend).
6719 // If element VT is < 32 bits, convert it to inserts into a zero vector.
18993 /// generation and convert it from being a bunch of shuffles and extracts
19003 // Detect whether we are trying to convert from mmx to i32 and the bitcast
19370 // lowering on AVX-512. In this case we convert i
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp452 // type. Only do this if the dest type is a simple type, don't convert the
553 // If Op1C some other power of two, convert:
779 // type. Only do this if the dest type is a simple type, don't convert the
810 // types and if the sizes are just right we can convert this into a logical
1059 // type. Only do this if the dest type is a simple type, don't convert the
1136 (void)F.convert(Sem, APFloat::rmNearestTiesToEven, &losesInfo);
1261 // in whichever source type is larger, then convert to the
1455 // GEP computes a constant offset, see if we can convert these three
H A DInstCombineCompares.cpp3562 F.convert(*Sem, APFloat::rmNearestTiesToEven, &Lossy);
3565 // that's OK to convert.

Completed in 615 milliseconds

<<111213141516