Searched refs:NumberToUint32 (Results 1 – 16 of 16) sorted by relevance
/external/v8/src/runtime/ |
D | runtime-atomics.cc | 140 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()
|
D | runtime-array.cc | 241 if (NumberToUint32(keys->get(i)) >= length) continue; in RUNTIME_FUNCTION()
|
D | runtime-regexp.cc | 1358 *out = NumberToUint32(*number); in ToUint32()
|
/external/v8/src/ |
D | conversions.h | 181 inline uint32_t NumberToUint32(Object* number);
|
D | conversions-inl.h | 160 uint32_t NumberToUint32(Object* number) { in NumberToUint32() function
|
D | value-serializer.cc | 800 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()
|
D | objects.cc | 697 << (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()
|
D | api.cc | 4014 if (obj->IsNumber()) return Just(NumberToUint32(*obj)); in Uint32Value() 4026 if (obj->IsNumber()) return NumberToUint32(*obj); in Uint32Value()
|
/external/v8/src/compiler/ |
D | operation-typer.cc | 482 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()
|
D | typed-optimization.cc | 217 NodeProperties::ChangeOp(node, simplified()->NumberToUint32()); in ReduceNumberFloor()
|
D | js-builtin-reducer.cc | 441 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()
|
D | simplified-operator.h | 329 const Operator* NumberToUint32(); in NON_EXPORTED_BASE()
|
D | opcodes.h | 300 V(NumberToUint32) \
|
D | simplified-operator.cc | 458 V(NumberToUint32, Operator::kNoProperties, 1, 0) \
|
D | js-typed-lowering.cc | 502 node = graph()->NewNode(simplified()->NumberToUint32(), node); in ConvertToUI32()
|
/external/v8/src/heap/ |
D | incremental-marking.cc | 428 uint32_t key = NumberToUint32(k); in PatchIncrementalMarkingRecordWriteStubs()
|