OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:new_to
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/compiler/
node.h
87
void ReplaceInput(int index, Node*
new_to
) {
91
if (old_to !=
new_to
) {
94
*input_ptr =
new_to
;
95
if (
new_to
)
new_to
->AppendUse(use);
101
void AppendInput(Zone* zone, Node*
new_to
);
102
void InsertInput(Zone* zone, int index, Node*
new_to
);
363
void UpdateTo(Node*
new_to
) {
365
if (old_to !=
new_to
) {
367
*input_ptr_ =
new_to
;
[
all
...]
node.cc
137
void Node::AppendInput(Zone* zone, Node*
new_to
) {
139
DCHECK_NOT_NULL(
new_to
);
146
*GetInputPtr(inline_count) =
new_to
;
150
new_to
->AppendUse(use);
174
*GetInputPtr(input_count) =
new_to
;
178
new_to
->AppendUse(use);
184
void Node::InsertInput(Zone* zone, int index, Node*
new_to
) {
192
ReplaceInput(index,
new_to
);
/external/v8/src/regexp/
jsregexp.cc
5708
int
new_to
= Max(to_replace.to(), to);
local
5716
int
new_to
= Max(list->at(end_pos - 1).to(), to);
local
[
all
...]
Completed in 133 milliseconds