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

  /art/runtime/verifier/
reg_type_cache-inl.h 37 inline const ConstantType& RegTypeCache::FromCat1Const(int32_t value, bool precise) {
47 const ConstantType& result = FromCat1Const(std::numeric_limits<jbyte>::min(), false);
54 const ConstantType& result = FromCat1Const(jchar_max, false);
60 const ConstantType& result = FromCat1Const(std::numeric_limits<jshort>::min(), false);
66 const ConstantType& result = FromCat1Const(std::numeric_limits<jint>::max(), false);
72 const ConstantType& result = FromCat1Const(std::numeric_limits<jbyte>::max(), false);
78 const ConstantType& result = FromCat1Const(std::numeric_limits<jshort>::max(), false);
reg_type_cache.h 70 const ConstantType& FromCat1Const(int32_t value, bool precise)
72 const ConstantType& FromCat2ConstLo(int32_t value, bool precise)
74 const ConstantType& FromCat2ConstHi(int32_t value, bool precise)
82 const ConstantType& Zero() SHARED_REQUIRES(Locks::mutator_lock_) {
85 const ConstantType& One() SHARED_REQUIRES(Locks::mutator_lock_) {
162 const ConstantType& FromCat1NonSmallConstant(int32_t value, bool precise)
reg_type.cc 458 const ConstantType* const_val = down_cast<const ConstantType*>(this);
595 const ConstantType& type1 = *down_cast<const ConstantType*>(this);
596 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type);
650 const ConstantType& type1 = *down_cast<const ConstantType*>(this);
651 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type)
    [all...]
reg_type.h 565 class ConstantType : public RegType {
567 ConstantType(uint32_t constant, uint16_t cache_id) SHARED_REQUIRES(Locks::mutator_lock_)
622 class PreciseConstType FINAL : public ConstantType {
626 : ConstantType(constant, cache_id) {}
633 class PreciseConstLoType FINAL : public ConstantType {
637 : ConstantType(constant, cache_id) {}
642 class PreciseConstHiType FINAL : public ConstantType {
646 : ConstantType(constant, cache_id) {}
651 class ImpreciseConstType FINAL : public ConstantType {
655 : ConstantType(constat, cache_id)
    [all...]
reg_type-inl.h 60 const ConstantType* const_val = down_cast<const ConstantType*>(this);
reg_type_cache.cc 558 const ConstantType& RegTypeCache::FromCat1NonSmallConstant(int32_t value, bool precise) {
563 (down_cast<const ConstantType*>(cur_entry))->ConstantValue() == value) {
564 return *down_cast<const ConstantType*>(cur_entry);
567 ConstantType* entry;
576 const ConstantType& RegTypeCache::FromCat2ConstLo(int32_t value, bool precise) {
580 (down_cast<const ConstantType*>(cur_entry))->ConstantValueLo() == value) {
581 return *down_cast<const ConstantType*>(cur_entry);
584 ConstantType* entry;
593 const ConstantType& RegTypeCache::FromCat2ConstHi(int32_t value, bool precise) {
597 (down_cast<const ConstantType*>(cur_entry))->ConstantValueHi() == value)
    [all...]
method_verifier.cc     [all...]
  /external/v8/src/
types.h 413 class ConstantType : public TypeBase {
423 return AsType(new (zone->New(sizeof(ConstantType)))
424 ConstantType(bitset, value));
427 static ConstantType* cast(Type* type) {
429 return static_cast<ConstantType*>(FromType(type));
432 ConstantType(BitsetType::bitset bitset, i::Handle<i::Object> object)
688 return ConstantType::New(value, zone);
796 ConstantType* AsConstant() { return ConstantType::cast(this); }
901 static bool Contains(RangeType* range, ConstantType* constant)
    [all...]
types.cc 59 bool Type::Contains(RangeType* lhs, ConstantType* rhs) {
    [all...]
  /external/tpm2/generator/
structure_generator_test.py 38 constant = structure_generator.ConstantType('UINT16', 'TPM_TYPE')
tpm_table.py 15 from structure_generator import ConstantType
790 tpm_obj = ConstantType(self._title_type, type_name)
  /external/clang/include/clang/Sema/
Overload.h 231 QualType &ConstantType) const;
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
SemaOverload.cpp 282 /// \param ConstantType If this is an NK_Constant_Narrowing conversion, the
288 QualType &ConstantType) const {
333 ConstantType = Initializer->getType();
364 ConstantType = Initializer->getType();
419 ConstantType = Initializer->getType();
    [all...]

Completed in 88 milliseconds