Home
last modified time | relevance | path

Searched refs:vc (Results 1 – 25 of 172) sorted by relevance

1234567

/third_party/ffmpeg/libavcodec/
Dvorbisdec.c165 av_log(vc->avctx, AV_LOG_ERROR,\
188 static void vorbis_free(vorbis_context *vc) in vorbis_free() argument
192 av_freep(&vc->channel_residues); in vorbis_free()
193 av_freep(&vc->saved); in vorbis_free()
194 av_freep(&vc->fdsp); in vorbis_free()
196 if (vc->residues) in vorbis_free()
197 for (i = 0; i < vc->residue_count; i++) in vorbis_free()
198 av_freep(&vc->residues[i].classifs); in vorbis_free()
199 av_freep(&vc->residues); in vorbis_free()
200 av_freep(&vc->modes); in vorbis_free()
[all …]
Dlibvorbisdec.c31 vorbis_comment vc; /**< VorbisComment info */ member
49 vorbis_comment_init(&context->vc) ; in oggvorbis_decode_init()
108 if(vorbis_synthesis_headerin(&context->vi, &context->vc, &context->op)<0){ in oggvorbis_decode_init()
205 vorbis_comment_clear(&context->vc) ; in oggvorbis_decode_close()
/third_party/boost/libs/algorithm/test/
Done_of_test.cpp40 std::vector<char> vc(some_letters, some_letters + 5); in test_one() local
66 BOOST_CHECK ( ba::one_of_equal ( vc.begin() + 1, vc.begin() + 2, 'q' )); in test_one()
67 BOOST_CHECK ( ba::one_of ( vc.begin() + 1, vc.begin() + 2, is_<char> ( 'q' ))); in test_one()
69 BOOST_CHECK (!ba::one_of_equal ( vc, '!' )); in test_one()
70 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
72 BOOST_CHECK (!ba::one_of_equal ( vc, 'n' )); in test_one()
73 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
77 BOOST_CHECK (!ba::one_of_equal ( vc.begin(), vc.begin(), 'a' )); in test_one()
79 BOOST_CHECK (!ba::one_of ( vc.begin(), vc.begin(), is_<char> ( 'a' ))); in test_one()
Dall_of_test.cpp40 std::vector<char> vc(some_letters, some_letters + 5); in test_all() local
59 BOOST_CHECK ( ba::all_of_equal ( vc.begin() + 1, vc.begin() + 2, 'q' )); in test_all()
60 BOOST_CHECK ( ba::all_of ( vc.begin() + 1, vc.begin() + 2, is_<char> ( 'q' ))); in test_all()
62 BOOST_CHECK (!ba::all_of_equal ( vc, '!' )); in test_all()
63 BOOST_CHECK (!ba::all_of ( vc, is_<char> ( '!' ))); in test_all()
66 BOOST_CHECK ( ba::all_of_equal ( vc.begin(), vc.begin(), 'a' )); in test_all()
68 BOOST_CHECK ( ba::all_of ( vc.begin(), vc.begin(), is_<char> ( 'a' ))); in test_all()
Dnone_of_test.cpp40 std::vector<char> vc(some_letters, some_letters + 5); in test_none() local
67 BOOST_CHECK ( ba::none_of_equal ( vc, 'z' )); in test_none()
68 BOOST_CHECK ( ba::none_of ( vc, is_<char> ( 'z' ))); in test_none()
70 BOOST_CHECK (!ba::none_of_equal ( vc, 'a' )); in test_none()
71 BOOST_CHECK (!ba::none_of ( vc, is_<char> ( 'a' ))); in test_none()
73 BOOST_CHECK (!ba::none_of_equal ( vc, 'n' )); in test_none()
74 BOOST_CHECK (!ba::none_of ( vc, is_<char> ( 'n' ))); in test_none()
77 BOOST_CHECK ( ba::none_of_equal ( vc.begin(), vc.begin(), 'a' )); in test_none()
79 BOOST_CHECK ( ba::none_of ( vc.begin(), vc.begin(), is_<char> ( 'a' ))); in test_none()
Dany_of_test.cpp40 std::vector<char> vc(some_letters, some_letters + 5); in test_any() local
74 BOOST_CHECK ( ba::any_of_equal ( vc, 'q' )); in test_any()
75 BOOST_CHECK ( ba::any_of ( vc, is_<char> ( 'q' ))); in test_any()
77 BOOST_CHECK (!ba::any_of_equal ( vc, '!' )); in test_any()
78 BOOST_CHECK (!ba::any_of ( vc, is_<char> ( '!' ))); in test_any()
80 BOOST_CHECK ( ba::any_of_equal ( vc, 'n' )); in test_any()
81 BOOST_CHECK ( ba::any_of ( vc, is_<char> ( 'n' ))); in test_any()
84 BOOST_CHECK (!ba::any_of_equal ( vc.begin(), vc.begin(), 'a' )); in test_any()
86 BOOST_CHECK (!ba::any_of ( vc.begin(), vc.begin(), is_<char> ( 'a' ))); in test_any()
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/vert/
Dfunctions_nested.vert18 vec4 vc[16];
107 dst_reg1 = (in_diff_color * vc[13]);
108 tmp0.x = vec4(dot(vec4(in_pos.xyzx.xyz, 1.0), vc[4])).x;
109 tmp0.y = vec4(dot(vec4(in_pos.xyzx.xyz, 1.0), vc[5])).y;
110 tmp0.z = vec4(dot(vec4(in_pos.xyzx.xyz, 1.0), vc[6])).z;
112 tmp1.z = vc[15].xxxx.z;
113 dst_reg7.y = vec4(dot(vec4(tmp1.xyzx.xyz, 1.0), vc[8])).y;
114 dst_reg7.x = vec4(dot(vec4(tmp1.xyzx.xyz, 1.0), vc[7])).x;
115 dst_reg0.y = vec4(dot(vec4(tmp0.xyzx.xyz, 1.0), vc[1])).y;
116 dst_reg0.x = vec4(dot(vec4(tmp0.xyzx.xyz, 1.0), vc[0])).x;
/third_party/boost/boost/math/special_functions/
Dellint_3.hpp41 T ellint_pi_imp(T v, T k, T vc, const Policy& pol);
45 T ellint_pi_imp(T v, T phi, T k, T vc, const Policy& pol) in ellint_pi_imp() argument
95 return ellint_pi_imp(v, k, vc, pol); in ellint_pi_imp()
118 result = 2 * fabs(phi) * ellint_pi_imp(v, k, vc, pol) / constants::pi<T>(); in ellint_pi_imp()
135 result = sign * ellint_pi_imp(v, rphi, k, vc, pol); in ellint_pi_imp()
136 if((m > 0) && (vc > 0)) in ellint_pi_imp()
137 result += m * ellint_pi_imp(v, k, vc, pol); in ellint_pi_imp()
146 T vcr = sqrt(vc); in ellint_pi_imp()
152 T vcr = sqrt(-vc); in ellint_pi_imp()
232 T p1 = sqrt((-vc) * (1 - k2 / v)); in ellint_pi_imp()
[all …]
/third_party/flutter/engine/flutter/shell/platform/darwin/ios/framework/Source/
DFlutterViewControllerTest.m36 FlutterViewController* vc = [[FlutterViewController alloc] initWithEngine:engine
39 XCTAssertNotNil(vc);
42 XCTAssertEqual(vc.binaryMessenger, messenger);
55 FlutterViewController* vc = [[FlutterViewController alloc] initWithEngine:engine
60 [vc traitCollectionDidChange:nil];
79 FlutterViewController* vc = [[FlutterViewController alloc] initWithEngine:engine
84 [vc viewWillAppear:false];
156 FlutterViewController* vc = [[FlutterViewController alloc] initWithEngine:engine
161 [vc traitCollectionDidChange:nil];
184 FlutterViewController* vc = [[FlutterViewController alloc] initWithEngine:engine
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/vert/
Dfunctions_nested.vert27 float4 vc[16];
166 dst_reg1 = in_diff_color * v_309.vc[13];
168 tmp0.x = float4(dot(float4(in_pos.xyz, 1.0), v_309.vc[4])).x;
169 tmp0.y = float4(dot(float4(in_pos.xyz, 1.0), v_309.vc[5])).y;
170 tmp0.z = float4(dot(float4(in_pos.xyz, 1.0), v_309.vc[6])).z;
173 tmp1.z = v_309.vc[15].x;
174 dst_reg7.y = float4(dot(float4(tmp1.xyz, 1.0), v_309.vc[8])).y;
175 dst_reg7.x = float4(dot(float4(tmp1.xyz, 1.0), v_309.vc[7])).x;
176 dst_reg0.y = float4(dot(float4(tmp0.xyz, 1.0), v_309.vc[1])).y;
177 dst_reg0.x = float4(dot(float4(tmp0.xyz, 1.0), v_309.vc[0])).x;
/third_party/cares/
DMakefile.am41 MSVCFILES = vc/vc6aws.dsw vc/acountry/vc6acountry.dsp vc/adig/vc6adig.dsp \
42 vc/ahost/vc6ahost.dsp vc/cares/vc6cares.dsp vc/cares/vc6cares.dsw \
DREADME.msvc70 A VC++ 6.0 reference workspace (vc6aws.dsw) is available within the 'vc'
82 lib-debug and lib-release, all of them below the 'vc\cares' subdirectory.
87 lib-release, below the 'vc\acountry', 'vc\adig' and 'vc\ahost'folders.
98 1) Open vc\vc6aws.dsw with VS20XX.
101 4) Open vc\vc6aws.sln with VS20XX.
/third_party/boost/libs/spirit/example/karma/
Dnum_list3.cpp107 std::vector<client::complex> vc; in main() local
114 vc.push_back(client::complex(real, *it)); in main()
116 vc.push_back(client::complex(real)); in main()
125 if (!client::generate_numbers(sink, vc)) in main()
/third_party/flutter/skia/third_party/externals/sdl/src/video/uikit/
DSDL_uikitviewcontroller.m380 SDL_uikitviewcontroller *vc = GetWindowViewController(window);
381 [vc showKeyboard];
389 SDL_uikitviewcontroller *vc = GetWindowViewController(window);
390 [vc hideKeyboard];
398 SDL_uikitviewcontroller *vc = GetWindowViewController(window);
399 if (vc != nil) {
400 return vc.isKeyboardVisible;
415 SDL_uikitviewcontroller *vc = GetWindowViewController(SDL_GetFocusWindow());
416 if (vc != nil) {
417 vc.textInputRect = *rect;
[all …]
/third_party/gstreamer/gstplugins_good/gst/alpha/
Dgstalphacolor.c209 gint vc[4]; \
216 memcpy (vc, matrix + 8, 4 * sizeof (gint)); \
221 v = (data[R] * vc[0] + data[G] * vc[1] + data[B] * vc[2] + vc[3]) >> 8; \
278 gint vc[4]; in transform_ayuv_ayuv() local
288 memcpy (vc, matrix + 8, 4 * sizeof (gint)); in transform_ayuv_ayuv()
293 v = (data[1] * vc[0] + data[2] * vc[1] + data[3] * vc[2] + vc[3]) >> 8; in transform_ayuv_ayuv()
/third_party/boost/libs/serialization/src/
Dvoid_cast.cpp149 const void_caster * vc = *it; in vbc_downcast() local
150 return vc->downcast(t_new); in vbc_downcast()
300 const void_caster * vc = *it; in recursive_unregister() local
301 if(vc == this){ in recursive_unregister()
305 if(vc->m_parent == this){ in recursive_unregister()
307 delete vc; in recursive_unregister()
/third_party/curl/
DMakefile.dist52 vc:
54 nmake /f Makefile.vc MACHINE=x86
56 vc-x64:
58 nmake /f Makefile.vc MACHINE=x64
/third_party/boost/libs/units/example/
Dconversion.cpp97 quantity<cgs::volume> vc(vs); in main() local
98 quantity<si::volume> vs2(vc); in main()
109 << "volume (cm^3) = " << vc << std::endl in main()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
DValue.hpp114 auto vc = std::make_shared<VariableContainer>(); in create() local
115 fields(vc); in create()
116 return std::make_shared<Struct>(name, vc); in create()
/third_party/ffmpeg/libswscale/
Drgb2rgb_template.c389 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc; in yuvPlanartoyuy2_c() local
392 (yc[1] << 16) + ((unsigned) vc[0] << 24); in yuvPlanartoyuy2_c()
394 (yc[3] << 16) + ((unsigned) vc[1] << 24); in yuvPlanartoyuy2_c()
398 vc += 2; in yuvPlanartoyuy2_c()
403 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc; in yuvPlanartoyuy2_c()
408 (yc[1] << 8) + (vc[0] << 0); in yuvPlanartoyuy2_c()
411 (yc[1] << 16) + (vc[0] << 24); in yuvPlanartoyuy2_c()
415 vc++; in yuvPlanartoyuy2_c()
453 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc; in yuvPlanartouyvy_c() local
456 (vc[0] << 16) + ((unsigned) yc[1] << 24); in yuvPlanartouyvy_c()
[all …]
/third_party/boost/libs/numeric/ublas/examples/tensor/
Dconstruction_access.cpp49 auto vc = ctype(0,0); in main() local
50 for(auto i = 0u; i < B.size(); ++i, vc += ctype(1,1)) in main()
51 B[i] = vc; in main()
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DRewriteCubeMapSamplersAs2DArray.cpp209 TIntermTyped *vc) in TransformXMajor() argument
220 block->appendStatement(new TIntermBinary(EOpAssign, vc->deepCopy(), vcValue)); in TransformXMajor()
228 TIntermTyped *vc) in TransformYMajor() argument
238 block->appendStatement(new TIntermBinary(EOpAssign, vc->deepCopy(), vcValue)); in TransformYMajor()
246 TIntermTyped *vc) in TransformZMajor() argument
256 block->appendStatement(new TIntermBinary(EOpAssign, vc->deepCopy(), vcValue)); in TransformZMajor()
562 TIntermSymbol *vc = new TIntermSymbol(CreateTempVariable(mSymbolTable, floatType)); in declareCoordTranslationFunction() local
571 body->appendStatement(CreateTempDeclarationNode(&vc->variable())); in declareCoordTranslationFunction()
675 TransformXMajor(calculateXUcVc, x, y, z, uc, vc); in declareCoordTranslationFunction()
682 TransformYMajor(calculateYUcVc, x, y, z, uc, vc); in declareCoordTranslationFunction()
[all …]
/third_party/skia/tools/skottie_ios_app/
DSkiaUIContext.mm51 - (UIView*) makeViewWithController:(SkiaViewController*)vc withFrame:(CGRect)frame;
56 - (UIView*) makeViewWithController:(SkiaViewController*)vc withFrame:(CGRect)frame {
58 [skiaView setController:vc];
/third_party/gstreamer/gstplugins_good/sys/v4l2/
Dgstv4l2radio.c71 struct v4l2_capability vc; in gst_v4l2radio_fill_channel_list() local
87 memset (&vc, 0, sizeof (vc)); in gst_v4l2radio_fill_channel_list()
89 res = v4l2object->ioctl (v4l2object->video_fd, VIDIOC_QUERYCAP, &vc); in gst_v4l2radio_fill_channel_list()
93 if (vc.capabilities & V4L2_CAP_DEVICE_CAPS) in gst_v4l2radio_fill_channel_list()
94 v4l2object->device_caps = vc.device_caps; in gst_v4l2radio_fill_channel_list()
96 v4l2object->device_caps = vc.capabilities; in gst_v4l2radio_fill_channel_list()
/third_party/boost/tools/build/src/tools/
Dintel-win.jam62 msvc-version = [ get-msvc-version-from-vc-string $(msvc-version) ] ;
79 local vc_in_version = [ MATCH "(vc[0-9]+(\\.[0-9]+)?)$" : $(version) ] ;
85 errors.error "feature compatibility and vc version in toolset present!" ;
91 # vc Version must be stripped before check-init-parameters is called!
92 version = [ MATCH (.+)-vc.+$ : $(version) ] ;
125 v = "vc$(v)" ;
155 local msvc-version = [ get-msvc-version-from-vc-string $(compatibility) ] ;
203 errors.error "Don't know what parameter to pass for vc version ( $(compatibility) )" ;
463 local rule get-msvc-version-from-vc-string ( vc-string )
465 local r = [ MATCH "^vc([0-9]+(\\.[0-9]+)?)$" : $(vc-string) ] ;

1234567