Home
last modified time | relevance | path

Searched refs:NumberToUint32 (Results 1 – 16 of 16) sorted by relevance

/external/v8/src/runtime/
Druntime-atomics.cc140 return NumberToUint32(*number); in FromObject()
150 return NumberToUint32(*number); in FromObject()
160 return NumberToUint32(*number); in FromObject()
580 uint32_t usize = NumberToUint32(*size); in RUNTIME_FUNCTION()
Druntime-array.cc241 if (NumberToUint32(keys->get(i)) >= length) continue; in RUNTIME_FUNCTION()
Druntime-regexp.cc1358 *out = NumberToUint32(*number); in ToUint32()
/external/v8/src/
Dconversions.h181 inline uint32_t NumberToUint32(Object* number);
Dconversions-inl.h160 uint32_t NumberToUint32(Object* number) { in NumberToUint32() function
Dvalue-serializer.cc800 WriteVarint(NumberToUint32(view->byte_offset())); in WriteJSArrayBufferView()
801 WriteVarint(NumberToUint32(view->byte_length())); in WriteJSArrayBufferView()
1558 uint32_t buffer_byte_length = NumberToUint32(buffer->byte_length()); in ReadJSArrayBufferView()
Dobjects.cc697 << (NumberToUint32(*rhs) & 0x1F)); in ShiftLeft()
709 (NumberToUint32(*rhs) & 0x1F)); in ShiftRight()
721 return isolate->factory()->NewNumberFromUint(NumberToUint32(*lhs) >> in ShiftRightLogical()
722 (NumberToUint32(*rhs) & 0x1F)); in ShiftRightLogical()
16776 uint32_t key = NumberToUint32(k); in PrepareSlowElementsForSort()
Dapi.cc4014 if (obj->IsNumber()) return Just(NumberToUint32(*obj)); in Uint32Value()
4026 if (obj->IsNumber()) return NumberToUint32(*obj); in Uint32Value()
/external/v8/src/compiler/
Doperation-typer.cc482 Type* OperationTyper::NumberToUint32(Type* type) { in NumberToUint32() function in v8::internal::compiler::OperationTyper
810 rhs = NumberToUint32(rhs); in NumberShiftLeft()
845 rhs = NumberToUint32(rhs); in NumberShiftRight()
869 lhs = NumberToUint32(lhs); in NumberShiftRightLogical()
870 rhs = NumberToUint32(rhs); in NumberShiftRightLogical()
Dtyped-optimization.cc217 NodeProperties::ChangeOp(node, simplified()->NumberToUint32()); in ReduceNumberFloor()
Djs-builtin-reducer.cc441 next_index = graph()->NewNode(simplified()->NumberToUint32(), next_index); in ReduceFastArrayIteratorNext()
569 next_index = graph()->NewNode(simplified()->NumberToUint32(), next_index); in ReduceTypedArrayIteratorNext()
1642 index = graph()->NewNode(simplified()->NumberToUint32(), index); in ReduceStringCharAt()
1696 index = graph()->NewNode(simplified()->NumberToUint32(), index); in ReduceStringCharCodeAt()
2184 return graph()->NewNode(simplified()->NumberToUint32(), input); in ToUint32()
Dsimplified-operator.h329 const Operator* NumberToUint32(); in NON_EXPORTED_BASE()
Dopcodes.h300 V(NumberToUint32) \
Dsimplified-operator.cc458 V(NumberToUint32, Operator::kNoProperties, 1, 0) \
Djs-typed-lowering.cc502 node = graph()->NewNode(simplified()->NumberToUint32(), node); in ConvertToUI32()
/external/v8/src/heap/
Dincremental-marking.cc428 uint32_t key = NumberToUint32(k); in PatchIncrementalMarkingRecordWriteStubs()