/reactos/dll/3rdparty/libjpeg/ |
H A D | jfdctint.c | 392 tmp1 += tmp2; in jpeg_fdct_7x7() 394 tmp1 += tmp2; in jpeg_fdct_7x7() 450 tmp1 += tmp2; in jpeg_fdct_7x7() 452 tmp1 += tmp2; in jpeg_fdct_7x7() 1302 tmp1 -= tmp5; in jpeg_fdct_11x11() 1387 tmp1 -= tmp5; in jpeg_fdct_11x11() 1652 tmp1 -= tmp6; in jpeg_fdct_13x13() 1746 tmp1 -= tmp6; in jpeg_fdct_13x13() 2724 tmp1 += tmp2; in jpeg_fdct_14x7() 2726 tmp1 += tmp2; in jpeg_fdct_14x7() [all …]
|
H A D | jidctint.c | 242 tmp1 = z2 - z3; 281 tmp1 = MULTIPLY(tmp1, FIX_2_053119869); /* c1+c3-c5+c7 */ 391 tmp1 = MULTIPLY(tmp1, FIX_2_053119869); /* c1+c3-c5+c7 */ 490 tmp1 += tmp2; in jpeg_idct_7x7() 492 tmp1 += tmp2; in jpeg_idct_7x7() 545 tmp1 += tmp2; in jpeg_idct_7x7() 547 tmp1 += tmp2; in jpeg_idct_7x7() 2685 tmp1 += z1; in jpeg_idct_16x16() 2787 tmp1 += z1; in jpeg_idct_16x16() 3064 tmp1 += z1; in jpeg_idct_16x8() [all …]
|
H A D | jidctflt.c | 75 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable 126 tmp1 = DEQUANTIZE(inptr[DCTSIZE*2], quantptr[DCTSIZE*2]); 133 tmp13 = tmp1 + tmp3; /* phases 5-3 */ 134 tmp12 = (tmp1 - tmp3) * ((FAST_FLOAT) 1.414213562) - tmp13; /* 2*c4 */ 138 tmp1 = tmp11 + tmp12; 166 wsptr[DCTSIZE*1] = tmp1 + tmp6; 167 wsptr[DCTSIZE*6] = tmp1 - tmp6; 202 tmp1 = tmp11 + tmp12; 227 outptr[1] = range_limit[(int) (tmp1 + tmp6) & RANGE_MASK]; 228 outptr[6] = range_limit[(int) (tmp1 - tmp6) & RANGE_MASK];
|
H A D | jidctfst.c | 148 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable 201 tmp1 = DEQUANTIZE(inptr[DCTSIZE*2], quantptr[DCTSIZE*2]); 208 tmp13 = tmp1 + tmp3; /* phases 5-3 */ 209 tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13; /* 2*c4 */ 213 tmp1 = tmp11 + tmp12; 241 wsptr[DCTSIZE*1] = (int) (tmp1 + tmp6); 242 wsptr[DCTSIZE*6] = (int) (tmp1 - tmp6); 307 tmp1 = tmp11 + tmp12; 334 outptr[1] = range_limit[(int) IRIGHT_SHIFT(tmp1 + tmp6, PASS1_BITS+3) 336 outptr[6] = range_limit[(int) IRIGHT_SHIFT(tmp1 - tmp6, PASS1_BITS+3)
|
H A D | jfdctflt.c | 64 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable 80 tmp1 = (FAST_FLOAT) (GETJSAMPLE(elemptr[1]) + GETJSAMPLE(elemptr[6])); 91 tmp11 = tmp1 + tmp2; 92 tmp12 = tmp1 - tmp2; 131 tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6]; 142 tmp11 = tmp1 + tmp2; 143 tmp12 = tmp1 - tmp2;
|
H A D | jfdctfst.c | 119 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable 136 tmp1 = GETJSAMPLE(elemptr[1]) + GETJSAMPLE(elemptr[6]); 147 tmp11 = tmp1 + tmp2; 148 tmp12 = tmp1 - tmp2; 187 tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6]; 198 tmp11 = tmp1 + tmp2; 199 tmp12 = tmp1 - tmp2;
|
/reactos/sdk/include/reactos/libs/libmpg123/ |
H A D | synth_8bit.h | 16 short *tmp1 = samples_tmp + channel; in SYNTH_NAME() local 29 *samples = fr->conv16to8[*tmp1>>AUSHIFT]; in SYNTH_NAME() 31 tmp1 += 2; in SYNTH_NAME() 41 short *tmp1 = samples_tmp; in MONO_NAME() local 54 *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; in MONO_NAME() 55 tmp1+=2; in MONO_NAME() 65 short *tmp1 = samples_tmp; in MONO2STEREO_NAME() local 78 *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; in MONO2STEREO_NAME() 79 *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; in MONO2STEREO_NAME() 80 tmp1 += 2; in MONO2STEREO_NAME()
|
H A D | synth_mono.h | 24 SAMPLE_T *tmp1 = samples_tmp; in MONO_NAME() local 39 *( (SAMPLE_T *)samples) = *tmp1; in MONO_NAME() 41 tmp1 += 2; in MONO_NAME()
|
H A D | synth_ntom.h | 23 SAMPLE_T *tmp1 = samples_tmp; in MONO_NAME() local 37 *( (SAMPLE_T *)samples) = *tmp1; in MONO_NAME() 39 tmp1 += 2; in MONO_NAME()
|
/reactos/dll/win32/rsaenh/ |
H A D | rsa.c | 89 mp_int p, q, tmp1, tmp2, tmp3; in rsa_make_key() local 100 if ((err = mp_init_multi(&p, &q, &tmp1, &tmp2, &tmp3, NULL)) != MP_OKAY) { in rsa_make_key() 110 … if ((err = mp_sub_d(&p, 1, &tmp1)) != MP_OKAY) { goto error; } /* tmp1 = p-1 */ in rsa_make_key() 111 …if ((err = mp_gcd(&tmp1, &tmp3, &tmp2)) != MP_OKAY) { goto error; } /* tmp2 = gcd(p-1, e… in rsa_make_key() 117 if ((err = mp_sub_d(&q, 1, &tmp1)) != MP_OKAY) { goto error; } /* tmp1 = q-1 */ in rsa_make_key() 118 …if ((err = mp_gcd(&tmp1, &tmp3, &tmp2)) != MP_OKAY) { goto error; } /* tmp2 = gcd(q-1, e)… in rsa_make_key() 124 …if ((err = mp_lcm(&tmp1, &tmp2, &tmp1)) != MP_OKAY) { goto error; } /* tmp1 = lcm(p-1,… in rsa_make_key() 133 …if ((err = mp_invmod(&key->e, &tmp1, &key->d)) != MP_OKAY) { goto error2; } /* key->d = 1/… in rsa_make_key() 138 …if ((err = mp_sub_d(&p, 1, &tmp1)) != MP_OKAY) { goto error2; } /* tmp1 = q-1 … in rsa_make_key() 140 …if ((err = mp_mod(&key->d, &tmp1, &key->dP)) != MP_OKAY) { goto error2; } /* dP = d mod … in rsa_make_key() [all …]
|
/reactos/dll/opengl/glu32/src/libnurbs/internals/ |
H A D | renderhints.cc | 55 tmp1 = 0.0; in Renderhints() 109 return tmp1; in getProperty() 130 tmp1 = value; in setProperty()
|
H A D | renderhints.h | 52 REAL tmp1; /* unused */ variable
|
/reactos/sdk/lib/3rdparty/stlport/test/compiler/ |
H A D | partial_spec.cpp | 29 int tmp1 = 0; in foo() local 31 func(tmp1); in foo()
|
/reactos/sdk/lib/3rdparty/libmpg123/ |
H A D | layer3.c | 1879 real tmp0,tmp1 = (in0 - in4); in dct12() local 1882 tmp0 = tmp1 + tmp2; in dct12() 1883 tmp1 -= tmp2; in dct12() 1913 real tmp0,tmp1 = (in0 - in4); in dct12() local 1916 tmp0 = tmp1 + tmp2; in dct12() 1917 tmp1 -= tmp2; in dct12() 1948 real tmp0,tmp1 = (in0 - in4); in dct12() local 1951 tmp0 = tmp1 + tmp2; in dct12() 1952 tmp1 -= tmp2; in dct12() 1956 out2[0+1] += REAL_MUL(tmp1, wi[1]); in dct12() [all …]
|
/reactos/base/applications/cmdutils/fc/ |
H A D | text.h | 410 struct list *ptr0 = *pptr0, *ptr1 = *pptr1, *tmp0, *tmp1; in ScanDiff() local 422 tmp1 = ptr1; in ScanDiff() 423 count = SkipIdenticalN(pFC, &tmp0, &tmp1, pFC->nnnn, lineno0, lineno1); in ScanDiff() 429 ptr1 = tmp1; in ScanDiff()
|
/reactos/hal/halx86/mp/ |
H A D | apic.c | 636 ULONG tmp1, tmp2; in MpsErrorHandler() local 640 tmp1 = APICRead(APIC_ESR); in MpsErrorHandler() 643 DPRINT1("APIC error on CPU(%d) ESR(%x)(%x)\n", ThisCPU(), tmp1, tmp2); in MpsErrorHandler() 660 DPRINT1("APIC error on CPU(%d) ESR(%x)(%x)\n", ThisCPU(), tmp1, tmp2); in MpsErrorHandler()
|
/reactos/sdk/include/c++/stlport/stl/ |
H A D | _cmath.h | 196 double tmp1, tmp2; \ 197 tmp1 = _STLP_CMATH_FUNC_NAMESPACE::cfunc(__STATIC_CAST(double, x), &tmp2); \ 199 return __STATIC_CAST(__type, tmp1); \
|
/reactos/sdk/lib/3rdparty/stlport/test/unit/ |
H A D | time_facets_test.cpp | 225 locale tmp1(tmp0, new time_get_facet(tested_locales[i])); in test_supported_locale() local 226 loc = tmp1; in test_supported_locale()
|
H A D | money_facets_test.cpp | 446 locale tmp1(tmp0, new moneypunct_byname<char, false>(tested_locales[i].name)); in test_supported_locale() local 447 loc = tmp1; in test_supported_locale()
|
/reactos/sdk/lib/3rdparty/libxml2/ |
H A D | encoding.c | 610 unsigned short tmp1, tmp2; in UTF8ToUTF16LE() local 671 tmp1 = 0xD800 | (c >> 10); in UTF8ToUTF16LE() 673 *tmp = (unsigned char) tmp1; in UTF8ToUTF16LE() 674 *(tmp + 1) = tmp1 >> 8; in UTF8ToUTF16LE() 853 unsigned short tmp1, tmp2; in UTF8ToUTF16BE() local 908 tmp1 = 0xD800 | (c >> 10); in UTF8ToUTF16BE() 910 *tmp = tmp1 >> 8; in UTF8ToUTF16BE() 911 *(tmp + 1) = (unsigned char) tmp1; in UTF8ToUTF16BE()
|
/reactos/dll/win32/avifil32/ |
H A D | icmstream.c | 779 DWORD tmp1 = 0; in AVIFILE_EncodeFrame() local 783 tmp1 = This->dwBytesPerFrame / This->lKeyFrameEvery; in AVIFILE_EncodeFrame() 784 tmp2 = (This->dwUnusedBytes + tmp1) / This->lKeyFrameEvery; in AVIFILE_EncodeFrame() 786 dwRequest = This->dwBytesPerFrame - tmp1 + tmp2; in AVIFILE_EncodeFrame()
|
/reactos/dll/directx/wine/wined3d/ |
H A D | arb_program_shader.c | 3355 const char *tmp1, const char *tmp2, const char *tmp3, const char *tmp4, BOOL condcode) in arbfp_add_sRGB_correction() argument 3362 shader_addline(buffer, "SUBC %s, %s.x, srgb_consts1.x;\n", tmp1, fragcolor); in arbfp_add_sRGB_correction() 3375 shader_addline(buffer, "POW %s.x, %s.x, srgb_consts0.x;\n", tmp1, fragcolor); in arbfp_add_sRGB_correction() 3376 shader_addline(buffer, "POW %s.y, %s.y, srgb_consts0.x;\n", tmp1, fragcolor); in arbfp_add_sRGB_correction() 3377 shader_addline(buffer, "POW %s.z, %s.z, srgb_consts0.x;\n", tmp1, fragcolor); in arbfp_add_sRGB_correction() 3378 shader_addline(buffer, "MUL %s, %s, srgb_consts0.y;\n", tmp1, tmp1); in arbfp_add_sRGB_correction() 3379 shader_addline(buffer, "SUB %s, %s, srgb_consts0.z;\n", tmp1, tmp1); in arbfp_add_sRGB_correction() 3386 shader_addline(buffer, "MUL %s.xyz, %s, %s;\n", fragcolor, tmp1, tmp3); in arbfp_add_sRGB_correction()
|
/reactos/dll/directx/wine/d3dx9_36/ |
H A D | math.c | 156 FLOAT tmp1, tmp2, s; in D3DXMatrixAffineTransformation2D() local 162 tmp1 = 1.0f - 2.0f * s * s; in D3DXMatrixAffineTransformation2D() 166 out->u.m[0][0] = scaling * tmp1; in D3DXMatrixAffineTransformation2D() 169 out->u.m[1][1] = scaling * tmp1; in D3DXMatrixAffineTransformation2D() 178 out->u.m[3][0] = y * tmp2 - x * tmp1 + x; in D3DXMatrixAffineTransformation2D() 179 out->u.m[3][1] = -x * tmp2 - y * tmp1 + y; in D3DXMatrixAffineTransformation2D()
|