/third_party/mbedtls/library/ |
H A D | padlock.c | 113 uint32_t *iw; in mbedtls_padlock_xcryptcbc() local 125 iw = MBEDTLS_PADLOCK_ALIGN16(buf); in mbedtls_padlock_xcryptcbc() 126 memcpy(iw, iv, 16); in mbedtls_padlock_xcryptcbc() 128 ctrl = iw + 4; in mbedtls_padlock_xcryptcbc() 146 "m" (rk), "m" (input), "m" (output), "m" (iw) in mbedtls_padlock_xcryptcbc() 149 memcpy(iv, iw, 16); in mbedtls_padlock_xcryptcbc()
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | smallft.c | 578 int ip,iw,ido,idl1,ix2,ix3; in drftf1() local 583 iw=n; in drftf1() 591 iw-=(ip-1)*ido; in drftf1() 596 ix2=iw+ido; in drftf1() 599 dradf4(ido,l1,ch,c,wa+iw-1,wa+ix2-1,wa+ix3-1); in drftf1() 601 dradf4(ido,l1,c,ch,wa+iw-1,wa+ix2-1,wa+ix3-1); in drftf1() 608 dradf2(ido,l1,c,ch,wa+iw-1); in drftf1() 612 dradf2(ido,l1,ch,c,wa+iw-1); in drftf1() 619 dradfg(ido,ip,l1,idl1,c,c,c,ch,ch,wa+iw-1); in drftf1() 624 dradfg(ido,ip,l1,idl1,ch,ch,ch,c,c,wa+iw in drftf1() 1159 int nf,ip,iw,ix2,ix3,ido,idl1; drftb1() local [all...] |
/third_party/skia/src/gpu/geometry/ |
H A D | GrQuad.cpp | 48 V4f iw = 1.f / w; in map_quad_general() local 49 *xs *= iw; in map_quad_general() 50 *ys *= iw; in map_quad_general()
|
H A D | GrQuad.h | 103 float iw(int i) const { return sk_ieee_float_divide(1.f, fW[i]); } in iw() function in GrQuad::Type
|
H A D | GrQuadUtils.cpp | 665 V4f iw = 1.f / ws; in reset() local 666 fX2D = xs * iw; in reset() 667 fY2D = ys * iw; in reset()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_transpose_npp.c | 296 int iw = stage->planes_in[i].width; in npptranspose_rotate() local 308 err = nppiRotate_8u_C1R(in->data[i], (NppiSize){ iw, ih }, in npptranspose_rotate() 309 in->linesize[i], (NppiRect){ 0, 0, iw, ih }, in npptranspose_rotate() 329 int iw = stage->planes_in[i].width; in npptranspose_transpose() local 334 (NppiSize){ iw, ih }); in npptranspose_transpose()
|
H A D | vf_convolve.c | 300 const int iw = (n - w) / 2, ih = (n - h) / 2; in get_input() local 308 fft_hdata[(y + ih) * n + iw + x].re = src[x] * scale; in get_input() 309 fft_hdata[(y + ih) * n + iw + x].im = 0; in get_input() 312 for (x = 0; x < iw; x++) { in get_input() 313 fft_hdata[(y + ih) * n + x].re = fft_hdata[(y + ih) * n + iw].re; in get_input() 317 for (x = n - iw; x < n; x++) { in get_input() 318 fft_hdata[(y + ih) * n + x].re = fft_hdata[(y + ih) * n + n - iw - 1].re; in get_input() 341 fft_hdata[(y + ih) * n + iw + x].re = src[x] * scale; in get_input() 342 fft_hdata[(y + ih) * n + iw + x].im = 0; in get_input() 345 for (x = 0; x < iw; in get_input() [all...] |
H A D | vf_cover_rect.c | 91 int iw = AV_CEIL_RSHIFT(in->width , !!p); in blur() local 107 if (ox + w < iw) { in blur()
|
H A D | vf_scale_npp.c | 78 "in_w", "iw", 327 ret = av_opt_set(scale, "w", "iw", 0); in nppscale_init() 718 int iw = stage->planes_in[i].width; in nppscale_resize() local 723 err = nppiResizeSqrPixel_8u_C1R(in->data[i], (NppiSize){ iw, ih }, in nppscale_resize() 724 in->linesize[i], (NppiRect){ 0, 0, iw, ih }, in nppscale_resize() 727 (double)ow / iw, (double)oh / ih, in nppscale_resize()
|
/third_party/python/Objects/ |
H A D | floatobject.c | 746 double iv, iw, ix; in float_pow() local 756 CONVERT_TO_DOUBLE(w, iw); in float_pow() 759 if (iw == 0) { /* v**0 is 1, even 0**0 */ in float_pow() 765 if (Py_IS_NAN(iw)) { /* v**nan = nan, unless v == 1; 1**nan = 1 */ in float_pow() 766 return PyFloat_FromDouble(iv == 1.0 ? 1.0 : iw); in float_pow() 768 if (Py_IS_INFINITY(iw)) { in float_pow() 778 else if ((iw > 0.0) == (iv > 1.0)) in float_pow() 779 return PyFloat_FromDouble(fabs(iw)); /* return inf */ in float_pow() 788 int iw_is_odd = DOUBLE_IS_ODD_INTEGER(iw); in float_pow() 789 if (iw > 0. in float_pow() [all...] |
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | turbojpeg.c | 980 int pw[MAX_COMPONENTS], ph[MAX_COMPONENTS], iw[MAX_COMPONENTS], in tjCompressFromYUVPlanes() local 1028 iw[i] = compptr->width_in_blocks * DCTSIZE; in tjCompressFromYUVPlanes() 1034 if (iw[i] != pw[i] || ih != ph[i]) usetmpbuf = 1; in tjCompressFromYUVPlanes() 1036 tmpbufsize += iw[i] * th[i]; in tjCompressFromYUVPlanes() 1054 ptr += iw[i]; in tjCompressFromYUVPlanes() 1079 for (k = pw[i]; k < iw[i]; k++) in tjCompressFromYUVPlanes() 1084 memcpy(tmpbuf[i][j], tmpbuf[i][ph[i] - crow[i] - 1], iw[i]); in tjCompressFromYUVPlanes() 1623 int pw[MAX_COMPONENTS], ph[MAX_COMPONENTS], iw[MAX_COMPONENTS], in tjDecompressToYUVPlanes() local 1701 iw[i] = compptr->width_in_blocks * dctsize; in tjDecompressToYUVPlanes() 1705 if (iw[ in tjDecompressToYUVPlanes() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
H A D | vktRayTracingOpacityMicromapTests.cpp | 286 deUint32 iw = ((~f & ~t) | (d & ~t) | (~d & f & t)) & ((1 << subdivisionLevel) - 1); in calcSubtriangleCentroid() local 296 iw = iw & ((1 << subdivisionLevel) - 1); in calcSubtriangleCentroid() 298 bool upright = (iu & 1) ^ (iv & 1) ^ (iw & 1); in calcSubtriangleCentroid()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/ |
H A D | vktRayTracingOpacityMicromapTests.cpp | 286 deUint32 iw = ((~f & ~t) | (d & ~t) | (~d & f & t)) & ((1 << subdivisionLevel) - 1); in calcSubtriangleCentroid() local 296 iw = iw & ((1 << subdivisionLevel) - 1); in calcSubtriangleCentroid() 298 bool upright = (iu & 1) ^ (iv & 1) ^ (iw & 1); in calcSubtriangleCentroid()
|
/third_party/ffmpeg/tests/fate/ |
H A D | filter-video.mak | 392 fate-filter-crop: CMD = video_filter "crop=iw-100:ih-100:100:100" 395 fate-filter-crop_scale: CMD = video_filter "crop=iw-100:ih-100:100:100,scale=w=400:h=-1" 398 fate-filter-crop_scale_vflip: CMD = video_filter "null,null,crop=iw-200:ih-200:200:200,crop=iw-20:ih-20:20:20,scale=w=200:h=200,scale=w=250:h=250,vflip,vflip,null,scale=w=200:h=200,crop=iw-100:ih-100:100:100,vflip,scale=w=200:h=200,null,vflip,crop=iw-100:ih-100:100:100,null" 401 fate-filter-crop_vflip: CMD = video_filter "crop=iw-100:ih-100:100:100,vflip" 438 fate-filter-vflip_crop: CMD = video_filter "vflip,crop=iw-100:ih-100:100:100" 459 fate-filter-pad: CMD = video_filter "pad=iw*1.5:ih*1.5:iw*0. [all...] |
/third_party/libdrm/intel/ |
H A D | intel_bufmgr_fake.c | 284 struct drm_i915_irq_wait iw; in _fence_wait_internal() local 295 iw.irq_seq = seq; in _fence_wait_internal() 297 DBG("wait 0x%08x\n", iw.irq_seq); in _fence_wait_internal() 381 &iw, sizeof(iw)); in _fence_wait_internal()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | crestst.c | 135 UResourceBundle *iw = NULL; in TestAliasConflict() local 140 iw = ures_open(NULL, "iw", &status); in TestAliasConflict() 144 ures_close(iw); in TestAliasConflict()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/ |
H A D | vktRayQueryOpacityMicromapTests.cpp | 345 deUint32 iw = ((~f & ~t) | (d & ~t) | (~d & f & t)) & ((1 << subdivisionLevel) - 1); in calcSubtriangleCentroid() local 355 iw = iw & ((1 << subdivisionLevel) - 1); in calcSubtriangleCentroid() 357 bool upright = (iu & 1) ^ (iv & 1) ^ (iw & 1); in calcSubtriangleCentroid()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/ |
H A D | vktRayQueryOpacityMicromapTests.cpp | 340 deUint32 iw = ((~f & ~t) | (d & ~t) | (~d & f & t)) & ((1 << subdivisionLevel) - 1); in calcSubtriangleCentroid() local 350 iw = iw & ((1 << subdivisionLevel) - 1); in calcSubtriangleCentroid() 352 bool upright = (iu & 1) ^ (iv & 1) ^ (iw & 1); in calcSubtriangleCentroid()
|
/third_party/toybox/toys/pending/ |
H A D | vi.c | 1356 int aw = 0, iw = 0, clip = 0, margin = 8; in draw_page() local 1401 iw = crunch_str(&iend, INT_MAX, 0, "\t\n", vi_crunch); in draw_page() 1402 clip = (aw+iw) - TT.screen_width+margin; in draw_page() 1409 iw -= crunch_str(&iend, clip, 0, "\t\n", vi_crunch); in draw_page() 1410 x = crunch_str(&iend, iw, stdout, "\t\n", vi_crunch); in draw_page() 1418 x += crunch_str(&iend, iw, stdout, "\t\n", vi_crunch); in draw_page()
|
/third_party/skia/src/gpu/ops/ |
H A D | TextureOp.cpp | 101 // Describes function for normalizing src coords: [x * iw, y * ih + yOffset] can represent 113 float iw, ih, h; in proxy_normalization_params() local 115 iw = ih = 1.f; in proxy_normalization_params() 118 iw = 1.f / dimensions.width(); in proxy_normalization_params() 124 return {iw, -ih, h}; in proxy_normalization_params() 126 return {iw, ih, 0.0f}; in proxy_normalization_params()
|
/third_party/icu/icu4c/source/common/ |
H A D | locmap.cpp | 450 ILCID_POSIX_ELEMENT_ARRAY(0x040d, iw, iw_IL) /*Left in for compatibility*/ 846 ILCID_POSIX_MAP(he), /* he Hebrew (formerly iw) 0x0d */ 859 ILCID_POSIX_MAP(iw), /* iw Hebrew 0x0d */
|
/third_party/node/deps/icu-small/source/common/ |
H A D | locmap.cpp | 450 ILCID_POSIX_ELEMENT_ARRAY(0x040d, iw, iw_IL) /*Left in for compatibility*/ 846 ILCID_POSIX_MAP(he), /* he Hebrew (formerly iw) 0x0d */ 859 ILCID_POSIX_MAP(iw), /* iw Hebrew 0x0d */
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | locmap.cpp | 450 ILCID_POSIX_ELEMENT_ARRAY(0x040d, iw, iw_IL) /*Left in for compatibility*/ 846 ILCID_POSIX_MAP(he), /* he Hebrew (formerly iw) 0x0d */ 859 ILCID_POSIX_MAP(iw), /* iw Hebrew 0x0d */
|
/third_party/skia/src/shaders/ |
H A D | SkImageShader.cpp | 737 skvm::F32 w, iw, i2w, in makeProgram() member 787 case SkTileMode::kRepeat: sx = repeat(sx, u.w, u.iw); break; in makeProgram()
|
/third_party/lame/libmp3lame/ |
H A D | id3tag.c | 163 int const iw = (id & window); in frame_id_matches() local 164 if (mw != 0 && mw != iw) { in frame_id_matches() 165 result |= iw; in frame_id_matches()
|