v0 558 compat/avisynth/avisynth_c.h AVSC_INLINE AVS_Value avs_new_value_bool(int v0) v0 559 compat/avisynth/avisynth_c.h { AVS_Value v; v.type = 'b'; v.d.boolean = v0 == 0 ? 0 : 1; return v; } v0 560 compat/avisynth/avisynth_c.h AVSC_INLINE AVS_Value avs_new_value_int(int v0) v0 561 compat/avisynth/avisynth_c.h { AVS_Value v; v.type = 'i'; v.d.integer = v0; return v; } v0 562 compat/avisynth/avisynth_c.h AVSC_INLINE AVS_Value avs_new_value_string(const char * v0) v0 563 compat/avisynth/avisynth_c.h { AVS_Value v; v.type = 's'; v.d.string = v0; return v; } v0 564 compat/avisynth/avisynth_c.h AVSC_INLINE AVS_Value avs_new_value_float(float v0) v0 565 compat/avisynth/avisynth_c.h { AVS_Value v; v.type = 'f'; v.d.floating_pt = v0; return v;} v0 566 compat/avisynth/avisynth_c.h AVSC_INLINE AVS_Value avs_new_value_error(const char * v0) v0 567 compat/avisynth/avisynth_c.h { AVS_Value v; v.type = 'e'; v.d.string = v0; return v; } v0 569 compat/avisynth/avisynth_c.h AVSC_INLINE AVS_Value avs_new_value_clip(AVS_Clip * v0) v0 570 compat/avisynth/avisynth_c.h { AVS_Value v; avs_set_to_clip(&v, v0); return v; } v0 572 compat/avisynth/avisynth_c.h AVSC_INLINE AVS_Value avs_new_value_array(AVS_Value * v0, int size) v0 573 compat/avisynth/avisynth_c.h { AVS_Value v; v.type = 'a'; v.d.array = v0; v.array_size = size; return v; } v0 515 compat/avisynth/avxsynth_c.h AVSC_INLINE AVS_Value avs_new_value_bool(int v0) v0 516 compat/avisynth/avxsynth_c.h { AVS_Value v = {0}; v.type = 'b'; v.d.boolean = v0 == 0 ? 0 : 1; return v; } v0 517 compat/avisynth/avxsynth_c.h AVSC_INLINE AVS_Value avs_new_value_int(int v0) v0 518 compat/avisynth/avxsynth_c.h { AVS_Value v = {0}; v.type = 'i'; v.d.integer = v0; return v; } v0 519 compat/avisynth/avxsynth_c.h AVSC_INLINE AVS_Value avs_new_value_string(const char * v0) v0 520 compat/avisynth/avxsynth_c.h { AVS_Value v = {0}; v.type = 's'; v.d.string = v0; return v; } v0 521 compat/avisynth/avxsynth_c.h AVSC_INLINE AVS_Value avs_new_value_float(float v0) v0 522 compat/avisynth/avxsynth_c.h { AVS_Value v = {0}; v.type = 'f'; v.d.floating_pt = v0; return v;} v0 523 compat/avisynth/avxsynth_c.h AVSC_INLINE AVS_Value avs_new_value_error(const char * v0) v0 524 compat/avisynth/avxsynth_c.h { AVS_Value v = {0}; v.type = 'e'; v.d.string = v0; return v; } v0 526 compat/avisynth/avxsynth_c.h AVSC_INLINE AVS_Value avs_new_value_clip(AVS_Clip * v0) v0 527 compat/avisynth/avxsynth_c.h { AVS_Value v = {0}; avs_set_to_clip(&v, v0); return v; } v0 529 compat/avisynth/avxsynth_c.h AVSC_INLINE AVS_Value avs_new_value_array(AVS_Value * v0, int size) v0 530 compat/avisynth/avxsynth_c.h { AVS_Value v = {0}; v.type = 'a'; v.d.array = v0; v.array_size = size; return v; } v0 1210 libavcodec/aacsbr.c float *v0, int *v_off, const unsigned int div) v0 1219 libavcodec/aacsbr.c memcpy(&v0[SBR_SYNTHESIS_BUF_SIZE - saved_samples], v0, saved_samples * sizeof(float)); v0 1224 libavcodec/aacsbr.c v = v0 + *v_off; v0 146 libavcodec/ac3dec_fixed.c int v0, v1; v0 149 libavcodec/ac3dec_fixed.c v0 = v1 = 0; v0 151 libavcodec/ac3dec_fixed.c v0 += samples[j][i] * matrix[j][0]; v0 154 libavcodec/ac3dec_fixed.c samples[0][i] = (v0+2048)>>12; v0 159 libavcodec/ac3dec_fixed.c v0 = 0; v0 161 libavcodec/ac3dec_fixed.c v0 += samples[j][i] * matrix[j][0]; v0 162 libavcodec/ac3dec_fixed.c samples[0][i] = (v0+2048)>>12; v0 221 libavcodec/ac3dsp.c float v0, v1; v0 224 libavcodec/ac3dsp.c v0 = v1 = 0.0f; v0 226 libavcodec/ac3dsp.c v0 += samples[j][i] * matrix[j][0]; v0 229 libavcodec/ac3dsp.c samples[0][i] = v0; v0 234 libavcodec/ac3dsp.c v0 = 0.0f; v0 236 libavcodec/ac3dsp.c v0 += samples[j][i] * matrix[j][0]; v0 237 libavcodec/ac3dsp.c samples[0][i] = v0; v0 246 libavcodec/ac3dsp.c int64_t v0, v1; v0 249 libavcodec/ac3dsp.c v0 = v1 = 0; v0 251 libavcodec/ac3dsp.c v0 += (int64_t)samples[j][i] * matrix[j][0]; v0 254 libavcodec/ac3dsp.c samples[0][i] = (v0+2048)>>12; v0 259 libavcodec/ac3dsp.c v0 = 0; v0 261 libavcodec/ac3dsp.c v0 += (int64_t)samples[j][i] * matrix[j][0]; v0 262 libavcodec/ac3dsp.c samples[0][i] = (v0+2048)>>12; v0 75 libavcodec/alpha/regdef.h #define th v0 v0 32 libavcodec/arm/aac.h unsigned v0, v1; v0 41 libavcodec/arm/aac.h : "=&r"(v0), "=&r"(v1), "+r"(dst), "=m"(dst[0]), "=m"(dst[1]) v0 51 libavcodec/arm/aac.h unsigned v0, v1, v2, v3; v0 65 libavcodec/arm/aac.h : "=&r"(v0), "=&r"(v1), "=&r"(v2), "=&r"(v3), "+r"(dst), v0 76 libavcodec/arm/aac.h unsigned v0, v1, v2, v3; v0 90 libavcodec/arm/aac.h : "=&r"(v0), "=&r"(v1), "=&r"(v2), "=&r"(v3), "+r"(dst), v0 101 libavcodec/arm/aac.h unsigned v0, v1, v2, v3, nz; v0 133 libavcodec/arm/aac.h : "=&r"(v0), "=&r"(v1), "=&r"(v2), "=&r"(v3), "+r"(dst), v0 36 libavcodec/arm/dca.h int32_t v0, v1, v2, v3, v4, v5; v0 70 libavcodec/arm/dca.h : "=&r"(v0), "=&r"(v1), "=&r"(v2), v0 56 libavcodec/dcadsp.c float v0 = 0.0; v0 59 libavcodec/dcadsp.c v0 += in[-j] * *coefs; v0 62 libavcodec/dcadsp.c *out++ = v0; v0 452 libavcodec/huffyuvenc.c int v0 = v[i]; v0 462 libavcodec/huffyuvenc.c s->stats[2][v0]++; v0 476 libavcodec/huffyuvenc.c s->stats[2][v0]++; v0 477 libavcodec/huffyuvenc.c put_bits(&s->pb, s->len[2][v0], s->bits[2][v0]); v0 485 libavcodec/huffyuvenc.c put_bits(&s->pb, s->len[2][v0], s->bits[2][v0]); v0 157 libavcodec/mips/aacsbr_mips.h float *v0, int *v_off, const unsigned int div) v0 171 libavcodec/mips/aacsbr_mips.h memcpy(&v0[SBR_SYNTHESIS_BUF_SIZE - saved_samples], v0, saved_samples * sizeof(float)); v0 176 libavcodec/mips/aacsbr_mips.h v = v0 + *v_off; v0 459 libavcodec/mips/aacsbr_mips.h : [dst]"+r"(dst), [v0]"+r"(vv0), [s0]"+r"(s0), v0 275 libavcodec/mips/ac3dsp_mips.c float v0, v1, v2, v3; v0 387 libavcodec/mips/ac3dsp_mips.c [v0]"=&f"(v0), [v1]"=&f"(v1), [v2]"=&f"(v2), [v3]"=&f"(v3), v0 320 libavcodec/mips/sbrdsp_mips.c float *v0 = v; v0 430 libavcodec/mips/sbrdsp_mips.c : [v0]"+r"(v0), [v1]"+r"(v1), [src0]"+r"(psrc0), [src1]"+r"(psrc1), v0 786 libavcodec/mpegaudiodec_template.c int len, i, j, k, l, v0, shift, gain, gains[3]; v0 796 libavcodec/mpegaudiodec_template.c v0 = gain - ((g->scale_factors[i] + pretab[i]) << shift) + 400; v0 799 libavcodec/mpegaudiodec_template.c *exp_ptr++ = v0; v0 811 libavcodec/mpegaudiodec_template.c v0 = gains[l] - (g->scale_factors[k++] << shift) + 400; v0 813 libavcodec/mpegaudiodec_template.c *exp_ptr++ = v0; v0 717 libavcodec/ppc/fft_vsx.h vec_f v0, v1, v2, v3; v0 741 libavcodec/ppc/fft_vsx.h v0 = vec_ld(0, &(out[0])); // r0 v0 754 libavcodec/ppc/fft_vsx.h v4 = vec_sub(v0, v12); v0 755 libavcodec/ppc/fft_vsx.h v0 = vec_add(v0, v12); v0 759 libavcodec/ppc/fft_vsx.h vec_st(v0, 0, &(out[0])); // r0 v0 793 libavcodec/ppc/fft_vsx.h v0 = vec_ld(0, &(out[0])); // r0 v0 806 libavcodec/ppc/fft_vsx.h v4 = vec_sub(v0, v12); v0 807 libavcodec/ppc/fft_vsx.h v0 = vec_add(v0, v12); v0 811 libavcodec/ppc/fft_vsx.h vec_st(v0, 0, &(out[0])); // r0 v0 262 libavcodec/ppc/h264dsp.c vec_u8 dcplus, dcminus, v0, v1, v2, v3, aligner; v0 286 libavcodec/ppc/h264dsp.c v0 = vec_ld(0, dst+0*stride); v0 291 libavcodec/ppc/h264dsp.c v0 = vec_adds(v0, dcplus); v0 296 libavcodec/ppc/h264dsp.c v0 = vec_subs(v0, dcminus); v0 301 libavcodec/ppc/h264dsp.c vec_st(v0, 0, dst+0*stride); v0 653 libavcodec/ppc/h264dsp.c vec_s16 vtemp, vweight, voffset, v0, v1; v0 676 libavcodec/ppc/h264dsp.c v0 = (vec_s16)VEC_MERGEH(zero_u8v, vblock); v0 680 libavcodec/ppc/h264dsp.c v0 = vec_mladd(v0, vweight, zero_s16v); v0 681 libavcodec/ppc/h264dsp.c v0 = vec_adds(v0, voffset); v0 682 libavcodec/ppc/h264dsp.c v0 = vec_sra(v0, vlog2_denom); v0 689 libavcodec/ppc/h264dsp.c vblock = vec_packsu(v0, v1); v0 702 libavcodec/ppc/h264dsp.c vec_s16 vtemp, vweights, vweightd, voffset, v0, v1, v2, v3; v0 728 libavcodec/ppc/h264dsp.c v0 = (vec_s16)VEC_MERGEH(zero_u8v, vdst); v0 741 libavcodec/ppc/h264dsp.c v0 = vec_mladd(v0, vweightd, zero_s16v); v0 744 libavcodec/ppc/h264dsp.c v0 = vec_adds(v0, voffset); v0 745 libavcodec/ppc/h264dsp.c v0 = vec_adds(v0, v2); v0 746 libavcodec/ppc/h264dsp.c v0 = vec_sra(v0, vlog2_denom); v0 756 libavcodec/ppc/h264dsp.c vdst = vec_packsu(v0, v1); v0 55 libavcodec/ppc/mpegaudiodsp_altivec.c vector float av_uninit(v0), av_uninit(v4); v0 65 libavcodec/ppc/mpegaudiodsp_altivec.c v0 = vec_madd(v3, v1, v0); \ v0 70 libavcodec/ppc/mpegaudiodsp_altivec.c v0 = vec_xor(v0, v0); v0 82 libavcodec/ppc/mpegaudiodsp_altivec.c vec_st(v0, 0, sum1a); v0 856 libavcodec/wmaprodec.c uint32_t v0, v1; v0 857 libavcodec/wmaprodec.c v0 = get_vlc2(&s->gb, vec1_vlc.table, VLCBITS, VEC1MAXDEPTH); v0 858 libavcodec/wmaprodec.c if (v0 == HUFF_VEC1_SIZE - 1) v0 859 libavcodec/wmaprodec.c v0 += ff_wma_get_large_val(&s->gb); v0 863 libavcodec/wmaprodec.c vals[i ] = av_float2int(v0); v0 107 libavdevice/opengl_enc.c typedef void (APIENTRY *FF_PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); v0 108 libavdevice/opengl_enc.c typedef void (APIENTRY *FF_PFNGLUNIFORM1IPROC) (GLint location, GLint v0); v0 90 libavfilter/vf_lut3d.c static inline float lerpf(float v0, float v1, float f) v0 92 libavfilter/vf_lut3d.c return v0 + (v1 - v0) * f; v0 95 libavfilter/vf_lut3d.c static inline struct rgbvec lerp(const struct rgbvec *v0, const struct rgbvec *v1, float f) v0 98 libavfilter/vf_lut3d.c lerpf(v0->r, v1->r, f), lerpf(v0->g, v1->g, f), lerpf(v0->b, v1->b, f) v0 228 libavresample/audio_mix.c float v0, v1; v0 241 libavresample/audio_mix.c v0 = *src0++; v0 243 libavresample/audio_mix.c *dst0++ = v0 * m0[0] + v0 249 libavresample/audio_mix.c *dst1++ = v0 * m1[0] + v0 262 libavresample/audio_mix.c float v0, v1; v0 273 libavresample/audio_mix.c v0 = *src0++; v0 275 libavresample/audio_mix.c *dst0++ = v0 * matrix[0][0] + v1 * matrix[0][1]; v0 276 libavresample/audio_mix.c *dst1++ = v0 * matrix[1][0] + v1 * matrix[1][1]; v0 277 libavresample/audio_mix.c *dst2++ = v0 * matrix[2][0] + v1 * matrix[2][1]; v0 278 libavresample/audio_mix.c *dst3++ = v0 * matrix[3][0] + v1 * matrix[3][1]; v0 279 libavresample/audio_mix.c *dst4++ = v0 * matrix[4][0] + v1 * matrix[4][1]; v0 280 libavresample/audio_mix.c *dst5++ = v0 * matrix[5][0] + v1 * matrix[5][1]; v0 372 libavutil/blowfish.c uint32_t v0, v1; v0 377 libavutil/blowfish.c v0 = AV_RB32(src); v0 380 libavutil/blowfish.c av_blowfish_crypt_ecb(ctx, &v0, &v1, decrypt); v0 383 libavutil/blowfish.c v0 ^= AV_RB32(iv); v0 388 libavutil/blowfish.c AV_WB32(dst, v0); v0 399 libavutil/blowfish.c v0 = AV_RB32(dst); v0 402 libavutil/blowfish.c v0 = AV_RB32(src); v0 406 libavutil/blowfish.c av_blowfish_crypt_ecb(ctx, &v0, &v1, decrypt); v0 408 libavutil/blowfish.c AV_WB32(dst, v0); v0 47 libavutil/xtea.c uint32_t v0, v1; v0 55 libavutil/xtea.c v0 = AV_RB32(src); v0 64 libavutil/xtea.c v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + ctx->key[(sum >> 11) & 3]); v0 66 libavutil/xtea.c v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + ctx->key[sum & 3]); v0 70 libavutil/xtea.c v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (SUM + K0); \ v0 71 libavutil/xtea.c v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (SUM - 0x9E3779B9U + K1) v0 107 libavutil/xtea.c v0 ^= AV_RB32(iv); v0 117 libavutil/xtea.c v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + ctx->key[sum & 3]); v0 119 libavutil/xtea.c v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + ctx->key[(sum >> 11) & 3]); v0 123 libavutil/xtea.c v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (SUM + K0);\ v0 124 libavutil/xtea.c v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (SUM + 0x9E3779B9U + K1) v0 160 libavutil/xtea.c AV_WB32(dst, v0); v0 183 libswscale/ppc/swscale_altivec.c #define LOAD_SRCV(pos, a, s, per, v0, v1, vf) {\ v0 185 libswscale/ppc/swscale_altivec.c vf = vec_perm(v0, v1, per);\ v0 187 libswscale/ppc/swscale_altivec.c #define LOAD_SRCV8(pos, a, s, per, v0, v1, vf) {\ v0 191 libswscale/ppc/swscale_altivec.c vf = vec_perm(v0, src_v1, per);\ v0 204 libswscale/ppc/swscale_altivec.c #define LOAD_SRCV(pos, a, s, per, v0, v1, vf) {\ v0 207 libswscale/ppc/swscale_altivec.c #define LOAD_SRCV8(pos, a, s, per, v0, v1, vf) LOAD_SRCV(pos, a, s, per, v0, v1, vf)