Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-atomics.cc134 return NumberToUint32(*number); in FromObject()
144 return NumberToUint32(*number); in FromObject()
154 return NumberToUint32(*number); in FromObject()
Druntime-array.cc83 uint32_t key = keys.is_null() ? i : NumberToUint32(keys->get(i)); in RemoveArrayHolesGeneric()
140 uint32_t key = keys.is_null() ? i : NumberToUint32(keys->get(i)); in RemoveArrayHolesGeneric()
350 uint32_t idx = NumberToUint32(keys->get(i)); in CopyFromPrototype()
502 if (NumberToUint32(keys->get(i)) >= length) continue; in RUNTIME_FUNCTION()
Druntime-regexp.cc1555 *out = NumberToUint32(*number); in ToUint32()
/external/v8/src/
Dconversions.h169 inline uint32_t NumberToUint32(Object* number);
Dconversions-inl.h150 uint32_t NumberToUint32(Object* number) { in NumberToUint32() function
Dvalue-serializer.cc870 WriteVarint(NumberToUint32(view->byte_offset())); in WriteJSArrayBufferView()
871 WriteVarint(NumberToUint32(view->byte_length())); in WriteJSArrayBufferView()
1707 uint32_t buffer_byte_length = NumberToUint32(buffer->byte_length()); in ReadJSArrayBufferView()
Dapi.cc3998 if (obj->IsNumber()) return Just(NumberToUint32(*obj)); in Uint32Value()
4011 if (obj->IsNumber()) return NumberToUint32(*obj); in Uint32Value()
Dobjects.cc10362 uint32_t a = NumberToUint32(a_obj); in ContainsSortedNumbers()
10363 uint32_t b = NumberToUint32(b_obj); in ContainsSortedNumbers()
/external/v8/src/compiler/
Doperation-typer.cc550 Type OperationTyper::NumberToUint32(Type type) { in NumberToUint32() function in v8::internal::compiler::OperationTyper
897 rhs = NumberToUint32(rhs); in NumberShiftLeft()
932 rhs = NumberToUint32(rhs); in NumberShiftRight()
956 lhs = NumberToUint32(lhs); in NumberShiftRightLogical()
957 rhs = NumberToUint32(rhs); in NumberShiftRightLogical()
Dsimplified-operator.h588 const Operator* NumberToUint32(); in NON_EXPORTED_BASE()
Dtyped-optimization.cc257 NodeProperties::ChangeOp(node, simplified()->NumberToUint32()); in ReduceNumberFloor()
Dopcodes.h340 V(NumberToUint32) \
Dsimplified-operator.cc709 V(NumberToUint32, Operator::kNoProperties, 1, 0) \
Djs-call-reducer.cc114 left = graph()->NewNode(simplified()->NumberToUint32(), left); in ReduceMathImul()
115 right = graph()->NewNode(simplified()->NumberToUint32(), right); in ReduceMathImul()
140 input = graph()->NewNode(simplified()->NumberToUint32(), input); in ReduceMathClz32()
Djs-typed-lowering.cc395 node = graph()->NewNode(simplified()->NumberToUint32(), node); in ConvertToUI32()
Djs-native-context-specialization.cc2320 index = graph()->NewNode(simplified()->NumberToUint32(), index); in BuildElementAccess()