Home
last modified time | relevance | path

Searched refs:sf2 (Results 1 – 16 of 16) sorted by relevance

/external/protobuf/objectivec/DevTools/
Dpddm_tests.py466 sf2 = pddm.SourceFile(f2, _Resolver)
467 sf2.ProcessContent()
468 self.assertEqual(sf2.processed_content, expected)
469 self.assertEqual(sf2.processed_content, sf.processed_content)
472 sf2 = pddm.SourceFile(f2)
473 sf2.ProcessContent(strip_expansion=True)
474 self.assertEqual(sf2.processed_content, expected_stripped)
476 sf2 = pddm.SourceFile(f2, _Resolver)
477 sf2.ProcessContent(strip_expansion=True)
478 self.assertEqual(sf2.processed_content, expected_stripped)
/external/cronet/third_party/protobuf/objectivec/DevTools/
Dpddm_tests.py466 sf2 = pddm.SourceFile(f2, _Resolver)
467 sf2.ProcessContent()
468 self.assertEqual(sf2.processed_content, expected)
469 self.assertEqual(sf2.processed_content, sf.processed_content)
472 sf2 = pddm.SourceFile(f2)
473 sf2.ProcessContent(strip_expansion=True)
474 self.assertEqual(sf2.processed_content, expected_stripped)
476 sf2 = pddm.SourceFile(f2, _Resolver)
477 sf2.ProcessContent(strip_expansion=True)
478 self.assertEqual(sf2.processed_content, expected_stripped)
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DSimplePieChartActivity.java90 SegmentFormatter sf2 = new SegmentFormatter(); in onCreate() local
91 sf2.configure(getApplicationContext(), R.xml.pie_segment_formatter2); in onCreate()
93 sf2.getFillPaint().setMaskFilter(emf); in onCreate()
106 pie.addSeries(s2, sf2); in onCreate()
/external/llvm/test/CodeGen/Mips/
Dinternalfunc.ll28 ; CHECK: lw $[[R2:[0-9]+]], %got(sf2)
29 ; CHECK: addiu ${{[0-9]+}}, $[[R2]], %lo(sf2)
34 %cond = select i1 %tobool3, void (...)* %tmp4, void (...)* bitcast (void ()* @sf2 to void (...)*)
39 define internal void @sf2() nounwind {
/external/python/cpython3/Lib/test/
Dtest_unicode_file_functions.py151 sf2 = set(os.path.join(os_helper.TESTFN, f) for f in f2)
152 self.assertEqual(sf0, sf2, "%a != %a" % (sf0, sf2))
/external/mockito/src/test/java/org/mockitousage/stubbing/
DDeepStubbingTest.java117 SocketFactory sf2 = mock(SocketFactory.class, RETURNS_DEEP_STUBS); in interactions() local
118 when(sf2.createSocket().getOutputStream()).thenReturn(out2); in interactions()
121 assertSame(out2, sf2.createSocket().getOutputStream()); in interactions()
/external/compiler-rt/lib/builtins/arm/
Daeabi_fcmp.S26 bl SYMBOL_NAME(__ ## cond ## sf2) SEPARATOR \
/external/python/cpython2/Lib/test/
Dtest_pep277.py154 sf2 = set(os.path.join(unicode(test_support.TESTFN), f) for f in f2)
155 self.assertEqual(sf0, sf2)
/external/pigweed/targets/emcraft_sf2_som/
Dtarget_docs.rst1 .. _target-emcraft-sf2-som:
/external/clang/test/Modules/
Dsubframeworks.m15 float *sf2 = sub_framework;
/external/libaom/aom_dsp/x86/
Dhighbd_convolve_avx2.c677 const __m256i sf2 = _mm256_loadu_si256((const __m256i *)signal_pattern_2); in pack_16_2t_pixels() local
678 __m256i x0 = _mm256_shuffle_epi8(*s0, sf2); in pack_16_2t_pixels()
679 __m256i x1 = _mm256_shuffle_epi8(*s1, sf2); in pack_16_2t_pixels()
682 r0 = _mm256_shuffle_epi8(r0, sf2); in pack_16_2t_pixels()
683 r1 = _mm256_shuffle_epi8(r1, sf2); in pack_16_2t_pixels()
705 const __m256i sf2 = _mm256_loadu_si256((const __m256i *)signal_pattern_2); in pack_8x1_2t_pixels() local
707 __m256i x0 = _mm256_shuffle_epi8(r0, sf2); in pack_8x1_2t_pixels()
709 r0 = _mm256_shuffle_epi8(r0, sf2); in pack_8x1_2t_pixels()
/external/libvpx/vpx_dsp/x86/
Dhighbd_convolve_avx2.c403 const __m256i sf2 = _mm256_loadu_si256((const __m256i *)signal_pattern_2); in pack_16_2t_pixels() local
404 __m256i x0 = _mm256_shuffle_epi8(*s0, sf2); in pack_16_2t_pixels()
405 __m256i x1 = _mm256_shuffle_epi8(*s1, sf2); in pack_16_2t_pixels()
408 r0 = _mm256_shuffle_epi8(r0, sf2); in pack_16_2t_pixels()
409 r1 = _mm256_shuffle_epi8(r1, sf2); in pack_16_2t_pixels()
431 const __m256i sf2 = _mm256_loadu_si256((const __m256i *)signal_pattern_2); in pack_8x1_2t_pixels() local
433 __m256i x0 = _mm256_shuffle_epi8(r0, sf2); in pack_8x1_2t_pixels()
435 r0 = _mm256_shuffle_epi8(r0, sf2); in pack_8x1_2t_pixels()
/external/aac/libSBRdec/src/
Denv_calc.cpp657 int sf2; in apply_inter_tes() local
659 fMultNorm(subsample_power_low[i], (FIXP_DBL)nbSubsample, &sf2); in apply_inter_tes()
660 int mult_sf = subsample_power_low_sf[i] + DFRACT_BITS - 1 + sf2; in apply_inter_tes()
663 gain[i] = fDivNorm(mult, total_power_low, &sf2); in apply_inter_tes()
664 gain_sf[i] = mult_sf - total_power_low_sf + sf2; in apply_inter_tes()
739 int sf2 = 0; in apply_inter_tes() local
745 gain_adj_2 = fDivNorm(total_power_high, total_power_high_after, &sf2); in apply_inter_tes()
746 gain_adj_2_sf = total_power_high_sf - total_power_high_after_sf + sf2; in apply_inter_tes()
/external/igt-gpu-tools/lib/
Dgen4_render.h382 } sf2; member
/external/clang/test/SemaCXX/
Dconstant-expression-cxx11.cpp193 constexpr int (*sf2)(int) = &s.f; variable
/external/ComputeLibrary/data/images/
D640x480.ppm1061 …{�?x<io/s|;��O|{Eba+qp8��U~Eed+��F��Sig*��N��k��S��;��p��\YF�sIcR&�wITFsf2��p��M^[(84;5=6IA…