HomeSort by relevance Sort by last modified time
    Searched refs:LargestInt (Results 1 - 13 of 13) sorted by null

  /external/jsoncpp/include/json/
config.h 94 typedef int LargestInt;
106 typedef Int64 LargestInt;
value.h 132 typedef Json::LargestInt LargestInt;
138 static const LargestInt minLargestInt;
140 static const LargestInt maxLargestInt;
270 LargestInt asLargestInt() const;
479 LargestInt int_;
writer.h 197 std::string JSON_API valueToString(LargestInt value);
  /external/swiftshader/third_party/LLVM/lib/Target/
TargetData.cpp 273 int LargestInt = -1;
289 if (LargestInt == -1 ||
290 Alignments[i].TypeBitWidth > Alignments[LargestInt].TypeBitWidth)
291 LargestInt = i;
300 BestMatchIdx = LargestInt;
  /external/protobuf/conformance/third_party/jsoncpp/
json.h 231 typedef int LargestInt;
243 typedef Int64 LargestInt;
559 typedef Json::LargestInt LargestInt;
566 static const LargestInt minLargestInt;
568 static const LargestInt maxLargestInt;
726 LargestInt asLargestInt() const;
972 LargestInt int_;
    [all...]
jsoncpp.cpp 784 decoded = -Value::LargestInt(value);
786 decoded = Value::LargestInt(value);
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 462 int LargestInt = -1;
478 if (LargestInt == -1 ||
479 Alignments[i].TypeBitWidth > Alignments[LargestInt].TypeBitWidth)
480 LargestInt = i;
489 BestMatchIdx = LargestInt;
  /external/jsoncpp/src/lib_json/
json_value.cpp 52 const LargestInt Value::minLargestInt = LargestInt(~(LargestUInt(-1) / 2));
53 const LargestInt Value::maxLargestInt = LargestInt(LargestUInt(-1) / 2);
556 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
578 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
623 JSON_ASSERT_MESSAGE(isUInt64(), "LargestInt out of UInt64 range");
642 LargestInt Value::asLargestInt() const {
    [all...]
json_writer.cpp 39 std::string valueToString(LargestInt value) {
63 return valueToString(LargestInt(value));
json_reader.cpp 548 decoded = -Value::LargestInt(value);
550 decoded = Value::LargestInt(value);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenDAGPatterns.cpp 443 MVT::SimpleValueType LargestInt = MVT::Other;
446 LargestInt = Other.TypeVec[i];
450 if (isInteger(Other.TypeVec[i]) && Other.TypeVec[i] > LargestInt)
451 LargestInt = Other.TypeVec[i];
471 if (*TVI == LargestInt) {
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 615 APSInt LargestInt(IntTy->getBitWidth(), SrcIsUnsigned);
618 if (LargestFloat.convertToInteger(LargestInt, APFloat::rmTowardZero,
624 llvm::Value *Max = llvm::ConstantInt::get(VMContext, LargestInt);
628 llvm::Value *Min = llvm::ConstantInt::get(VMContext, -LargestInt);
    [all...]
  /external/jsoncpp/src/test_lib_json/
main.cpp 262 JSONTEST_ASSERT_EQUAL(Json::LargestInt(0), null_.asLargestInt());
    [all...]

Completed in 442 milliseconds