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

1 2 3 4 5 6 7 8

  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 21 Value.isSigned() && Value.isNegative())
26 if (Value.isSigned() && !IsUnsigned)
36 if (Value.isSigned())
45 if (Value.isSigned() && Value.isNegative())
BasicValueFactory.cpp 175 if (V2.isSigned() && V2.isNegative())
193 if (V2.isSigned() && V2.isNegative())
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
copyvertex.inl 95 template <bool isSigned, bool normalized, bool toFloat>
104 if (isSigned)
153 if (isSigned)
174 template <bool isSigned, bool normalized, bool toFloat>
180 if (isSigned)
233 if (isSigned)
262 template <bool isSigned, bool normalized, bool toFloat>
281 priv::CopyPackedRGB<isSigned, normalized, toFloat>( (packedValue >> redShift) & rgbMask, offsetOutput + (0 * outputComponentSize));
282 priv::CopyPackedRGB<isSigned, normalized, toFloat>( (packedValue >> greenShift) & rgbMask, offsetOutput + (1 * outputComponentSize));
283 priv::CopyPackedRGB<isSigned, normalized, toFloat>( (packedValue >> blueShift) & rgbMask, offsetOutput + (2 * outputCompone (…)
    [all...]
copyvertex.h 28 template <bool isSigned, bool normalized, bool toFloat>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest     [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 385 bool isSigned;
403 isSigned = false;
404 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
407 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
410 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
413 APInt(8, 255, isSigned).toString(S, 16, isSigned, true)
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
StrictJarFile.java 51 private final boolean isSigned;
68 isSigned = verifier.readCertificates() && verifier.isSignedJar();
98 if (isSigned) {
117 if (isSigned) {
143 if (isSigned) {
  /external/chromium_org/third_party/WebKit/Source/platform/
CheckedInt.h 193 struct IsSigned
203 IsSigned<IntegerType>::value
234 IsSigned<IntegerType>::value
277 bool IsTSigned = IsSigned<T>::value,
278 bool IsUSigned = IsSigned<U>::value>
303 bool IsTSigned = IsSigned<T>::value,
304 bool IsUSigned = IsSigned<U>::value,
375 return IsSigned<T>::value
391 return IsSigned<T>::value
397 bool IsSigned = IsSigned<T>::value
    [all...]
  /external/llvm/lib/Transforms/Utils/
CmpInstAnalysis.cpp 93 return (CmpInst::isSigned(p1) == CmpInst::isSigned(p2)) ||
94 (CmpInst::isSigned(p1) && ICmpInst::isEquality(p2)) ||
95 (CmpInst::isSigned(p2) && ICmpInst::isEquality(p1));
SimplifyIndVar.cpp 82 bool IsSigned);
195 bool IsSigned) {
211 if ((!IsSigned || SE->isKnownNonNegative(S)) &&
212 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
219 if (IsSigned && !SE->isKnownNonNegative(LessOne))
222 if (!SE->isKnownPredicate(IsSigned ?
252 bool IsSigned = Rem->getOpcode() == Instruction::SRem;
253 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
254 eliminateIVRemainder(Rem, IVOperand, IsSigned);
  /external/llvm/include/llvm/ADT/
APSInt.h 49 bool isSigned() const { return !IsUnsigned; }
56 APInt::toString(Str, Radix, isSigned());
61 return APInt::toString(Radix, isSigned());
263 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
274 if (I1.isSigned()) {
300 I.print(OS, I.isSigned());
  /external/clang/lib/CodeGen/
CGRecordLayout.h 75 unsigned IsSigned : 1;
85 : Offset(), Size(), IsSigned(), StorageSize(), StorageAlignment() {}
87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned,
89 : Offset(Offset), Size(Size), IsSigned(IsSigned),
  /external/clang/test/CodeGen/
bitfield-2.c 17 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:24 IsSigned:1 StorageSize:24 StorageAlignment:1>
57 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:10 IsSigned:1 StorageSize:24 StorageAlignment:1>
58 // CHECK-RECORD: <CGBitFieldInfo Offset:10 Size:10 IsSigned:1 StorageSize:24 StorageAlignment:1>
105 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:3 IsSigned:0 StorageSize:8 StorageAlignment:1>
277 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:5 IsSigned:1 StorageSize:8 StorageAlignment:4>
278 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:29 IsSigned:1 StorageSize:32 StorageAlignment:16>
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 182 /// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL).
184 StringRef ValSuffix, bool isSigned,
186 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
188 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);
219 bool IsSigned = TI.isTypeSigned(Ty);
224 Ty = IsSigned ? TI.getInt64Type() : TI.getIntTypeByWidth(64, false);
226 const char *Prefix = IsSigned ? "__INT" : "__UINT";
240 bool IsSigned = TI.isTypeSigned(Ty);
245 Ty = IsSigned ? TI.getInt64Type() : TI.getIntTypeByWidth(64, false);
247 const char *Prefix = IsSigned ? "__INT" : "__UINT"
    [all...]
  /external/eigen/Eigen/src/Core/
NumTraits.h 42 * \li An enum value \a IsSigned. It is equal to \c 1 if \a T is a signed type and to 0 if \a T is unsigned.
55 IsSigned = std::numeric_limits<T>::is_signed,
137 IsSigned = NumTraits<Scalar>::IsSigned,
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCInst.cpp 151 unsigned isSigned = (F >> HexagonII::ExtentSignedPos)
156 if (isSigned) // if value is signed
166 unsigned isSigned = (F >> HexagonII::ExtentSignedPos)
171 if (isSigned) // if value is signed
  /external/clang/lib/Basic/
TargetInfo.cpp 157 unsigned BitWidth, bool IsSigned) const {
159 return IsSigned ? SignedChar : UnsignedChar;
161 return IsSigned ? SignedShort : UnsignedShort;
163 return IsSigned ? SignedInt : UnsignedInt;
165 return IsSigned ? SignedLong : UnsignedLong;
167 return IsSigned ? SignedLongLong : UnsignedLongLong;
172 bool IsSigned) const {
174 return IsSigned ? SignedChar : UnsignedChar;
176 return IsSigned ? SignedShort : UnsignedShort;
178 return IsSigned ? SignedInt : UnsignedInt
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 102 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
104 unsigned NumOps, bool isSigned, SDLoc dl);
107 SDNode *Node, bool isSigned);
112 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
127 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
129 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
131 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 48 LLVMBool IsSigned) {
50 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
80 LLVMBool IsSigned) {
82 if (IsSigned)
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
mct.c 233 OPJ_UINT32 isSigned)
246 OPJ_ARG_NOT_USED(isSigned);
286 OPJ_UINT32 isSigned)
297 OPJ_ARG_NOT_USED(isSigned);
mct.h 123 @param isSigned tells if the data is signed
131 OPJ_UINT32 isSigned);
  /external/llvm/include/llvm-c/
ExecutionEngine.h 57 LLVMBool IsSigned);
66 LLVMBool IsSigned);
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 131 bool SelectIToFP(const Instruction *I, bool IsSigned);
132 bool SelectFPToI(const Instruction *I, bool IsSigned);
162 unsigned SrcReg, bool IsSigned);
163 unsigned PPCMoveToFPReg(MVT VT, unsigned SrcReg, bool IsSigned);
875 bool IsSigned) {
880 if (!PPCEmitIntExt(MVT::i32, SrcReg, MVT::i64, TmpReg, !IsSigned))
899 if (!IsSigned) {
910 if (!PPCEmitLoad(MVT::f64, ResultReg, Addr, RC, !IsSigned, LoadOpc))
917 bool PPCFastISel::SelectIToFP(const Instruction *I, bool IsSigned) {
943 if (!IsSigned && !PPCSubTarget->hasFPCVT()
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 155 bool SelectIToFP(const Instruction *I, bool isSigned);
156 bool SelectFPToI(const Instruction *I, bool isSigned);
157 bool SelectDiv(const Instruction *I, bool isSigned);
158 bool SelectRem(const Instruction *I, bool isSigned);
    [all...]

Completed in 925 milliseconds

1 2 3 4 5 6 7 8