OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsBitset
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/
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
...]
/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 292 milliseconds