OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:REPRESENTATION
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
types.h
24
// Types consist of two dimensions: semantic (value range) and
representation
.
69
// For the
representation
axis, the following holds:
88
//
representation
types initially include all semantic ranges. Representations
142
// Note that the bitset
representation
is closed under both Union and Intersect.
157
V(
Representation
, 0xff800000u) \
160
#define
REPRESENTATION
(k) ((k) & BitsetType::kRepresentation)
183
V(Null, 1u << 1 |
REPRESENTATION
(kTaggedPtr)) \
184
V(Undefined, 1u << 2 |
REPRESENTATION
(kTaggedPtr)) \
185
V(Boolean, 1u << 3 |
REPRESENTATION
(kTaggedPtr)) \
186
V(UnsignedSmall, 1u << 4 |
REPRESENTATION
(kTagged | kUntaggedNumber))
[
all
...]
types.cc
577
// This checks the invariants of the union
representation
:
985
case
REPRESENTATION
(kAny): return "Any";
987
case
REPRESENTATION
(k##type): return #type;
1013
#define BITSET_CONSTANT(type, value)
REPRESENTATION
(k##type),
[
all
...]
Completed in 664 milliseconds