/third_party/flutter/skia/third_party/externals/sdl/src/libm/ |
D | e_pow.c | 110 double z, ax, z_h, z_l, p_h, p_l; local 271 p_h = u + v; 272 SET_LOW_WORD(p_h, 0); 273 p_l = v - (p_h - u); 274 z_h = cp_h * p_h; /* cp_h+cp_l = 2/(3*log2) */ 275 z_l = cp_l * p_h + p_l * cp + dp_l[k]; 291 p_h = y1 * t1; 292 z = p_l + p_h; 298 if (p_l + ovt > z - p_h) 305 if (p_l <= z - p_h) [all …]
|
/third_party/jerryscript/jerry-libm/ |
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.dbl) in pow() [all …]
|
/third_party/rust/crates/minimal-lexical/src/ |
D | libm.rs | 68 let mut p_h: f32; in powf() localVariable 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() [all …]
|
/third_party/ffmpeg/libavutil/ |
D | hwcontext_vulkan.c | 2387 int p_w, p_h; in vulkan_export_to_cuda() local 2388 get_plane_wh(&p_w, &p_h, hwfc->sw_format, hwfc->width, hwfc->height, i); in vulkan_export_to_cuda() 2391 tex_desc.arrayDesc.Height = p_h; in vulkan_export_to_cuda() 2497 int p_w, p_h; in vulkan_transfer_data_from_cuda() local 2498 get_plane_wh(&p_w, &p_h, hwfc->sw_format, hwfc->width, hwfc->height, i); in vulkan_transfer_data_from_cuda() 2501 cpy.Height = p_h; in vulkan_transfer_data_from_cuda() 3024 int p_w, p_h; in transfer_image_buf() local 3025 get_plane_wh(&p_w, &p_h, pix_fmt, w, h, i); in transfer_image_buf() 3027 buf_reg.bufferImageHeight = p_h; in transfer_image_buf() 3028 buf_reg.imageExtent = (VkExtent3D){ p_w, p_h, 1, }; in transfer_image_buf() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vsrc_testsrc.c | 1548 int r_w, r_h, w_h, p_w, p_h, i, tmp, x = 0; in smptebars_fill_picture() local 1557 p_h = test->h - w_h - r_h; in smptebars_fill_picture() 1565 draw_bar(test, i_pixel, x, r_h + w_h, p_w, p_h, picref); in smptebars_fill_picture() 1567 draw_bar(test, white, x, r_h + w_h, p_w, p_h, picref); in smptebars_fill_picture() 1569 draw_bar(test, q_pixel, x, r_h + w_h, p_w, p_h, picref); in smptebars_fill_picture() 1572 draw_bar(test, black0, x, r_h + w_h, tmp, p_h, picref); in smptebars_fill_picture() 1575 draw_bar(test, neg4ire, x, r_h + w_h, tmp, p_h, picref); in smptebars_fill_picture() 1577 draw_bar(test, black0, x, r_h + w_h, tmp, p_h, picref); in smptebars_fill_picture() 1579 draw_bar(test, pos4ire, x, r_h + w_h, tmp, p_h, picref); in smptebars_fill_picture() 1581 draw_bar(test, black0, x, r_h + w_h, test->w - x, p_h, picref); in smptebars_fill_picture()
|