Home | History | Annotate | Download | only in src

Lines Matching refs:AllocateHeapNumber

1419 Object* Heap::AllocateHeapNumber(double value, PretenureFlag pretenure) {
1434 Object* Heap::AllocateHeapNumber(double value) {
1436 if (always_allocate()) return AllocateHeapNumber(value, TENURED);
1438 // This version of AllocateHeapNumber is optimized for
1540 obj = AllocateHeapNumber(-0.0, TENURED);
1545 obj = AllocateHeapNumber(OS::nan_value(), TENURED);
1749 return new_object ? AllocateHeapNumber(-0.0, pretenure)
1754 ? AllocateHeapNumber(OS::nan_value(), pretenure)
1765 return AllocateHeapNumber(value, pretenure);