Searched refs:NumberToInt32 (Results 1 - 12 of 12) sorted by relevance

/external/v8/src/
H A Dconversions.h180 inline int32_t NumberToInt32(Object* number);
H A Dconversions-inl.h155 int32_t NumberToInt32(Object* number) { function in namespace:v8
H A Dobjects.cc696 return isolate->factory()->NewNumberFromInt(NumberToInt32(*lhs)
708 return isolate->factory()->NewNumberFromInt(NumberToInt32(*lhs) >>
733 return isolate->factory()->NewNumberFromInt(NumberToInt32(*lhs) &
734 NumberToInt32(*rhs));
745 return isolate->factory()->NewNumberFromInt(NumberToInt32(*lhs) |
746 NumberToInt32(*rhs));
757 return isolate->factory()->NewNumberFromInt(NumberToInt32(*lhs) ^
758 NumberToInt32(*rhs));
19319 DCHECK(NumberToInt32(buffer->byte_length()) == fixed_typed_array->DataSize());
H A Dapi.cc3995 if (obj->IsNumber()) return Just(NumberToInt32(*obj));
4007 if (obj->IsNumber()) return NumberToInt32(*obj);
/external/v8/src/compiler/
H A Doperation-typer.cc470 Type* OperationTyper::NumberToInt32(Type* type) { function in class:v8::internal::compiler::OperationTyper
716 lhs = NumberToInt32(lhs);
717 rhs = NumberToInt32(rhs);
753 lhs = NumberToInt32(lhs);
754 rhs = NumberToInt32(rhs);
784 lhs = NumberToInt32(lhs);
785 rhs = NumberToInt32(rhs);
809 lhs = NumberToInt32(lhs);
844 lhs = NumberToInt32(lhs);
H A Dsimplified-operator.h328 const Operator* NumberToInt32();
H A Dopcodes.h299 V(NumberToInt32) \
H A Dsimplified-operator.cc457 V(NumberToInt32, Operator::kNoProperties, 1, 0) \
H A Djs-typed-lowering.cc497 node = graph()->NewNode(simplified()->NumberToInt32(), node);
/external/v8/src/runtime/
H A Druntime-atomics.cc145 return NumberToInt32(*number);
155 return NumberToInt32(*number);
165 return NumberToInt32(*number);
H A Druntime-debug.cc1191 StepAction step_action = static_cast<StepAction>(NumberToInt32(args[1]));
1663 line = NumberToInt32(*opt_line) - script->line_offset();
1669 column = NumberToInt32(*opt_column);
H A Druntime-strings.cc446 int position = NumberToInt32(elements->get(i));

Completed in 325 milliseconds