OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Bitset
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
types.h
142
// Note that the
bitset
representation is closed under both Union and Intersect.
154
// Values for
bitset
types
270
// static
bitset
as_bitset(Type*);
273
// static Type* from_bitset(
bitset
);
274
// static Handle<Type>::type from_bitset(
bitset
, Region*);
293
typedef uint32_t
bitset
; // Internal
typedef in class:v8::internal::TypeImpl
508
bitset
AsBitset() {
510
return static_cast<BitsetType*>(this)->
Bitset
();
516
bitset
BitsetGlb() { return BitsetType::Glb(this); }
517
bitset
BitsetLub() { return BitsetType::Lub(this);
[
all
...]
/external/chromium_org/v8/test/cctest/
test-types.cc
15
typedef uint32_t
bitset
;
typedef
29
static
bitset
AsBitset(Type* t) {
30
return static_cast<
bitset
>(reinterpret_cast<uintptr_t>(t) ^ 1u);
60
static
bitset
AsBitset(Handle<HeapType> t) {
61
return static_cast<
bitset
>(reinterpret_cast<uintptr_t>(*t));
73
static
bitset
Glb(Handle<HeapType> type) { return Glb(*type); }
74
static
bitset
Lub(Handle<HeapType> type) { return Lub(*type); }
263
case 0: { //
bitset
409
void
Bitset
() {
414
CHECK(
bitset
(0) == this->AsBitset(T.None))
[
all
...]
Completed in 40 milliseconds