Lines Matching defs:temp1
6198 // let temp1 = (2^52 + input) - 2^52 in
6199 // if temp1 < input then
6200 // temp1 + 1
6202 // temp1
6210 // let temp1 = -0 - input in
6211 // let temp2 = (2^52 + temp1) - 2^52 in
6212 // let temp3 = (if temp1 < temp2 then temp2 - 1 else temp2) in
6232 Node* temp1 = __ Float64Sub(__ Float64Add(two_52, input), two_52);
6233 __ GotoIfNot(__ Float64LessThan(temp1, input), &done, temp1);
6234 __ Goto(&done, __ Float64Add(temp1, one));
6252 Node* temp1 = __ Float64Sub(minus_zero, input);
6253 Node* temp2 = __ Float64Sub(__ Float64Add(two_52, temp1), two_52);
6254 Node* check3 = __ Float64LessThan(temp1, temp2);
6285 // let temp1 = (2^52 + input) - 2^52 in
6286 // if input < temp1 then
6287 // temp1 - 1
6289 // temp1
6297 // let temp1 = -0 - input in
6298 // let temp2 = (2^52 + temp1) - 2^52 in
6299 // if temp2 < temp1 then
6321 Node* temp1 = __ Float64Sub(__ Float64Add(two_52, input), two_52);
6322 __ GotoIfNot(__ Float64LessThan(input, temp1), &done, temp1);
6323 __ Goto(&done, __ Float64Sub(temp1, one));
6341 Node* temp1 = __ Float64Sub(minus_zero, input);
6342 Node* temp2 = __ Float64Sub(__ Float64Add(two_52, temp1), two_52);
6343 Node* check3 = __ Float64LessThan(temp2, temp1);
6381 // let temp1 = input - value in
6382 // if temp1 < 0.5 then
6384 // else if 0.5 < temp1 then
6397 Node* temp1 = __ Float64Sub(input, value);
6400 Node* check0 = __ Float64LessThan(temp1, half);
6404 Node* check1 = __ Float64LessThan(half, temp1);
6428 // let temp1 = (2^52 + input) - 2^52 in
6429 // if input < temp1 then
6430 // temp1 - 1
6432 // temp1
6440 // let temp1 = -0 - input in
6441 // let temp2 = (2^52 + temp1) - 2^52 in
6442 // let temp3 = (if temp1 < temp2 then temp2 - 1 else temp2) in
6465 Node* temp1 = __ Float64Sub(__ Float64Add(two_52, input), two_52);
6466 __ GotoIfNot(__ Float64LessThan(input, temp1), &done, temp1);
6467 __ Goto(&done, __ Float64Sub(temp1, one));
6485 Node* temp1 = __ Float64Sub(minus_zero, input);
6486 Node* temp2 = __ Float64Sub(__ Float64Add(two_52, temp1), two_52);
6487 Node* check3 = __ Float64LessThan(temp1, temp2);