/third_party/ffmpeg/libswscale/ |
H A D | yuv2rgb.c | 815 int64_t yb = 0; in ff_yuv2rgb_c_init_tables() local 866 yb = -(384 << 16) - YUVRGB_TABLE_LUMA_HEADROOM*cy - oy; in ff_yuv2rgb_c_init_tables() 868 y_table[i + 110] = av_clip_uint8((yb + 0x8000) >> 16) >> 7; in ff_yuv2rgb_c_init_tables() 869 yb += cy; in ff_yuv2rgb_c_init_tables() 881 yb = -(384 << 16) - YUVRGB_TABLE_LUMA_HEADROOM*cy - oy; in ff_yuv2rgb_c_init_tables() 883 int yval = av_clip_uint8((yb + 0x8000) >> 16); in ff_yuv2rgb_c_init_tables() 887 yb += cy; in ff_yuv2rgb_c_init_tables() 900 yb = -(384 << 16) - YUVRGB_TABLE_LUMA_HEADROOM*cy - oy; in ff_yuv2rgb_c_init_tables() 902 int yval = av_clip_uint8((yb + 0x8000) >> 16); in ff_yuv2rgb_c_init_tables() 906 yb in ff_yuv2rgb_c_init_tables() [all...] |
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | kiss_fft.c | 226 kiss_fft_cpx ya,yb; in kf_bfly5() local 228 yb = twiddles[fstride*2*m]; in kf_bfly5() 256 scratch[5].r = scratch[0].r + S_MUL(scratch[7].r,ya.r) + S_MUL(scratch[8].r,yb.r); in kf_bfly5() 257 scratch[5].i = scratch[0].i + S_MUL(scratch[7].i,ya.r) + S_MUL(scratch[8].i,yb.r); in kf_bfly5() 259 scratch[6].r = S_MUL(scratch[10].i,ya.i) + S_MUL(scratch[9].i,yb.i); in kf_bfly5() 260 scratch[6].i = -S_MUL(scratch[10].r,ya.i) - S_MUL(scratch[9].r,yb.i); in kf_bfly5() 265 scratch[11].r = scratch[0].r + S_MUL(scratch[7].r,yb.r) + S_MUL(scratch[8].r,ya.r); in kf_bfly5() 266 scratch[11].i = scratch[0].i + S_MUL(scratch[7].i,yb.r) + S_MUL(scratch[8].i,ya.r); in kf_bfly5() 267 scratch[12].r = - S_MUL(scratch[10].i,yb.i) + S_MUL(scratch[9].i,ya.i); in kf_bfly5() 268 scratch[12].i = S_MUL(scratch[10].r,yb in kf_bfly5() [all...] |
/third_party/glfw/examples/ |
H A D | boing.c | 552 GLfloat yt, yb; in DrawGrid() local 574 yb = -GRID_SIZE / 2 - widthLine; in DrawGrid() 582 glVertex3f( xl, yb, z_offset ); /* SW */ in DrawGrid() 583 glVertex3f( xr, yb, z_offset ); /* SE */ in DrawGrid() 597 yb = yt - widthLine; in DrawGrid() 608 glVertex3f( xl, yb, z_offset ); /* SW */ in DrawGrid() 609 glVertex3f( xr, yb, z_offset ); /* SE */ in DrawGrid()
|
/third_party/ffmpeg/libavfilter/ |
H A D | colorspace.c | 86 double xb = av_q2d(coeffs->b.x), yb = av_q2d(coeffs->b.y); in ff_fill_rgb2xyz_table() local 91 rgb2xyz[0][2] = xb / yb; in ff_fill_rgb2xyz_table() 95 rgb2xyz[2][2] = (1.0 - xb - yb) / yb; in ff_fill_rgb2xyz_table()
|
H A D | af_firequalizer.c | 334 double vx, ya, yb; in dump_fir() local 373 yb = s->min_phase && (i > 1) ? hypotf(s->analysis_buf[i], s->analysis_buf[i+1]) : s->analysis_buf[i]; in dump_fir() 375 yb = fabs(yb); in dump_fir() 378 yb = 20.0 * log10(fabs(yb)); in dump_fir() 380 fprintf(fp, "%17.10f %17.10f %17.10f\n", vx, ya, yb); in dump_fir()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | powl.c | 200 long double w=0, W=0, Wa=0, Wb=0, ya=0, yb=0, u=0; in powl() local 251 yb = 0.5 * fabsl(w); in powl() 252 if( ya != yb ) in powl() 349 * and small part yb less than 1/NXT in powl() 352 yb = y - ya; in powl() 354 /* (w+z)(ya+yb) in powl() 355 * = w*ya + w*yb + z*y in powl() 357 F = z * y + w * yb; in powl()
|
/third_party/musl/src/math/ |
H A D | powl.c | 200 long double w=0, W=0, Wa=0, Wb=0, ya=0, yb=0, u=0; in powl() local 259 yb = 0.5 * fabsl(w); in powl() 260 if( ya != yb ) in powl() 357 * and small part yb less than 1/NXT in powl() 360 yb = y - ya; in powl() 362 /* (w+z)(ya+yb) in powl() 363 * = w*ya + w*yb + z*y in powl() 365 F = z * y + w * yb; in powl()
|
/third_party/ffmpeg/libavcodec/ |
H A D | fmvc.c | 50 int yb, xb; member 497 for (block = 0, y = 0; y < s->yb; y++) { in decode_frame() 573 s->yb = avctx->height / BLOCK_HEIGHT; in decode_init() 580 s->yb++; in decode_init() 584 s->nb_blocks = s->xb * s->yb; in decode_init() 591 for (i = 0; i < s->yb; i++) { in decode_init() 593 if (i != (s->yb - 1) || j != (s->xb - 1)) { in decode_init() 594 if (i == s->yb - 1) { in decode_init()
|
H A D | exr.c | 1140 float *yb = td->block[0]; in dwa_uncompress() local 1148 convert(yb[idx], ub[idx], vb[idx], &bo[xx], &go[xx], &ro[xx]); in dwa_uncompress()
|
/third_party/skia/modules/svg/tests/ |
H A D | Text.cpp | 23 std::vector<SkSVGLength> xb, yb; in DEF_TEST() member 158 b->setY(tst.yb); in DEF_TEST()
|
/third_party/backends/sanei/ |
H A D | sanei_magic.c | 790 int xb,yb,x,y; in sanei_magic_isBlank2() local 812 for(yb=0; yb<yblocks; yb++){ in sanei_magic_isBlank2() 821 int offset = (yquarter + yb*yhalf + y) * params->bytes_per_line in sanei_magic_isBlank2() 837 DBG (15, "sanei_magic_isBlank2: not blank %f %d %d\n", blocksum/yhalf, yb, xb); in sanei_magic_isBlank2() 840 DBG (20, "sanei_magic_isBlank2: block blank %f %d %d\n", blocksum/yhalf, yb, xb); in sanei_magic_isBlank2() 846 for(yb=0; yb<yblocks; yb in sanei_magic_isBlank2() [all...] |
/third_party/mesa3d/src/amd/common/ |
H A D | ac_surface_meta_address_test.c | 82 unsigned yb = y >> meta_block_height_log2; in gfx9_meta_addr_from_coord() local 85 unsigned blockIndex = zb * sliceSizeInBlock + yb * pitchInBlock + xb; in gfx9_meta_addr_from_coord() 159 unsigned yb = y >> meta_block_height_log2; in gfx10_meta_addr_from_coord() local 161 unsigned blkIndex = (yb * pb) + xb; in gfx10_meta_addr_from_coord()
|
H A D | ac_surface.c | 3164 nir_ssa_def *yb = nir_ushr_imm(b, y, meta_block_height_log2); in gfx10_nir_meta_addr_from_coord() local 3166 nir_ssa_def *blkIndex = nir_iadd(b, nir_imul(b, yb, pb), xb); in gfx10_nir_meta_addr_from_coord() 3202 nir_ssa_def *yb = nir_ushr_imm(b, y, meta_block_height_log2); in gfx9_nir_meta_addr_from_coord() local 3206 nir_imul(b, yb, pitchInBlock)), xb); in gfx9_nir_meta_addr_from_coord()
|
/third_party/mesa3d/src/amd/addrlib/src/gfx11/ |
H A D | gfx11addrlib.cpp | 475 const UINT_32 yb = pIn->y / output.metaBlkHeight; in HwlComputeHtileAddrFromCoord() local 477 const UINT_32 blkIndex = (yb * pb) + xb; in HwlComputeHtileAddrFromCoord() 597 const UINT_32 yb = pIn->y / pIn->metaBlkHeight; in HwlComputeDccAddrFromCoord() local 599 const UINT_32 blkIndex = (yb * pb) + xb; in HwlComputeDccAddrFromCoord() 3838 const UINT_32 yb = pIn->y / localOut.blockHeight; 3840 const UINT_32 blockIndex = yb * pb + xb; 3914 const UINT_32 yb = pIn->y / localOut.blockHeight; 3916 const UINT_64 blkIdx = yb * pb + xb; 3954 const UINT_32 yb = pIn->y / localOut.blockHeight; 3956 const UINT_64 blkIdx = yb * p [all...] |
/third_party/mesa3d/src/amd/addrlib/src/gfx10/ |
H A D | gfx10addrlib.cpp | 622 const UINT_32 yb = pIn->y / output.metaBlkHeight; in HwlComputeCmaskAddrFromCoord() local 624 const UINT_32 blkIndex = (yb * pb) + xb; in HwlComputeCmaskAddrFromCoord() 690 const UINT_32 yb = pIn->y / output.metaBlkHeight; in HwlComputeHtileAddrFromCoord() local 692 const UINT_32 blkIndex = (yb * pb) + xb; in HwlComputeHtileAddrFromCoord() 829 const UINT_32 yb = pIn->y / pIn->metaBlkHeight; in HwlComputeDccAddrFromCoord() local 831 const UINT_32 blkIndex = (yb * pb) + xb; in HwlComputeDccAddrFromCoord() 4410 const UINT_32 yb = pIn->y / localOut.blockHeight; 4412 const UINT_32 blockIndex = yb * pb + xb; 4486 const UINT_32 yb = pIn->y / localOut.blockHeight; 4488 const UINT_64 blkIdx = yb * p [all...] |
/third_party/mesa3d/src/amd/addrlib/src/gfx9/ |
H A D | gfx9addrlib.cpp | 885 UINT_32 yb = pIn->y / output.metaBlkHeight; in HwlComputeCmaskAddrFromCoord() local 890 UINT_32 blockIndex = zb * sliceSizeInBlock + yb * pitchInBlock + xb; in HwlComputeCmaskAddrFromCoord() 962 UINT_32 yb = pIn->y / output.metaBlkHeight; in HwlComputeHtileAddrFromCoord() local 967 UINT_32 blockIndex = zb * sliceSizeInBlock + yb * pitchInBlock + xb; in HwlComputeHtileAddrFromCoord() 1126 UINT_32 yb = pIn->y / pIn->metaBlkHeight; in HwlComputeDccAddrFromCoord() local 1131 UINT_32 blockIndex = zb * sliceSizeInBlock + yb * pitchInBlock + xb; in HwlComputeDccAddrFromCoord() 5090 UINT_32 yb = pIn->y / localOut.blockHeight + mipStartPos.h; 5096 UINT_64 blockIndex = zb * sliceSizeInBlock + yb * pitchInBlock + xb;
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | demo-compiled.js | 494 var wb=new RegExp("(?:"+vb()+")$","i"),xb=new RegExp("^[0-9\uff10-\uff19\u0660-\u0669\u06f0-\u06f9]{2}$|^[+\uff0b]*(?:[-x\u2010-\u2015\u2212\u30fc\uff0d-\uff0f \u00a0\u00ad\u200b\u2060\u3000()\uff08\uff09\uff3b\uff3d.\\[\\]/~\u2053\u223c\uff5e*]*[0-9\uff10-\uff19\u0660-\u0669\u06f0-\u06f9]){3,}[-x\u2010-\u2015\u2212\u30fc\uff0d-\uff0f \u00a0\u00ad\u200b\u2060\u3000()\uff08\uff09\uff3b\uff3d.\\[\\]/~\u2053\u223c\uff5e*A-Za-z0-9\uff10-\uff19\u0660-\u0669\u06f0-\u06f9]*(?:"+vb()+")?$","i"),yb=/(\$\d)/, 499 function Rb(a,b,c,d){var f=v(b,2),e=new RegExp(q(b,1)),g=v(b,5);2==c&&null!=d&&0<d.length&&0<g.length?(b=g.replace(Bb,d),f=f.replace(yb,b),a=a.replace(e,f)):(b=v(b,4),a=2==c&&null!=b&&0<b.length?a.replace(e,f.replace(yb,b)):a.replace(e,f));3==c&&(a=a.replace(/^[-x\u2010-\u2015\u2212\u30fc\uff0d-\uff0f \u00a0\u00ad\u200b\u2060\u3000()\uff08\uff09\uff3b\uff3d.\[\]/~\u2053\u223c\uff5e]+/,""),a=a.replace(/[-x\u2010-\u2015\u2212\u30fc\uff0d-\uff0f \u00a0\u00ad\u200b\u2060\u3000()\uff08\uff09\uff3b\uff3d.\[\]/~\u2053\u223c\uff5e]+/g,
|
/third_party/mesa3d/src/imgui/ |
H A D | imstb_truetype.h | 3444 float yb = (y12+y23)/2; 3447 float my = (ya+yb)/2; 3450 stbtt__tesselate_cubic(points, num_points, mx,my, xb,yb, x23,y23, x3,y3, objspace_flatness_squared,n+1);
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imstb_truetype.h | 3444 float yb = (y12+y23)/2; 3447 float my = (ya+yb)/2; 3450 stbtt__tesselate_cubic(points, num_points, mx,my, xb,yb, x23,y23, x3,y3, objspace_flatness_squared,n+1);
|
/third_party/glfw/deps/ |
H A D | nuklear.h | 11826 float yb,y2; in nk_tt__fill_active_edges_new() local 11828 yb = ((float)x - x0) / dx + y_top; in nk_tt__fill_active_edges_new() 11832 nk_tt__handle_clipped_edge(scanline,x,e, x0,ya, x1,yb); in nk_tt__fill_active_edges_new() 11833 nk_tt__handle_clipped_edge(scanline,x,e, x1,yb, x2,y2); in nk_tt__fill_active_edges_new() 11837 nk_tt__handle_clipped_edge(scanline,x,e, x2,y2, x1,yb); in nk_tt__fill_active_edges_new() 11838 nk_tt__handle_clipped_edge(scanline,x,e, x1,yb, x3,y3); in nk_tt__fill_active_edges_new() 11840 nk_tt__handle_clipped_edge(scanline,x,e, x0,ya, x1,yb); in nk_tt__fill_active_edges_new() 11841 nk_tt__handle_clipped_edge(scanline,x,e, x1,yb, x3,y3); in nk_tt__fill_active_edges_new() 11843 nk_tt__handle_clipped_edge(scanline,x,e, x0,ya, x1,yb); in nk_tt__fill_active_edges_new() 11844 nk_tt__handle_clipped_edge(scanline,x,e, x1,yb, x in nk_tt__fill_active_edges_new() [all...] |