OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:unop
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/v8/src/compiler/
simplified-operator-reducer-unittest.cc
137
std::ostream& operator<<(std::ostream& os, const UnaryOperator&
unop
) {
138
return os <<
unop
.constructor_name;
163
const UnaryOperator&
unop
= GetParam();
local
165
graph()->NewNode((simplified()->*
unop
.constructor)(), Parameter(0)));
machine-operator-reducer-unittest.cc
210
std::ostream& operator<<(std::ostream& os, const UnaryOperator&
unop
) {
211
return os <<
unop
.constructor_name;
233
const UnaryOperator
unop
= GetParam();
local
235
Reduce(graph()->NewNode((machine()->*
unop
.constructor)(), Parameter(0)));
/external/chromium_org/v8/test/cctest/compiler/
test-machine-operator-reducer.cc
55
unop
(NULL),
68
const Operator*
unop
;
member in class:ReducerTester
test-js-typed-lowering.cc
22
unop
(NULL),
36
const Operator*
unop
;
member in class:JSTypedLoweringTester
104
return reduce(
Unop
(op, Parameter(input_type)));
116
Node*
Unop
(const Operator* op, Node* input) {
451
Node* convert = R.
Unop
(R.javascript.ToNumber(), n);
791
Node* orig = R.
Unop
(opnot, R.Parameter(kJSTypes[i]));
815
Node* ton = R.
Unop
(R.javascript.ToNumber(), p0);
[
all
...]
Completed in 705 milliseconds