Home
last modified time | relevance | path

Searched refs:this_value (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/v8/src/
Dbignum.cc427 uint64_t this_value = base; in AssignPowerUInt16() local
431 while (mask != 0 && this_value <= max_32bits) { in AssignPowerUInt16()
432 this_value = this_value * this_value; in AssignPowerUInt16()
438 bool high_bits_zero = (this_value & base_bits_mask) == 0; in AssignPowerUInt16()
440 this_value *= base; in AssignPowerUInt16()
447 AssignUInt64(this_value); in AssignPowerUInt16()
Dobjects.cc871 double this_value = Number(); in SameValue() local
873 bool equal = this_value == other_value; in SameValue()
875 if (!equal) return std::isnan(this_value) && std::isnan(other_value); in SameValue()
877 return (this_value != 0) || ((1 / this_value) == (1 / other_value)); in SameValue()
892 double this_value = Number(); in SameValueZero() local
895 return this_value == other_value in SameValueZero()
896 || (std::isnan(this_value) && std::isnan(other_value)); in SameValueZero()
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
Dbignum.cc450 uint64_t this_value = base; in AssignPowerUInt16() local
454 while (mask != 0 && this_value <= max_32bits) { in AssignPowerUInt16()
455 this_value = this_value * this_value; in AssignPowerUInt16()
461 bool high_bits_zero = (this_value & base_bits_mask) == 0; in AssignPowerUInt16()
463 this_value *= base; in AssignPowerUInt16()
470 AssignUInt64(this_value); in AssignPowerUInt16()
/external/chromium_org/net/spdy/
Dspdy_test_util_common.cc120 std::string this_value; in AppendToHeaderBlock() local
137 this_value = extra_headers[1 + (i * 2)]; in AppendToHeaderBlock()
149 new_value += this_value; in AppendToHeaderBlock()
152 new_value = this_value; in AppendToHeaderBlock()