OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:double_constants
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/
assembler.cc
103
static void Construct(DoubleConstant*
double_constants
) {
104
double_constants
->min_int = kMinInt;
105
double_constants
->one_half = 0.5;
106
double_constants
->minus_zero = -0.0;
107
double_constants
->uint8_max_value = 255;
108
double_constants
->zero = 0.0;
109
double_constants
->canonical_non_hole_nan = OS::nan_value();
110
double_constants
->the_hole_nan = BitCast<double>(kHoleNanInt64);
111
double_constants
->negative_infinity = -V8_INFINITY;
116
double_constants
= LAZY_INSTANCE_INITIALIZER
member in namespace:v8::internal
[
all
...]
/external/chromium_org/v8/src/
assembler.cc
104
static DoubleConstant
double_constants
;
member in namespace:v8::internal
903
double_constants
.min_int = kMinInt;
904
double_constants
.one_half = 0.5;
905
double_constants
.minus_one_half = -0.5;
906
double_constants
.minus_zero = -0.0;
907
double_constants
.uint8_max_value = 255;
908
double_constants
.zero = 0.0;
909
double_constants
.canonical_non_hole_nan = OS::nan_value();
910
double_constants
.the_hole_nan = BitCast<double>(kHoleNanInt64);
911
double_constants
.negative_infinity = -V8_INFINITY
[
all
...]
Completed in 582 milliseconds