OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inline_count
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/compiler/
node.cc
141
int
inline_count
= InlineCountField::decode(bit_field_);
local
143
if (
inline_count
< inline_capacity) {
145
bit_field_ = InlineCountField::update(bit_field_,
inline_count
+ 1);
146
*GetInputPtr(
inline_count
) = new_to;
147
Use* use = GetUsePtr(
inline_count
);
148
use->bit_field_ = Use::InputIndexField::encode(
inline_count
) |
155
if (
inline_count
!= kOutlineMarker) {
338
Node::Node(NodeId id, const Operator* op, int
inline_count
, int inline_capacity)
342
bit_field_(IdField::encode(id) | InlineCountField::encode(
inline_count
) |
347
DCHECK(
inline_count
== kOutlineMarker || inline_count <= inline_capacity)
[
all
...]
node.h
242
Node(NodeId id, const Operator* op, int
inline_count
, int inline_capacity);
411
int
inline_count
= InlineCountField::decode(bit_field_);
local
412
if (
inline_count
!= kOutlineMarker) {
414
inline_count
);
423
int
inline_count
= InlineCountField::decode(bit_field_);
local
424
if (
inline_count
!= kOutlineMarker) {
425
return Inputs(inputs_.inline_,
inline_count
);
Completed in 3373 milliseconds