/third_party/FreeBSD/lib/msun/ld128/ |
H A D | e_powl.c | 148 long double z, ax, z_h, z_l, p_h, p_l; in powl() local 346 p_h = u + v; in powl() 347 o.value = p_h; in powl() 350 p_h = o.value; in powl() 351 p_l = v - (p_h - u); in powl() 352 z_h = cp_h * p_h; /* cp_h+cp_l = 2/(3*log2) */ in powl() 353 z_l = cp_l * p_h + p_l * cp + dp_l[k]; in powl() 375 p_h = yy1 * t1; in powl() 376 z = p_l + p_h; in powl() 387 if (p_l + ovt > z - p_h) in powl() [all...] |
/third_party/jerryscript/jerry-libm/ |
H A D | pow.c | 123 double_accessor t1, ax, p_h, y1, t, z; in pow() local 360 p_h.dbl = u + v; in pow() 361 p_h.as_int.lo = 0; in pow() 362 p_l = v - (p_h.dbl - u); in pow() 363 z_h = cp_h * p_h.dbl; /* cp_h + cp_l = 2 / (3 * log2) */ in pow() 364 z_l = cp_l * p_h.dbl + p_l * cp + dp_l[k]; in pow() 376 p_h.dbl = y1.dbl * t1.dbl; in pow() 377 z.dbl = p_l + p_h.dbl; in pow() 388 if (p_l + ovt > z.dbl - p_h.dbl) in pow() 402 if (p_l <= z.dbl - p_h in pow() [all...] |
/third_party/rust/crates/minimal-lexical/src/ |
H A D | libm.rs | 68 let mut p_h: f32; in powf() variables 293 p_h = u + v; in powf() 294 is = p_h.to_bits() as i32; in powf() 295 p_h = f32::from_bits(is as u32 & 0xfffff000); in powf() 296 p_l = v - (p_h - u); in powf() 297 z_h = CP_H * p_h; /* cp_h+cp_l = 2/(3*log2) */ in powf() 298 z_l = CP_L * p_h + p_l * CP + i!(DP_L, k as usize); in powf() 311 p_h = y1 * t1; in powf() 312 z = p_l + p_h; in powf() 319 if p_l + OVT > z - p_h { in powf() 879 let mut p_h: f64 = y1 * t1; powd() variables [all...] |
/third_party/node/deps/v8/src/base/ |
H A D | ieee754.cc | 2670 double z, ax, z_h, z_l, p_h, p_l; in pow() local 2831 p_h = u + v; in pow() 2832 SET_LOW_WORD(p_h, 0); in pow() 2833 p_l = v - (p_h - u); in pow() 2834 z_h = cp_h * p_h; /* cp_h+cp_l = 2/(3*log2) */ in pow() 2835 z_l = cp_l * p_h + p_l * cp + dp_l[k]; in pow() 2847 p_h = y1 * t1; in pow() 2848 z = p_l + p_h; in pow() 2854 if (p_l + ovt > z - p_h) return s * huge * huge; /* overflow */ in pow() 2860 if (p_l <= z - p_h) retur in pow() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vsrc_testsrc.c | 1513 int r_w, r_h, w_h, p_w, p_h, i, tmp, x = 0; in smptebars_fill_picture() local 1522 p_h = test->h - w_h - r_h; in smptebars_fill_picture() 1530 draw_bar(test, i_pixel, x, r_h + w_h, p_w, p_h, picref); in smptebars_fill_picture() 1532 draw_bar(test, white, x, r_h + w_h, p_w, p_h, picref); in smptebars_fill_picture() 1534 draw_bar(test, q_pixel, x, r_h + w_h, p_w, p_h, picref); in smptebars_fill_picture() 1537 draw_bar(test, black0, x, r_h + w_h, tmp, p_h, picref); in smptebars_fill_picture() 1540 draw_bar(test, neg4ire, x, r_h + w_h, tmp, p_h, picref); in smptebars_fill_picture() 1542 draw_bar(test, black0, x, r_h + w_h, tmp, p_h, picref); in smptebars_fill_picture() 1544 draw_bar(test, pos4ire, x, r_h + w_h, tmp, p_h, picref); in smptebars_fill_picture() 1546 draw_bar(test, black0, x, r_h + w_h, test->w - x, p_h, picre in smptebars_fill_picture() [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | hwcontext_vulkan.c | 3023 int p_w, p_h; in vulkan_export_to_cuda() local 3097 get_plane_wh(&p_w, &p_h, hwfc->sw_format, hwfc->width, hwfc->height, i); in vulkan_export_to_cuda() 3099 tex_desc.arrayDesc.Height = p_h; in vulkan_export_to_cuda() 3210 int p_w, p_h; in vulkan_transfer_data_from_cuda() local 3211 get_plane_wh(&p_w, &p_h, hwfc->sw_format, hwfc->width, hwfc->height, i); in vulkan_transfer_data_from_cuda() 3214 cpy.Height = p_h; in vulkan_transfer_data_from_cuda() 3778 int p_w, p_h; in transfer_image_buf() local 3779 get_plane_wh(&p_w, &p_h, pix_fmt, w, h, i); in transfer_image_buf() 3781 buf_reg.bufferImageHeight = p_h; in transfer_image_buf() 3782 buf_reg.imageExtent = (VkExtent3D){ p_w, p_h, in transfer_image_buf() 3829 int p_w, p_h; vulkan_transfer_data() local [all...] |