Home
last modified time | relevance | path

Searched defs:vc (Results 1 – 25 of 628) sorted by relevance

12345678910>>...26

/aosp_15_r20/external/clang/test/PCH/
H A Dcxx1y-variable-templates.cpp58 template<typename T> T vc = T(); variable
72 template<typename T> T vc = T(10); variable
107 template<> float vc<float> = 1.5; variable
108 template int vc<int>; variable
153 template<typename T> T* vc<T*> = new T(); variable
154 template<> constexpr float vc<float> = 1.5; variable
/aosp_15_r20/external/tremolo/Tremolo/
H A Dtreminfo.c58 void vorbis_comment_init(vorbis_comment *vc){ in vorbis_comment_init()
74 char *vorbis_comment_query(vorbis_comment *vc, char *tag, int count){ in vorbis_comment_query()
95 int vorbis_comment_query_count(vorbis_comment *vc, char *tag){ in vorbis_comment_query_count()
110 void vorbis_comment_clear(vorbis_comment *vc){ in vorbis_comment_clear()
216 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb){ in _vorbis_unpack_comment()
340 int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op){ in vorbis_dsp_headerin()
/aosp_15_r20/external/rust/android-crates-io/crates/libz-sys/src/zlib-ng/arch/power/
Dcompare256_power9.c14 # define zng_vec_vctzlsbb(vc, len) __asm__ volatile("vctzlsbb %0, %1\n\t" : "=r" (len) : "v" (vc)) argument
15 # define zng_vec_vclzlsbb(vc, len) __asm__ volatile("vclzlsbb %0, %1\n\t" : "=r" (len) : "v" (vc)) argument
17 # define zng_vec_vctzlsbb(vc, len) len = __builtin_vec_vctzlsbb(vc) argument
18 # define zng_vec_vclzlsbb(vc, len) len = __builtin_vec_vclzlsbb(vc) argument
25 vector unsigned char vsrc0, vsrc1, vc; in compare256_power9_static() local
Dcrc32_power8.c99 #define VEC_PERM(vr, va, vb, vc) vr = vec_perm(va, vb, (__vector unsigned char) vc) argument
107 #define VEC_PERM(vr, va, vb, vc) argument
/aosp_15_r20/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/
H A DMethodInvocationExceptionTestCase.java92 VelocityContext vc = new VelocityContext(); in testNormalMethodInvocationException() local
123 VelocityContext vc = new VelocityContext(); in testGetterMethodInvocationException() local
160 VelocityContext vc = new VelocityContext(); in testCapitalizedGetterMethodInvocationException() local
191 VelocityContext vc = new VelocityContext(); in testSetterMethodInvocationException() local
229 VelocityContext vc = new VelocityContext(); in testMacroInvocationException() local
H A DInvalidEventHandlerTestCase.java154 private void doTestInvalidReferenceEventHandler4(VelocityEngine ve, VelocityContext vc) in doTestInvalidReferenceEventHandler4()
186 private void doTestInvalidReferenceEventHandler3(VelocityEngine ve, VelocityContext vc) in doTestInvalidReferenceEventHandler3()
221 private void doTestInvalidReferenceEventHandler2(VelocityEngine ve, VelocityContext vc) in doTestInvalidReferenceEventHandler2()
273 private void doTestInvalidReferenceEventHandler1(VelocityEngine ve, VelocityContext vc) in doTestInvalidReferenceEventHandler1()
378 private void doTestInvalidReferenceEventHandler0(VelocityEngine ve, VelocityContext vc) in doTestInvalidReferenceEventHandler0()
H A DNumberMethodCallsTestCase.java80 VelocityContext vc = new VelocityContext(); in testNumberMethodCalls() local
129 private void checkResults(Context vc, String template, String compare) throws Exception in checkResults()
/aosp_15_r20/cts/tests/tests/view/src/android/view/cts/
H A DViewConfigurationTest.java86 ViewConfiguration vc = ViewConfiguration.get(context); in testInstanceValues() local
141 ViewConfiguration vc = ViewConfiguration.get(InstrumentationRegistry.getTargetContext()); local
197 ViewConfiguration vc = ViewConfiguration.get(InstrumentationRegistry.getTargetContext()); in testGetScaledAmbiguousGestureMultiplier() local
205 ViewConfiguration vc = ViewConfiguration.get(context); in testGetMaximumDrawingCacheSize() local
/aosp_15_r20/external/flatbuffers/tests/rust_usage_test/benches/
H A Dflexbuffers_benchmarks.rs21 let vc = vec![u64::max_value() - 30; 512]; in push_vec_u64_to_map() localVariable
50 let vc = vec![u64::max_value() - 30; 512]; in push_vec_u64_to_map_reused() localVariable
80 let vc = vec![u64::max_value() - 30; 512]; in push_vec_u64_to_map_direct() localVariable
97 let vc = vec![u64::max_value() - 30; 512]; in push_vec_u64_to_map_direct_reused() localVariable
/aosp_15_r20/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaVisualizerTest.java227 AudioEffect vc = null; in test2_0PollingCapture() local
306 AudioEffect vc = null; in test2_1ListenerCapture() local
440 AudioEffect vc = null; in test2_2PollingCaptureVolumeScaling() local
H A DMediaPresetReverbTest.java192 AudioEffect vc = null; in test2_0AuxiliarySoundModification() local
264 AudioEffect vc = null; in test2_1InsertSoundModification() local
H A DMediaEnvReverbTest.java347 AudioEffect vc = null; in test2_0AuxiliarySoundModification() local
421 AudioEffect vc = null; in test2_1InsertSoundModification() local
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/lang/invoke/
H A DCallSitesTest.java143 VolatileCallSite vc = new VolatileCallSite((MethodType) null); in test_VolatileCallSiteConstructorNullMethodType() local
151 VolatileCallSite vc = new VolatileCallSite((MethodHandle) null); in test_VolatileCallSiteConstructorNullMethodHandle() local
159 VolatileCallSite vc = in test_VolatileCallsiteNoMethodHandle() local
/aosp_15_r20/external/webrtc/pc/
H A Dmedia_session_unittest.cc714 const ContentInfo* vc = answer->GetContentByName("video"); in TestVideoGcmCipher() local
813 const ContentInfo* vc = offer->GetContentByName("video"); in TEST_F() local
835 const ContentInfo* vc = offer->GetContentByName("video"); in TEST_F() local
1189 const ContentInfo* vc = offer->GetContentByName("video"); in TEST_F() local
1263 const ContentInfo* vc = answer->GetContentByName("video"); in TEST_F() local
1294 const ContentInfo* vc = answer->GetContentByName("video"); in TEST_F() local
1340 const ContentInfo* vc = answer->GetContentByName("video"); in TEST_F() local
1395 const ContentInfo* vc = answer->GetContentByName("video"); in TEST_F() local
1419 const ContentInfo* vc = answer->GetContentByName("video"); in TEST_F() local
2151 const ContentInfo* vc = answer->GetContentByName("video"); in TEST_F() local
[all …]
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/
H A DTestAutoDetect.java74 VisibilityChecker<?> vc = m.getVisibilityChecker(); in testPrivateUsingGlobals() local
98 VisibilityChecker<?> vc = m.getVisibilityChecker(); in testBasicSetup() local
/aosp_15_r20/external/pdfium/third_party/libopenjpeg/
H A Dt1_generate_luts.c127 int hc, vc, n; in t1_init_ctxno_sc() local
171 int hc, vc, n; in t1_init_spb() local
/aosp_15_r20/external/rust/android-crates-io/crates/clap_complete/src/shells/
Dzsh.rs471 let vc = match value_completion(o) { localVariable
475 let vc = vc.repeat(o.get_num_args().expect("built").min_values()); localVariable
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/serialization/src/
Dvoid_cast.cpp149 const void_caster * vc = *it; in vbc_downcast() local
300 const void_caster * vc = *it; in recursive_unregister() local
/aosp_15_r20/tools/metalava/metalava-model/src/main/java/com/android/tools/metalava/model/visitors/
H A DApiVisitor.kt173 val vc = VisitCandidate(cls) in getVisitCandidateIfNeeded() constant
/aosp_15_r20/cts/tests/tests/media/audio/src/android/media/audio/cts/
H A DVisualizerTest.java355 AudioEffect vc = null; in test4_1MeasurePeakRms() local
429 AudioEffect vc = null; in test4_2MeasurePeakRmsLongMP3() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/language.support/cmp/cmp.alg/
H A Dcompare_strong_order_fallback.pass.cpp497 N2::VC1 vc; in test_2() local
504 N2::VC2 vc; in test_2() local
H A Dcompare_partial_order_fallback.pass.cpp297 N2::VC1 vc; in test_2() local
304 N2::VC2 vc; in test_2() local
H A Dcompare_weak_order_fallback.pass.cpp544 N2::VC1 vc; in test_2() local
551 N2::VC2 vc; in test_2() local
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/
H A DIntrospectorPairTest.java156 VisibilityChecker<?> vc = (VisibilityChecker<?>) values.get("findAutoDetectVisibility"); in findAutoDetectVisibility() local
414 VisibilityChecker<?> vc = VisibilityChecker.Std.defaultInstance(); in testFindAutoDetectVisibility() local
/aosp_15_r20/frameworks/base/media/jni/
H A Dandroid_media_MediaProfiles.cpp260 auto isAdvancedCodec = [](const MediaProfiles::VideoCodec *vc) -> bool { in android_media_MediaProfiles_native_get_camcorder_profiles()
266 for (const MediaProfiles::VideoCodec *vc : cp->getVideoCodecs()) { in android_media_MediaProfiles_native_get_camcorder_profiles() local

12345678910>>...26