Home
last modified time | relevance | path

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

/external/v8/src/numbers/
Dconversions.h156 inline uint32_t NumberToUint32(Object number);
/external/v8/src/runtime/
Druntime-atomics.cc182 return NumberToUint32(*number); in FromObject()
192 return NumberToUint32(*number); in FromObject()
202 return NumberToUint32(*number); in FromObject()
Druntime-regexp.cc1544 *out = NumberToUint32(*number); in ToUint32()
/external/v8/src/compiler/
Doperation-typer.cc551 Type OperationTyper::NumberToUint32(Type type) { in NumberToUint32() function in v8::internal::compiler::OperationTyper
935 rhs = NumberToUint32(rhs); in NumberShiftLeft()
970 rhs = NumberToUint32(rhs); in NumberShiftRight()
994 lhs = NumberToUint32(lhs); in NumberShiftRightLogical()
995 rhs = NumberToUint32(rhs); in NumberShiftRightLogical()
Dtyped-optimization.cc337 NodeProperties::ChangeOp(node, simplified()->NumberToUint32()); in ReduceNumberFloor()
Dopcodes.h381 V(NumberToUint32) \
Dsimplified-operator.h778 const Operator* NumberToUint32(); in NON_EXPORTED_BASE()
Dsimplified-operator.cc756 V(NumberToUint32, Operator::kNoProperties, 1, 0) \
Djs-call-reducer.cc2299 left = graph()->NewNode(simplified()->NumberToUint32(), left); in ReduceMathImul()
2300 right = graph()->NewNode(simplified()->NumberToUint32(), right); in ReduceMathImul()
2326 input = graph()->NewNode(simplified()->NumberToUint32(), input); in ReduceMathClz32()
Djs-typed-lowering.cc425 node = graph()->NewNode(simplified()->NumberToUint32(), node); in ConvertToUI32()
Djs-native-context-specialization.cc2777 index = graph()->NewNode(simplified()->NumberToUint32(), index); in BuildElementAccess()
/external/v8/src/api/
Dapi.cc3998 if (obj->IsNumber()) return Just(NumberToUint32(*obj)); in Uint32Value()