Home
last modified time | relevance | path

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

/external/v8/test/cctest/compiler/
Dtest-simplified-lowering.cc139 Node* convert = t.NumberToUint32(loaded); in TEST()
1020 t.simplified()->NumberToUint32()); in TEST()
1023 t.simplified()->NumberToUint32()); in TEST()
1094 Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), t.p0); in TEST()
1107 Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), p0); in TEST()
1117 Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), t.p0); in TEST()
1128 Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), input); in TEST()
1630 Node* num = t.NumberToUint32(t.Parameter(0)); in TEST()
1632 Node* trunc = t.NumberToUint32(mul); in TEST()
1648 Node* num = t.NumberToUint32(t.Parameter(0)); in TEST()
[all …]
Dgraph-builder-tester.h139 Node* NumberToUint32(Node* a) { in NumberToUint32() function
140 return NewNode(simplified()->NumberToUint32(), a); in NumberToUint32()
/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.cc221 if (NumberToUint32(keys->get(i)) >= length) continue; in RUNTIME_FUNCTION()
/external/v8/src/
Dconversions.h174 inline uint32_t NumberToUint32(Object* number);
Dconversions-inl.h125 uint32_t NumberToUint32(Object* number) { in NumberToUint32() function
Dobjects.cc511 << (NumberToUint32(*rhs) & 0x1F)); in ShiftLeft()
523 (NumberToUint32(*rhs) & 0x1F)); in ShiftRight()
535 return isolate->factory()->NewNumberFromUint(NumberToUint32(*lhs) >> in ShiftRightLogical()
536 (NumberToUint32(*rhs) & 0x1F)); in ShiftRightLogical()
15561 (NumberToUint32(numbers->get(j - 1)) > in InsertionSortPairs()
15562 NumberToUint32(numbers->get(j)))) { in InsertionSortPairs()
15579 uint32_t parent_value = NumberToUint32(numbers->get(parent_index)); in HeapSortPairs()
15580 uint32_t child_value = NumberToUint32(numbers->get(child_index)); in HeapSortPairs()
15599 uint32_t child1_value = NumberToUint32(numbers->get(child_index)); in HeapSortPairs()
15600 uint32_t child2_value = NumberToUint32(numbers->get(child_index + 1)); in HeapSortPairs()
[all …]
Dbuiltins.cc2495 int product = static_cast<int>(NumberToUint32(*x) * NumberToUint32(*y)); in BUILTIN()
Dapi.cc3527 if (obj->IsNumber()) return Just(NumberToUint32(*obj)); in Uint32Value()
3539 if (obj->IsNumber()) return NumberToUint32(*obj); in Uint32Value()
/external/v8/src/compiler/
Dsimplified-operator.h200 const Operator* NumberToUint32();
Dtyper.cc252 static Type* NumberToUint32(Type*, Typer*);
554 Type* Typer::Visitor::NumberToUint32(Type* type, Typer* t) { in NumberToUint32() function in v8::internal::compiler::Typer::Visitor
970 rhs = NumberToUint32(ToNumber(rhs, t), t); in JSShiftRightTyper()
1006 lhs = NumberToUint32(ToNumber(lhs, t), t); in JSShiftRightLogicalTyper()
1692 return TypeUnaryOp(node, NumberToUint32); in TypeNumberToUint32()
1718 type = NumberToUint32(ToNumber(type, t), t); in StringFromCharCodeTyper()
Djs-builtin-reducer.cc528 return graph()->NewNode(simplified()->NumberToUint32(), input); in ToUint32()
Dsimplified-operator.cc276 V(NumberToUint32, Operator::kNoProperties, 1) \
Dopcodes.h225 V(NumberToUint32) \
Djs-typed-lowering.cc381 node = graph()->NewNode(simplified()->NumberToUint32(), node); in ConvertToUI32()
/external/v8/test/unittests/compiler/
Dsimplified-operator-unittest.cc57 PURE(NumberToUint32, Operator::kNoProperties, 1),
Dnode-test-utils.cc2334 IS_UNOP_MATCHER(NumberToUint32)
/external/v8/src/heap/
Dincremental-marking.cc468 uint32_t key = NumberToUint32(k); in PatchIncrementalMarkingRecordWriteStubs()