/third_party/ffmpeg/libavcodec/ |
D | flacdsp_lpc_template.c | 44 s = smp[i-(x)+1]; \ 49 const int32_t *smp, int len, int order, in FUNC() 54 int s = smp[i-order]; in FUNC() 103 res[i ] = smp[i ] - CLIP(p0 >> shift); in FUNC() 104 res[i+1] = smp[i+1] - CLIP(p1 >> shift); in FUNC() 108 static void FUNC(flac_lpc_encode_c)(int32_t *res, const int32_t *smp, int len, in FUNC() 113 res[i] = smp[i]; in FUNC() 117 int s = smp[i]; in FUNC() 122 s = smp[i-j-1]; in FUNC() 125 res[i ] = smp[i ] - CLIP(p0 >> shift); in FUNC() [all …]
|
D | ws-snd1.c | 96 int code, smp, size; in ws_snd_decode_frame() local 104 case 0: smp = 4 * (count + 1); break; in ws_snd_decode_frame() 105 case 1: smp = 2 * (count + 1); break; in ws_snd_decode_frame() 106 case 2: smp = (count & 0x20) ? 1 : count + 1; break; in ws_snd_decode_frame() 107 default: smp = count + 1; break; in ws_snd_decode_frame() 109 if (samples_end - samples < smp) in ws_snd_decode_frame() 155 memcpy(samples, buf, smp); in ws_snd_decode_frame() 156 samples += smp; in ws_snd_decode_frame() 157 buf += smp; in ws_snd_decode_frame() 162 memset(samples, sample, smp); in ws_snd_decode_frame() [all …]
|
D | flacenc.c | 771 static void encode_residual_fixed(int32_t *res, const int32_t *smp, int n, in encode_residual_fixed() argument 777 res[i] = smp[i]; in encode_residual_fixed() 781 res[i] = smp[i]; in encode_residual_fixed() 784 res[i] = smp[i] - smp[i-1]; in encode_residual_fixed() 786 int a = smp[order-1] - smp[order-2]; in encode_residual_fixed() 788 int b = smp[i ] - smp[i-1]; in encode_residual_fixed() 790 a = smp[i+1] - smp[i ]; in encode_residual_fixed() 794 int a = smp[order-1] - smp[order-2]; in encode_residual_fixed() 795 int c = smp[order-1] - 2*smp[order-2] + smp[order-3]; in encode_residual_fixed() 797 int b = smp[i ] - smp[i-1]; in encode_residual_fixed() [all …]
|
D | alsdec.c | 616 int smp = bd->block_length - 1; in decode_const_block_data() local 621 for (; smp; smp--) in decode_const_block_data() 907 unsigned int smp = 0; in decode_var_block_data() local 940 for (smp = 0; smp < FFMIN(opt_order, block_length); smp++) { in decode_var_block_data() 943 for (sb = 0; sb < smp; sb++) in decode_var_block_data() 947 parcor_to_lpc(smp, quant_cof, lpc_cof); in decode_var_block_data() 987 raw_samples = bd->raw_samples + smp; in decode_var_block_data() 1041 unsigned int smp; in decode_block() local 1056 for (smp = 0; smp < bd->block_length; smp++) in decode_block() 1057 bd->raw_samples[smp] = (unsigned)bd->raw_samples[smp] << *bd->shift_lsbs; in decode_block() [all …]
|
D | flacdsp.h | 33 void (*lpc16_encode)(int32_t *res, const int32_t *smp, int len, int order, 35 void (*lpc32_encode)(int32_t *res, const int32_t *smp, int len, int order,
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_dmix_i386.c | 88 static int smp = 0, mmx = 0, cmov = 0; in mix_select_callbacks() local 100 if (!smp) { in mix_select_callbacks() 110 smp++; in mix_select_callbacks() 123 dmix->u.dmix.mix_areas_16 = smp > 1 ? mix_areas_16_smp_mmx : mix_areas_16_mmx; in mix_select_callbacks() 124 dmix->u.dmix.remix_areas_16 = smp > 1 ? remix_areas_16_smp_mmx : remix_areas_16_mmx; in mix_select_callbacks() 126 dmix->u.dmix.mix_areas_16 = smp > 1 ? mix_areas_16_smp : mix_areas_16; in mix_select_callbacks() 127 dmix->u.dmix.remix_areas_16 = smp > 1 ? remix_areas_16_smp : remix_areas_16; in mix_select_callbacks() 129 dmix->u.dmix.mix_areas_32 = smp > 1 ? mix_areas_32_smp : mix_areas_32; in mix_select_callbacks() 130 dmix->u.dmix.remix_areas_32 = smp > 1 ? remix_areas_32_smp : remix_areas_32; in mix_select_callbacks() 132 dmix->u.dmix.mix_areas_24 = smp > 1 ? mix_areas_24_smp_cmov : mix_areas_24_cmov; in mix_select_callbacks() [all …]
|
D | pcm_dmix_x86_64.c | 71 static int smp = 0; in mix_select_callbacks() local 83 if (!smp) { in mix_select_callbacks() 93 smp++; in mix_select_callbacks() 99 dmix->u.dmix.mix_areas_16 = smp > 1 ? mix_areas_16_smp : mix_areas_16; in mix_select_callbacks() 100 dmix->u.dmix.remix_areas_16 = smp > 1 ? remix_areas_16_smp : remix_areas_16; in mix_select_callbacks() 101 dmix->u.dmix.mix_areas_32 = smp > 1 ? mix_areas_32_smp : mix_areas_32; in mix_select_callbacks() 102 dmix->u.dmix.remix_areas_32 = smp > 1 ? remix_areas_32_smp : remix_areas_32; in mix_select_callbacks() 103 dmix->u.dmix.mix_areas_24 = smp > 1 ? mix_areas_24_smp : mix_areas_24; in mix_select_callbacks() 104 dmix->u.dmix.remix_areas_24 = smp > 1 ? remix_areas_24_smp : remix_areas_24; in mix_select_callbacks()
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | new-target-class.js | 33 var smp = new Simple (); variable 34 assert (smp.getter === undefined); 35 assert (smp.called === 1); 36 smp.setter = -1; 37 assert (smp.called === 2);
|
/third_party/skia/resources/sksl/errors/ |
D | BinaryInvalidType.sksl | 29 sampler2D smp; 32 float x = smp * 2; 36 float x = 2 * smp; 40 float x = smp * smp;
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-smp/ |
D | README.md | 7 ![lws-smp-overview](/doc-assets/lws-smp-ov.png) 16 ![lws-smp-example](/doc-assets/lws-smp-example.png) 27 $ ./lws-minimal-http-server-smp
|
D | CMakeLists.txt | 1 project(lws-minimal-http-server-smp C) 9 set(SAMP lws-minimal-http-server-smp) 10 set(SRCS minimal-http-server-smp.c)
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-smp/ |
D | CMakeLists.txt | 1 project(lws-minimal-http-server-eventlib-smp C) 9 set(SAMP lws-minimal-http-server-eventlib-smp) 10 set(SRCS minimal-http-server-eventlib-smp.c)
|
D | README.md | 27 $ ./lws-minimal-http-server-eventlib-smp
|
/third_party/ffmpeg/libavcodec/x86/ |
D | flac_dsp_gpl.asm | 29 cglobal flac_enc_lpc_16, 5, 7, 8, 0, res, smp, len, order, coefs 35 cglobal flac_enc_lpc_16, 5, 6, 8, 0, res, smp, len, order, coefs 70 movu m1, [smpq+negj*4-4] ; s = smp[i-j-1] 90 psubd m1, m0 ; smp[i] - p 93 movu [resq], m1 ; res[i] = smp[i] - (p >> shift)
|
/third_party/glslang/Test/ |
D | spv.texture.sampler.transform.frag | 3 uniform sampler smp; 12 color = texture(sampler2D(tex, smp), coord);
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threads-smp/ |
D | README.md | 5 as in the http-server-smp example (but with ws). 21 $ ./lws-minimal-ws-server-threads-smp 22 [2019/01/28 06:59:17:4217] USER: LWS minimal ws server + threads + smp | visit http://localhost:7681
|
D | CMakeLists.txt | 1 project(lws-minimal-ws-server-threads-smp C) 9 set(SAMP lws-minimal-ws-server-threads-smp)
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threads-foreign-libuv-smp/ |
D | README.md | 4 -threads example, multiple service threads as in the http-server-smp 21 $ ./lws-minimal-ws-server-threads-smp 22 [2019/01/28 06:59:17:4217] USER: LWS minimal ws server + threads + smp | visit http://localhost:7681
|
D | CMakeLists.txt | 1 project(lws-minimal-ws-server-threads-foreign-libuv-smp C) 9 set(SAMP lws-minimal-ws-server-threads-foreign-smp)
|
/third_party/libwebsockets/scripts/ |
D | h2load-smp.sh | 12 cd ../minimal-examples/http-server/minimal-http-server-smp 13 $PW/bin/lws-minimal-http-server-smp -s &
|
D | travis_control.sh | 35 ../scripts/h2load-smp.sh
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
D | inline_opaque_test.cpp | 42 OpMemberName %S_t 2 "smp" in TEST_F() 240 OpMemberName %S_t 2 "smp" in TEST_F() 356 OpMemberName %S_t 2 "smp" in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | inline_opaque_test.cpp | 42 OpMemberName %S_t 2 "smp" in TEST_F() 240 OpMemberName %S_t 2 "smp" in TEST_F() 356 OpMemberName %S_t 2 "smp" in TEST_F()
|
/third_party/spirv-tools/test/opt/ |
D | inline_opaque_test.cpp | 42 OpMemberName %S_t 2 "smp" in TEST_F() 247 OpMemberName %S_t 2 "smp" in TEST_F()
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/ |
D | yadif.c | 208 int d = (smone[x] + smp[x])>>1; \ 210 int temporal_diff0 = FFABS(smone[x] - smp[x]); \ 247 const guint8 * smone, const guint8 * smp, const guint8 * sttwo, in filter_line_c() argument 284 guint8 *smp = (guint8 *) mp + 3; in filter_line_c_planar() local 329 const guint8 * smone, const guint8 * smp, const guint8 * sttwo, in filter_edges() argument
|