/external/eigen/Eigen/src/Core/ |
MathFunctions.h | 543 eigen_assert(!NumTraits<Scalar>::IsSigned || y >= 0); 601 return run(Scalar(NumTraits<Scalar>::IsSigned ? -1 : 0), Scalar(1)); 665 return run(Scalar(NumTraits<Scalar>::IsSigned ? -10 : 0), Scalar(10)); 672 Scalar offset = NumTraits<Scalar>::IsSigned ? Scalar(1 << (rand_bits-1)) : Scalar(0);
|
/external/eigen/test/ |
integer_types.cpp | 57 VERIFY(int(NumTraits<Scalar>::IsSigned) == is_signed);
|
/external/eigen/unsupported/Eigen/ |
AdolcForward | 90 IsSigned = 1,
|
MPRealSupport | 70 IsSigned = 1,
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCResultSetMetaData.java | 184 public boolean isSigned(int column) throws java.sql.SQLException {
|
/external/llvm/include/llvm/ADT/ |
PackedVector.h | 22 template <typename T, unsigned BitNum, typename BitVectorTy, bool isSigned>
|
/external/llvm/lib/CodeGen/ |
IntrinsicLowering.cpp | 468 /* isSigned */ false); 479 /* isSigned */ false); 490 /* isSigned */ false); 496 /* isSigned */ false);
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTest.java | 260 public final boolean isSigned() {
|
/libcore/luni/src/main/java/java/sql/ |
ParameterMetaData.java | 188 public boolean isSigned(int paramIndex) throws SQLException;
|
ResultSetMetaData.java | 269 public boolean isSigned(int column) throws SQLException;
|
/external/valgrind/main/coregrind/m_debuginfo/ |
UNUSED_STABS.txt | 114 Bool issigned; /* signed or not */ 251 SymType *ML_(st_mkint)(SymType *st, UInt size, Bool isSigned) 259 st->u.t_scalar.issigned = isSigned; 272 st->u.t_scalar.issigned = True; [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeTypes.cpp | [all...] |
/external/llvm/include/llvm/MC/ |
MCAssembler.h | 457 /// IsSigned - True if this is a sleb128, false if uleb128. 458 bool IsSigned; 464 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); } 471 bool isSigned() const { return IsSigned; } [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCompares.cpp | 46 bool IsSigned) { 47 if (!IsSigned) 58 Constant *In2, bool IsSigned = false) { 67 IsSigned)) 75 IsSigned); 80 bool IsSigned) { 81 if (!IsSigned) 93 Constant *In2, bool IsSigned = false) { 102 IsSigned)) 110 IsSigned); [all...] |
InstCombine.h | 372 bool isSigned, bool Inside); 380 Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
|
/external/llvm/include/llvm/IR/ |
Constants.h | 70 static Constant *get(Type *Ty, uint64_t V, bool isSigned = false); 74 /// to fit the type, unless isSigned is true, in which case the value will 79 bool isSigned = false); 185 bool isMaxValue(bool isSigned) const { 186 if (isSigned) 197 bool isMinValue(bool isSigned) const { 198 if (isSigned) [all...] |
/external/llvm/include/llvm/Support/ |
ConstantFolder.h | 163 bool isSigned) const { 164 return ConstantExpr::getIntegerCast(C, DestTy, isSigned);
|
NoFolder.h | 222 bool isSigned) const { 223 return CastInst::CreateIntegerCast(C, DestTy, isSigned);
|
TargetFolder.h | 174 bool isSigned) const { 177 return Fold(ConstantExpr::getIntegerCast(C, DestTy, isSigned));
|
/external/smack/src/org/xbill/DNS/ |
Message.java | 285 isSigned() { 573 if (isSigned()) {
|
/external/clang/lib/Frontend/ |
InitPreprocessor.cpp | 169 /// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL). 171 StringRef ValSuffix, bool isSigned, 173 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth) 175 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix); [all...] |
/external/llvm/lib/Support/ |
APFloat.cpp | [all...] |
/system/core/libcorkscrew/arch-x86/ |
backtrace-x86.c | 191 bool issigned = true; local 203 issigned = false; 220 if (issigned) { 228 if (issigned) { [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
AMDILPeepholeOptimizer.cpp | 742 bool isSigned = ShiftInst->isArithmeticShift(); 783 maskVals.push_back(ConstantInt::get(scalarType, maskVal, isSigned)); 784 shiftVals.push_back(ConstantInt::get(scalarType, shiftVal, isSigned)); 809 newMaskConst = ConstantInt::get(aType, maskVal, isSigned); 810 shiftValConst = ConstantInt::get(aType, shiftVal, isSigned); [all...] |
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
TextFormat.java | [all...] |