Lines Matching defs:zero
366 TNode<Float64T> zero = Float64Constant(0.0);
373 // Check if {x} is greater than zero.
375 Branch(Float64GreaterThan(x, zero), &if_xgreaterthanzero,
394 GotoIfNot(Float64LessThan(x, zero), &return_x);
418 TNode<Float64T> zero = Float64Constant(0.0);
425 // Check if {x} is greater than zero.
427 Branch(Float64GreaterThan(x, zero), &if_xgreaterthanzero,
446 GotoIfNot(Float64LessThan(x, zero), &return_x);
501 TNode<Float64T> zero = Float64Constant(0.0);
510 Branch(Float64GreaterThan(x, zero), &if_xgreaterthanzero,
537 GotoIfNot(Float64LessThan(x, zero), &return_x);
957 // Return NaN if {b} is zero.
988 // Check if {r} is zero, and if so return -0, because we have to
1028 // If the answer is zero, we may need to return -0.0, depending on the
1032 TNode<Int32T> zero = Int32Constant(0);
1033 Branch(Word32Equal(answer, zero), &answer_zero, &answer_not_zero);
1043 Branch(Int32LessThan(or_result, zero), &if_should_be_negative_zero,
1074 // is zero.
1077 // Do floating point division if {dividend} is zero and {divisor} is
1463 // A pointer-sized zero pattern is just what we need for numeric Wasm
1489 // The {value} is a Smi, only need to check against zero.
1612 // real value). TODO(saelo) initialize the entry with zero here and switch
2410 // var_high was non-zero going into this block, but subtracting the
3645 TNode<Smi> zero = SmiConstant(0);
3646 StoreFixedArrayElement(result, NameDictionary::kNumberOfElementsIndex, zero,
3649 NameDictionary::kNumberOfDeletedElementsIndex, zero,
11599 TNode<Smi> zero = SmiConstant(0);
11600 StoreObjectFieldNoWriteBarrier(site, AllocationSite::kNestedSiteOffset, zero);
15451 // (non-zero) capacity even if |at_least_space_for| is 0.