/third_party/libsnd/tests/ |
D | virtual_io_test.c | 57 { VIO_DATA *vf = (VIO_DATA *) user_data ; in vfget_filelen() local 59 return vf->length ; in vfget_filelen() 64 { VIO_DATA *vf = (VIO_DATA *) user_data ; in vfseek() local 68 vf->offset = offset ; in vfseek() 72 vf->offset = vf->offset + offset ; in vfseek() 76 vf->offset = vf->length + offset ; in vfseek() 82 return vf->offset ; in vfseek() 87 { VIO_DATA *vf = (VIO_DATA *) user_data ; in vfread() local 93 if (vf->offset + count > vf->length) in vfread() 94 count = vf->length - vf->offset ; in vfread() [all …]
|
/third_party/gstreamer/gstplugins_base/ext/gl/ |
D | gstglvideoflip.c | 244 _transform_caps (GstGLVideoFlip * vf, GstPadDirection direction, GstCaps * caps) in _transform_caps() argument 257 switch (vf->active_method) { in _transform_caps() 293 _set_active_method (GstGLVideoFlip * vf, GstVideoOrientationMethod method, in _set_active_method() argument 304 scale_x *= vf->aspect; in _set_active_method() 305 scale_y *= 1. / vf->aspect; in _set_active_method() 312 scale_x *= vf->aspect; in _set_active_method() 313 scale_y *= 1. / vf->aspect; in _set_active_method() 320 scale_x *= -vf->aspect; in _set_active_method() 321 scale_y *= 1. / vf->aspect; in _set_active_method() 329 scale_x *= -vf->aspect; in _set_active_method() [all …]
|
/third_party/libsnd/ossfuzz/ |
D | sndfile_fuzz_header.h | 12 { VIO_DATA *vf = (VIO_DATA *)user_data ; in vfget_filelen() local 13 return vf->length ; in vfget_filelen() 18 VIO_DATA *vf = (VIO_DATA *)user_data ; in vfseek() local 27 new_offset = vf->offset + offset ; in vfseek() 31 new_offset = vf->length + offset ; in vfseek() 39 if (new_offset > vf->length) in vfseek() 43 new_offset, vf->length, whence, vf->offset, offset) ; in vfseek() 44 new_offset = vf->length ; in vfseek() 50 new_offset, whence, vf->offset, vf->length, offset) ; in vfseek() 53 vf->offset = new_offset ; in vfseek() [all …]
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_formats.c | 57 const struct v3d_format *vf = get_format(devinfo, f); in v3d_rt_format_supported() local 59 if (!vf) in v3d_rt_format_supported() 62 return vf->rt_type != V3D_OUTPUT_IMAGE_FORMAT_NO; in v3d_rt_format_supported() 68 const struct v3d_format *vf = get_format(devinfo, f); in v3d_get_rt_format() local 70 if (!vf) in v3d_get_rt_format() 73 return vf->rt_type; in v3d_get_rt_format() 80 const struct v3d_format *vf = get_format(devinfo, f); in v3d_tex_format_supported() local 82 return vf != NULL; in v3d_tex_format_supported() 88 const struct v3d_format *vf = get_format(devinfo, f); in v3d_get_tex_format() local 90 if (!vf) in v3d_get_tex_format() [all …]
|
/third_party/mesa3d/src/intel/compiler/ |
D | test_vf_float_conversions.cpp | 39 for (int vf = 1; vf < 128; vf++) { in SetUp() local 40 int ebits = (vf >> 4) & 0x7; in SetUp() 41 int mbits = vf & 0xf; in SetUp() 46 vf_to_float[vf] = ldexpf(x, exp); in SetUp() 65 for (int vf = 0; vf < 256; vf++) { in TEST_F() local 66 float expected = vf_to_float[vf % 128]; in TEST_F() 67 if (vf > 127) in TEST_F() 70 EXPECT_EQ(f2u(expected), f2u(brw_vf_to_float(vf))); in TEST_F() 76 for (int vf = 0; vf < 256; vf++) { in TEST_F() local 77 float f = vf_to_float[vf % 128]; in TEST_F() [all …]
|
D | brw_packed_float.c | 46 unsigned vf = (fu.s.sign << 7) | (exponent << 4) | mantissa; in brw_float_to_vf() local 49 if ((vf & 0x7f) == 0) in brw_float_to_vf() 56 return vf; in brw_float_to_vf() 60 brw_vf_to_float(unsigned char vf) in brw_vf_to_float() argument 65 if (vf == 0x00 || vf == 0x80) { in brw_vf_to_float() 66 fu.u = (unsigned)vf << 24; in brw_vf_to_float() 70 fu.s.sign = vf >> 7; in brw_vf_to_float() 71 fu.s.exponent = ((vf & 0x70) >> 4) + (127 - 3); in brw_vf_to_float() 72 fu.s.mantissa = (vf & 0xf) << (23 - 4); in brw_vf_to_float()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/ |
D | sfn_liverange_test.cpp | 67 ValueFactory vf; in TEST_F() local 69 Register *r1x = vf.dest_from_string("S1.x@free"); in TEST_F() 70 RegisterVec4 r0 = vf.dest_vec4_from_string("S0.xyzw", dummy, pin_group); in TEST_F() 72 LiveRangeMap expect = vf.prepare_live_range_map(); in TEST_F() 86 ValueFactory vf; in TEST_F() local 87 Register *r0x = vf.dest_from_string("S0.x@free"); in TEST_F() 88 Register *r1x = vf.dest_from_string("S1.x@free"); in TEST_F() 89 RegisterVec4 r2 = vf.dest_vec4_from_string("S2.xyzw", dummy, pin_none); in TEST_F() 90 Register *r3x = vf.dest_from_string("S3.x@free"); in TEST_F() 91 RegisterVec4 r4 = vf.dest_vec4_from_string("S4.xyzw", dummy, pin_group); in TEST_F() [all …]
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_instr_mem.cpp | 181 auto& vf = shader.value_factory(); in emit_atomic_op2() local 193 auto dest = vf.dest(instr->dest, 0, pin_free); in emit_atomic_op2() 196 auto src_val = vf.src(instr->src[1], 0); in emit_atomic_op2() 198 auto temp_src_val = vf.temp_register(); in emit_atomic_op2() 213 auto dest = vf.dest(instr->dest, 0, pin_free); in emit_atomic_op2() 214 auto tmp = vf.temp_vec4(pin_group, {0, 1, 7, 7}); in emit_atomic_op2() 216 …shader.emit_instruction(new AluInstr(op3_muladd_uint24, tmp[0], uav_id, vf.literal(4), vf.literal(… in emit_atomic_op2() 219 … shader.emit_instruction(new AluInstr(op1_mov, tmp[0], vf.literal(4 * offset), AluInstr::write)); in emit_atomic_op2() 229 auto& vf = shader.value_factory(); in emit_atomic_read() local 234 auto dest = vf.dest(instr->dest, 0, pin_free); in emit_atomic_read() [all …]
|
D | sfn_shader_fs.cpp | 82 auto& vf = value_factory(); in load_input() local 89 vf.dest(intr->dest, i, pin_none), in load_input() 100 vf.dest(intr->dest, 0, pin_none), in load_input() 102 vf.inline_const(ALU_SRC_0, 0), in load_input() 201 auto& vf = value_factory(); in load_interpolated_input() local 206 vf.inject_value(intr->dest, i, m_pos_input[i]); in load_interpolated_input() 310 auto& vf = value_factory(); in emit_load_sample_mask_in() local 311 auto dest = vf.dest(instr->dest, 0, pin_free); in emit_load_sample_mask_in() 312 auto tmp = vf.temp_register(); in emit_load_sample_mask_in() 316 …emit_instruction(new AluInstr(op2_lshl_int, tmp, vf.one_i(), m_sample_id_reg, AluInstr::last_write… in emit_load_sample_mask_in() [all …]
|
D | sfn_instr_tex.cpp | 387 auto& vf = shader.value_factory(); in emit_tex_tex() local 397 auto dst = vf.dest_vec4(tex->dest, pin_group); in emit_tex_tex() 414 auto& vf = shader.value_factory(); in emit_tex_txl_txb() local 421 auto dst = vf.dest_vec4(tex->dest, pin_group); in emit_tex_txl_txb() 440 auto& vf = shader.value_factory(); in emit_tex_txf() local 452 auto src_coord = vf.temp_vec4(pin_group, swizzle); in emit_tex_txf() 462 vf.src(src.offset[i], i), in emit_tex_txf() 471 auto dst = vf.dest_vec4(tex->dest, pin_group); in emit_tex_txf() 491 auto& vf = shader.value_factory(); in emit_buf_txf() local 492 auto dst = vf.dest_vec4(tex->dest, pin_group); in emit_buf_txf() [all …]
|
/third_party/node/deps/v8/src/execution/arm64/ |
D | simulator-arm64.cc | 3914 VectorFormat vf = nfd.GetVectorFormat(); in VisitNEON2RegMisc() local 3936 rev64(vf, rd, rn); in VisitNEON2RegMisc() 3939 rev32(vf, rd, rn); in VisitNEON2RegMisc() 3942 rev16(vf, rd, rn); in VisitNEON2RegMisc() 3945 suqadd(vf, rd, rn); in VisitNEON2RegMisc() 3948 usqadd(vf, rd, rn); in VisitNEON2RegMisc() 3951 cls(vf, rd, rn); in VisitNEON2RegMisc() 3954 clz(vf, rd, rn); in VisitNEON2RegMisc() 3957 cnt(vf, rd, rn); in VisitNEON2RegMisc() 3960 abs(vf, rd, rn).SignedSaturate(vf); in VisitNEON2RegMisc() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_v360.c | 978 static inline void rotate_cube_face(float *uf, float *vf, int rotation) in rotate_cube_face() argument 987 *uf = -*vf; in rotate_cube_face() 988 *vf = tmp; in rotate_cube_face() 992 *vf = -*vf; in rotate_cube_face() 996 *uf = *vf; in rotate_cube_face() 997 *vf = tmp; in rotate_cube_face() 1004 static inline void rotate_cube_face_inverse(float *uf, float *vf, int rotation) in rotate_cube_face_inverse() argument 1013 *uf = *vf; in rotate_cube_face_inverse() 1014 *vf = tmp; in rotate_cube_face_inverse() 1018 *vf = -*vf; in rotate_cube_face_inverse() [all …]
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_formats.c | 122 const struct vc4_format *vf = get_format(f); in vc4_rt_format_supported() local 124 if (!vf) in vc4_rt_format_supported() 127 return vf->rt_type != RT_NO; in vc4_rt_format_supported() 133 const struct vc4_format *vf = get_format(f); in vc4_rt_format_is_565() local 135 if (!vf) in vc4_rt_format_is_565() 138 return vf->rt_type == RT_RGB565; in vc4_rt_format_is_565() 144 const struct vc4_format *vf = get_format(f); in vc4_tex_format_supported() local 146 return vf != NULL; in vc4_tex_format_supported() 152 const struct vc4_format *vf = get_format(f); in vc4_get_tex_format() local 154 if (!vf) in vc4_get_tex_format() [all …]
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | cy_cy_FONIPA.txt | 122 ˈ { ɨu } [bχdðɡvfθ] $end → ɨːu; 123 ˈ { aw } [bχdðɡvfθ] $end → ɑːu; 124 ˈ { ew } [bχdðɡvfθ] $end → eːu; 125 ˈ { oe } [bχdðɡvfθ] $end → ɔːɨ; 126 ˈ { ou } [bχdðɡvfθ] $end → ɔːɨ; 127 ˈ { wy } [bχdðɡvfθ] $end → uːɨ; 128 ˈ { ɨu } [bχdðɡvfθ] $vowel → ɨːu; 129 ˈ { aw } [bχdðɡvfθ] $vowel → ɑːu; 130 ˈ { ew } [bχdðɡvfθ] $vowel → eːu; 131 ˈ { oe } [bχdðɡvfθ] $vowel → ɔːɨ; [all …]
|
/third_party/icu/icu4c/source/data/translit/ |
D | cy_cy_FONIPA.txt | 122 ˈ { ɨu } [bχdðɡvfθ] $end → ɨːu; 123 ˈ { aw } [bχdðɡvfθ] $end → ɑːu; 124 ˈ { ew } [bχdðɡvfθ] $end → eːu; 125 ˈ { oe } [bχdðɡvfθ] $end → ɔːɨ; 126 ˈ { ou } [bχdðɡvfθ] $end → ɔːɨ; 127 ˈ { wy } [bχdðɡvfθ] $end → uːɨ; 128 ˈ { ɨu } [bχdðɡvfθ] $vowel → ɨːu; 129 ˈ { aw } [bχdðɡvfθ] $vowel → ɑːu; 130 ˈ { ew } [bχdðɡvfθ] $vowel → eːu; 131 ˈ { oe } [bχdðɡvfθ] $vowel → ɔːɨ; [all …]
|
/third_party/ffmpeg/tests/fate/ |
D | dfa.mak | 2 fate-dfa1: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0000.dfa -pix_fmt rgb24 -vf scale 5 fate-dfa2: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0001.dfa -pix_fmt rgb24 -vf scale 8 fate-dfa3: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0002.dfa -pix_fmt rgb24 -vf scale 11 fate-dfa4: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0003.dfa -pix_fmt rgb24 -vf scale 14 fate-dfa5: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0004.dfa -pix_fmt rgb24 -vf scale 17 fate-dfa6: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0005.dfa -pix_fmt rgb24 -vf scale 20 fate-dfa7: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0006.dfa -pix_fmt rgb24 -vf scale 23 fate-dfa8: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0007.dfa -pix_fmt rgb24 -vf scale 26 fate-dfa9: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0008.dfa -pix_fmt rgb24 -vf scale 29 fate-dfa10: CMD = framecrc -i $(TARGET_SAMPLES)/chronomaster-dfa/0009.dfa -pix_fmt rgb24 -vf scale [all …]
|
D | video.mak | 2 fate-4xm-1: CMD = framecrc -i $(TARGET_SAMPLES)/4xm/version1.4xm -pix_fmt rgb24 -an -vf scale 5 fate-4xm-2: CMD = framecrc -i $(TARGET_SAMPLES)/4xm/version2.4xm -pix_fmt rgb24 -an -vf scale 11 fate-012v: CMD = framecrc -i $(TARGET_SAMPLES)/012v/sample.avi -pix_fmt yuv422p16le -vf scale 14 fate-aasc: CMD = framecrc -i $(TARGET_SAMPLES)/aasc/AASC-1.5MB.AVI -pix_fmt rgb24 -vf scale 23 fate-alg-mm: CMD = framecrc -i $(TARGET_SAMPLES)/alg-mm/ibmlogo.mm -an -pix_fmt rgb24 -vf scale 29 …D = framecrc -chars_per_frame 44100 -i $(TARGET_SAMPLES)/ansi/TRE-IOM5.ANS -pix_fmt rgb24 -vf scale 32 …MD = framecrc -chars_per_frame 44100 -i $(TARGET_SAMPLES)/ansi/ansi256.ans -pix_fmt rgb24 -vf scale 35 fate-armovie-escape124: CMD = framecrc -i $(TARGET_SAMPLES)/rpl/ESCAPE.RPL -pix_fmt rgb24 -vf scale… 53 …framecrc -i $(TARGET_SAMPLES)/bethsoft-vid/ANIM0001.VID -t 5 -pix_fmt rgb24 -vf scale -af aresample 56 fate-bfi: CMD = framecrc -i $(TARGET_SAMPLES)/bfi/2287.bfi -pix_fmt rgb24 -vf scale -af aresample [all …]
|
D | bmp.mak | 2 fate-bmp-1bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test1.bmp -pix_fmt rgb24 -vf scale 5 fate-bmp-4bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test4.bmp -pix_fmt rgb24 -vf scale 8 fate-bmp-4bit-os2: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test4os2v2.bmp -pix_fmt rgb24 -vf scale 11 fate-bmp-8bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test8.bmp -pix_fmt rgb24 -vf scale 14 fate-bmp-8bit-os2: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test8os2.bmp -pix_fmt rgb24 -vf scale 17 fate-bmp-15bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16.bmp -pix_fmt rgb555le -vf scale 20 fate-bmp-15bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf555.bmp -pix_fmt rgb555le -vf … 23 fate-bmp-16bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf565.bmp -pix_fmt rgb565le -vf … 29 fate-bmp-32bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test32.bmp -pix_fmt bgr24 -vf scale 32 fate-bmp-32bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test32bf.bmp -pix_fmt bgr24 -vf scale [all …]
|
D | filter-video.mak | 2 …_conversion_filters -idct simple -i $(TARGET_SAMPLES)/smjpeg/scenwin.mjpg -vf "trim=duration=0.5,p… 9 fate-filter-delogo: CMD = framecrc -i $(TARGET_SAMPLES)/real/rv30.rm -vf perms=random,delogo=show=0… 12 …s bitexact -idct simple -i $(TARGET_SAMPLES)/mpeg2/mpeg2_field_encoding.ts -frames:v 30 -vf yadif=0 15 …s bitexact -idct simple -i $(TARGET_SAMPLES)/mpeg2/mpeg2_field_encoding.ts -frames:v 59 -vf yadif=1 18 …)/mpeg2/mpeg2_field_encoding.ts -flags bitexact -pix_fmt yuv420p10le -frames:v 30 -vf yadif=0,scale 21 …)/mpeg2/mpeg2_field_encoding.ts -flags bitexact -pix_fmt yuv420p16le -frames:v 30 -vf yadif=0,scale 26 … bitexact -idct simple -i $(TARGET_SAMPLES)/mpeg2/mpeg2_field_encoding.ts -frames:v 30 -vf w3fdif=0 29 … bitexact -idct simple -i $(TARGET_SAMPLES)/mpeg2/mpeg2_field_encoding.ts -frames:v 30 -vf w3fdif=1 34 …exact -idct simple -i $(TARGET_SAMPLES)/mpeg2/mpeg2_field_encoding.ts -frames:v 30 -vf mcdeint=fast 37 …idct simple -i $(TARGET_SAMPLES)/mpeg2/mpeg2_field_encoding.ts -frames:v 30 -vf mcdeint=mode=medium [all …]
|
D | prores.mak | 14 …bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422.mov -pix_fmt yuv422p10le -vf scale 15 …exact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_HQ.mov -pix_fmt yuv422p10le -vf scale 16 …exact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_LT.mov -pix_fmt yuv422p10le -vf scale 17 …ct -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_Proxy.mov -pix_fmt yuv422p10le -vf scale 18 … -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_with_Alpha.mov -pix_fmt yuva444p12le -vf scale 19 …1 -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_with_Alpha.mov -pix_fmt yuv444p12le -vf scale 20 …texact -i $(TARGET_SAMPLES)/prores/prores4444_with_transparency.mov -pix_fmt yuva444p12le -vf scale 21 …alpha 1 -i $(TARGET_SAMPLES)/prores/prores4444_with_transparency.mov -pix_fmt yuv444p12le -vf scale 22 …ct -c:a aac_fixed -i $(TARGET_SAMPLES)/prores/gray.mov -pix_fmt yuv422p10le -vf scale -af aresample
|
D | screen.mak | 3 fate-cscd: CMD = framecrc -i $(TARGET_SAMPLES)/CSCD/sample_video.avi -an -pix_fmt rgb24 -vf scale 30 fate-fraps-v3: CMD = framecrc -i $(TARGET_SAMPLES)/fraps/psclient-partial.avi -pix_fmt rgb24 -vf sc… 57 fate-rscc-8bit: CMD = framecrc -i $(TARGET_SAMPLES)/rscc/8bpp.avi -an -pix_fmt rgb24 -vf scale 87 fate-tscc-15bit: CMD = framecrc -i $(TARGET_SAMPLES)/tscc/oneminute.avi -t 15 -pix_fmt rgb24 -vf sc… 90 …MD = framecrc -i $(TARGET_SAMPLES)/tscc/2004-12-17-uebung9-partial.avi -pix_fmt rgb24 -an -vf scale 105 fate-vmnc-16bit: CMD = framecrc -i $(TARGET_SAMPLES)/VMnc/test.avi -pix_fmt rgb24 -vf scale 108 …it: CMD = framecrc -i $(TARGET_SAMPLES)/VMnc/VS2k5DebugDemo-01-partial.avi -pix_fmt rgb24 -vf scale 114 fate-zmbv-8bit: CMD = framecrc -i $(TARGET_SAMPLES)/zmbv/wc2_001-partial.avi -an -pix_fmt rgb24 -vf… 117 fate-zmbv-15bit: CMD = framecrc -i $(TARGET_SAMPLES)/zmbv/zmbv_15bit.avi -pix_fmt rgb24 -t 25 -vf s… 120 fate-zmbv-16bit: CMD = framecrc -i $(TARGET_SAMPLES)/zmbv/zmbv_16bit.avi -pix_fmt rgb24 -t 25 -vf s… [all …]
|
/third_party/ffmpeg/libswscale/ppc/ |
D | swscale_altivec.c | 56 #define LOAD_FILTER(vf,f) {\ argument 58 vf = vec_ld(joffset, f);\ 59 vf = vec_perm(vf, vf, perm0);\ 72 #define GET_VF4(a, vf, f) {\ argument 73 vf = vec_ld(a<< 3, f);\ 75 vf = vec_mergel(vf, (vector signed short)vzero);\ 77 vf = vec_mergeh(vf, (vector signed short)vzero);\ 87 #define LOAD_SRCV(pos, a, s, per, v0, v1, vf) {\ argument 89 vf = vec_perm(v0, v1, per);\ 91 #define LOAD_SRCV8(pos, a, s, per, v0, v1, vf) {\ argument [all …]
|
/third_party/vixl/src/aarch64/ |
D | simulator-aarch64.cc | 6691 VectorFormat vf = nfd.GetVectorFormat(); in Simulator() local 6712 rev64(vf, rd, rn); in Simulator() 6715 rev32(vf, rd, rn); in Simulator() 6718 rev16(vf, rd, rn); in Simulator() 6721 suqadd(vf, rd, rd, rn); in Simulator() 6724 usqadd(vf, rd, rd, rn); in Simulator() 6727 cls(vf, rd, rn); in Simulator() 6730 clz(vf, rd, rn); in Simulator() 6733 cnt(vf, rd, rn); in Simulator() 6736 abs(vf, rd, rn).SignedSaturate(vf); in Simulator() [all …]
|
/third_party/skia/third_party/externals/harfbuzz/perf/ |
D | perf-extents.hh | 75 BENCHMARK_CAPTURE (extents, cff2/vf - ot - AdobeVFPrototype, FONT_BASE_PATH "AdobeVFPrototype.otf",… 76 BENCHMARK_CAPTURE (extents, cff2/vf - ft - AdobeVFPrototype, FONT_BASE_PATH "AdobeVFPrototype.otf",… 77 BENCHMARK_CAPTURE (extents, cff2/vf - tp - AdobeVFPrototype, FONT_BASE_PATH "AdobeVFPrototype.otf",… 83 BENCHMARK_CAPTURE (extents, glyf/vf - ot - SourceSerifVariable, FONT_BASE_PATH "SourceSerifVariable… 84 BENCHMARK_CAPTURE (extents, glyf/vf - ft - SourceSerifVariable, FONT_BASE_PATH "SourceSerifVariable… 85 BENCHMARK_CAPTURE (extents, glyf/vf - tp - SourceSerifVariable, FONT_BASE_PATH "SourceSerifVariable… 91 BENCHMARK_CAPTURE (extents, glyf/vf - ot - Comfortaa, FONT_BASE_PATH "Comfortaa-Regular-new.ttf", t… 92 BENCHMARK_CAPTURE (extents, glyf/vf - ft - Comfortaa, FONT_BASE_PATH "Comfortaa-Regular-new.ttf", t… 93 BENCHMARK_CAPTURE (extents, glyf/vf - tp - Comfortaa, FONT_BASE_PATH "Comfortaa-Regular-new.ttf", t…
|
/third_party/gstreamer/gstplugins_good/gst/videofilter/ |
D | gstvideoflip.c | 986 gst_video_flip_configure_process (GstVideoFlip * vf) in gst_video_flip_configure_process() argument 988 switch (vf->v_format) { in gst_video_flip_configure_process() 992 vf->process = gst_video_flip_planar_yuv; in gst_video_flip_configure_process() 997 vf->process = gst_video_flip_y422; in gst_video_flip_configure_process() 1013 vf->process = gst_video_flip_packed_simple; in gst_video_flip_configure_process() 1017 vf->process = gst_video_flip_semi_planar_yuv; in gst_video_flip_configure_process() 1028 GstVideoFlip *vf = GST_VIDEO_FLIP (vfilter); in gst_video_flip_set_info() local 1031 vf->process = NULL; in gst_video_flip_set_info() 1037 GST_OBJECT_LOCK (vf); in gst_video_flip_set_info() 1038 switch (vf->configuring_method) { in gst_video_flip_set_info() [all …]
|