OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsBitset
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/
types.cc
96
if (this->
IsBitset
()) return BitsetType::Min(this->AsBitset());
114
if (this->
IsBitset
()) return BitsetType::Max(this->AsBitset());
139
if (type->
IsBitset
()) {
160
if (type->
IsBitset
()) return type->AsBitset();
525
if (that->
IsBitset
()) {
529
if (this->
IsBitset
()) {
551
if (that->
IsBitset
()) {
554
if (this->
IsBitset
()) {
650
if (this->
IsBitset
() && that->
IsBitset
()) return true
[
all
...]
types.h
535
if (this->
IsBitset
()) return Iterator<i::Map>();
539
if (this->
IsBitset
()) return Iterator<i::Object>();
581
bool
IsBitset
() { return Config::is_bitset(this); }
585
DCHECK(this->
IsBitset
());
[
all
...]
types-inl.h
45
DCHECK(t->
IsBitset
() || t->IsClass() || t->IsConstant() || t->IsRange() ||
/external/v8/test/cctest/
test-types.cc
35
return !
IsBitset
(t) && reinterpret_cast<intptr_t>(AsStruct(t)[0]) == tag;
37
static bool
IsBitset
(Type* t) { return reinterpret_cast<uintptr_t>(t) & 1; }
71
static bool
IsBitset
(Handle<HeapType> t) { return t->IsSmi(); }
117
this->
IsBitset
(type1) == this->
IsBitset
(type2) &&
121
(!this->
IsBitset
(type1) ||
135
if (this->
IsBitset
(type1) && this->
IsBitset
(type2)) {
142
if (this->
IsBitset
(type1) && this->
IsBitset
(type2))
[
all
...]
Completed in 9848 milliseconds