Home
last modified time | relevance | path

Searched refs:pdf (Results 1 – 25 of 545) sorted by relevance

12345678910>>...22

/external/pdfium/testing/
DSUPPRESSIONS24 050_extra_m.pdf mac,win * *
25 12.pdf mac * *
26 1_10_watermark.pdf * * *
27 1_1_textbox.pdf * * *
28 1_2_typewriter.pdf * * *
29 1_3_callout.pdf * * *
30 1_matrix.pdf mac * *
31 1m_diff_lsjdf.pdf mac * *
32 1m_same_xxxx.pdf mac * *
33 2_11_stamp3.pdf mac * *
[all …]
DSUPPRESSIONS_IMAGE_DIFF24 FRC_3.5_CF_Strf_stmf_DefaultCryptFilter.pdf * * *
25 FRC_3.5_EncryptMetadata_T.pdf * * *
26 FRC_3.5_Encrypt_is_damage.pdf * * *
27 FRC_3.5_Filter_PubSec_SubFilter_s5.pdf * * *
28 FRC_3.5_Filter_PubSec_Sub_SubFilter_s4.pdf * * *
29 MouseEvents.pdf * * *
30 Oneof.pdf * * *
31 bug_651304.pdf * * *
32 outline.pdf * * *
/external/skia/gn/
Dpdf.gni12 "$_src/pdf/SkBitmapKey.h",
13 "$_src/pdf/SkClusterator.cpp",
14 "$_src/pdf/SkClusterator.h",
15 "$_src/pdf/SkDeflate.cpp",
16 "$_src/pdf/SkDeflate.h",
17 "$_src/pdf/SkJpegInfo.cpp",
18 "$_src/pdf/SkJpegInfo.h",
19 "$_src/pdf/SkKeyedImage.cpp",
20 "$_src/pdf/SkKeyedImage.h",
21 "$_src/pdf/SkPDFBitmap.cpp",
[all …]
/external/skqp/gn/
Dpdf.gni12 "$_src/pdf/SkBitmapKey.h",
13 "$_src/pdf/SkClusterator.cpp",
14 "$_src/pdf/SkClusterator.h",
15 "$_src/pdf/SkDeflate.cpp",
16 "$_src/pdf/SkDeflate.h",
17 "$_src/pdf/SkJpegInfo.cpp",
18 "$_src/pdf/SkJpegInfo.h",
19 "$_src/pdf/SkKeyedImage.cpp",
20 "$_src/pdf/SkKeyedImage.h",
21 "$_src/pdf/SkPDFBitmap.cpp",
[all …]
/external/tensorflow/tensorflow/lite/g3doc/guide/
Dhosted_models.md26 Mobilenet_V1_0.25_128_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
27 Mobilenet_V1_0.25_160_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
28 Mobilenet_V1_0.25_192_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
29 Mobilenet_V1_0.25_224_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
30 Mobilenet_V1_0.50_128_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
31 Mobilenet_V1_0.50_160_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
32 Mobilenet_V1_0.50_192_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
33 Mobilenet_V1_0.50_224_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
34 Mobilenet_V1_0.75_128_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
35 Mobilenet_V1_0.75_160_quant | [paper](https://arxiv.org/pdf/1712.05877.pdf), [tflite&pb](http://dow…
[all …]
/external/freetype/docs/
Dformats.txt77 --- BDF --- --- bdf 5005.BDF_Spec.pdf, X11
82 SFNT PS TYPE_1 CID cid 5180.sfnt.pdf (for the Mac)
84 SFNT PS CFF --- cff OT spec, 5176.CFF.pdf
86 SFNT PS CFF CID cff OT spec, 5176.CFF.pdf
87 SFNT PS CFF SYNTHETIC --- OT spec, 5176.CFF.pdf
100 --- PS TYPE_1 --- type1 T1_SPEC.pdf
102 PFB PS TYPE_1 --- type1 T1_SPEC.pdf,
103 5040.Download_Fonts.pdf
105 --- PS TYPE_1 CID cid PLRM.pdf (CID Font Type 0;
107 --- PS MM --- type1 5015.Type1_Supp.pdf
[all …]
/external/u-boot/arch/arm/cpu/arm1136/mx35/
Dgeneric.c252 u32 ret_val = 0, pdf, pre_pdf, clk_sel; in mxc_get_peri_clock() local
264 pdf = (mpdr4 >> 10) & 0x3F; in mxc_get_peri_clock()
266 decode_pll(readl(&ccm->ppctl), MXC_HCLK)) / (pdf + 1); in mxc_get_peri_clock()
270 pdf = mpdr2 & 0x3F; in mxc_get_peri_clock()
274 ((pre_pdf + 1) * (pdf + 1)); in mxc_get_peri_clock()
278 pdf = (mpdr2 >> 8) & 0x3F; in mxc_get_peri_clock()
282 ((pre_pdf + 1) * (pdf + 1)); in mxc_get_peri_clock()
286 pdf = (mpdr2 >> 16) & 0x3F; in mxc_get_peri_clock()
288 decode_pll(readl(&ccm->ppctl), MXC_HCLK)) / (pdf + 1); in mxc_get_peri_clock()
293 pdf = (pre_pdf >> 22) & 0x3F; in mxc_get_peri_clock()
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/distributions/
Ddirichlet_test.py107 pdf = dist.prob(x)
108 self.assertAllClose(1., self.evaluate(pdf))
109 self.assertEqual((), pdf.get_shape())
115 pdf = dist.prob(x)
116 self.assertAllClose(7. / 5, self.evaluate(pdf))
117 self.assertEqual((), pdf.get_shape())
124 pdf = dist.prob(x)
125 self.assertAllClose([2., 2.], self.evaluate(pdf))
126 self.assertEqual((2), pdf.get_shape())
132 pdf = dist.prob(x)
[all …]
Dbeta_test.py114 pdf = dist.prob(x)
115 self.assertAllClose([1., 3. / 2], self.evaluate(pdf))
116 self.assertEqual((2,), pdf.get_shape())
123 pdf = dist.prob(x)
124 self.assertAllClose([1, 63. / 50], self.evaluate(pdf))
125 self.assertEqual((2,), pdf.get_shape())
133 pdf = dist.prob(x)
134 self.assertAllClose([1.] * 5, self.evaluate(pdf))
135 self.assertEqual((5,), pdf.get_shape())
142 pdf = dist.prob(x)
[all …]
Duniform_test.py71 pdf = np.zeros_like(x) + 1.0 / (b_v - a_v)
72 pdf[x > b_v] = 0.0
73 pdf[x < a_v] = 0.0
74 pdf[5] = 1.0 / (20.0 - 15.0)
75 return pdf
79 pdf = uniform.prob(x)
80 self.assertAllClose(expected_pdf, self.evaluate(pdf))
105 pdf = uniform.prob(x)
106 self.assertAllClose(expected_pdf, self.evaluate(pdf))
243 pdf = uniform.prob(with_nans)
[all …]
/external/python/cpython2/Doc/
DMakefile133 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
134 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
135 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
141 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
142 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
143 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
/external/webrtc/webrtc/modules/audio_processing/vad/
Dgmm_unittest.cc53 double pdf = EvaluateGmm(kXVoice, voice_gmm); in TEST() local
54 EXPECT_GT(pdf, 0); in TEST()
55 double relative_error = fabs(pdf - kPdfVoice) / kPdfVoice; in TEST()
59 pdf = EvaluateGmm(kXNoise, noise_gmm); in TEST()
60 EXPECT_GT(pdf, 0); in TEST()
61 relative_error = fabs(pdf - kPdfNoise) / kPdfNoise; in TEST()
/external/llvm/docs/
DCompilerWriterInfo.rst25 …uage Extensions <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053c/IHI0053C_acle_2_0.pdf>`_
27 …a and Errata <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0045d/IHI0045D_ABI_addenda.pdf>`_
39 …le Specification <http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf>`_
69 …ader ISA <http://developer.amd.com/wordpress/media/2012/10/R600_Instruction_Set_Architecture.pdf>`_
70 …A <http://developer.amd.com/wordpress/media/2012/10/R700-Family_Instruction_Set_Architecture.pdf>`_
71 …/developer.amd.com/wordpress/media/2012/10/AMD_Evergreen-Family_Instruction_Set_Architecture.pdf>`_
72 …://developer.amd.com/wordpress/media/2012/10/AMD_HD_6900_Series_Instruction_Set_Architecture.pdf>`_
73 …/developer.amd.com/wordpress/media/2012/12/AMD_Southern_Islands_Instruction_Set_Architecture.pdf>`_
74 …ttp://developer.amd.com/wordpress/media/2013/07/AMD_Sea_Islands_Instruction_Set_Architecture.pdf>`_
75 …tp://developer.amd.com/download/AMD_Accelerated_Parallel_Processing_OpenCL_Programming_Guide.pdf>`_
[all …]
/external/python/cpython3/Doc/
DMakefile155 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
156 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
157 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
163 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
164 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
165 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
Dkumaraswamy_test.py144 pdf = dist.prob(x)
146 self.assertAllClose(expected_pdf, pdf.eval())
147 self.assertEqual((2,), pdf.get_shape())
155 pdf = dist.prob(x)
157 self.assertAllClose(expected_pdf, pdf.eval())
158 self.assertEqual((2,), pdf.get_shape())
167 pdf = dist.prob(x)
169 self.assertAllClose(expected_pdf, pdf.eval())
170 self.assertEqual((5,), pdf.get_shape())
178 pdf = dist.prob(x)
[all …]
Dmvn_full_covariance_test.py73 pdf = mvn.prob(x)
78 expected_pdf = scipy_mvn.pdf(x)
80 self.assertEqual((), pdf.get_shape())
82 self.assertAllClose(expected_pdf, pdf.eval())
92 pdf = mvn.prob(x)
98 expected_pdf = scipy_mvn.pdf(x)
100 self.assertEqual((), pdf.get_shape())
102 self.assertAllClose(expected_pdf, pdf.eval())
/external/curl/docs/
DMakefile.am31 PDFPAGES = curl.pdf curl-config.pdf mk-ca-bundle.pdf
86 SUFFIXES = .1 .html .pdf
104 pdf: $(PDFPAGES) target
105 cd libcurl && $(MAKE) pdf
110 .1.pdf:
/external/elfutils/doc/
DMakefile.am25 .PHONY: dvi pdf html
26 pdf: $(srcdir)elfutils.pdf target
31 $(srcdir)%.pdf: %.sgml
/external/curl/docs/libcurl/opts/
DCMakeLists.txt8 string(REPLACE ".3" ".pdf" PDFPAGES "${man_MANS}")
10 add_custom_target(opts-pdf DEPENDS ${PDFPAGES})
12 add_dependencies(pdf opts-pdf)
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DCompilerWriterInfo.rst25 …uage Extensions <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053c/IHI0053C_acle_2_0.pdf>`_
27 …a and Errata <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0045d/IHI0045D_ABI_addenda.pdf>`_
45 …le Specification <http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf>`_
86 * `SPARC V8 ABI <http://sparc.org/standards/psABI3rd.pdf>`_
100 …rent C++ compilers and operating systems <http://www.agner.org/optimize/calling_conventions.pdf>`_
105 …tecture (ISA) <https://www.xmos.com/en/download/public/The-XMOS-XS1-Architecture%28X7879A%29.pdf>`_
106 …ide (includes ABI) <https://www.xmos.com/download/public/Tools-Development-Guide%28X9114A%29.pdf>`_
129 …h64 Architecture <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0055a/IHI0055A_aapcs64.pdf>`_
130 …e ARM Architecture <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0044e/IHI0044E_aaelf.pdf>`_
131 …ecture (AArch64) <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0056a/IHI0056A_aaelf64.pdf>`_
[all …]
/external/e2fsprogs/ext2ed/
DMakefile.in31 DOCS= doc/ext2ed-design.pdf doc/user-guide.pdf doc/ext2fs-overview.pdf \
39 .SUFFIXES: .sgml .ps .pdf .html
46 .sgml.pdf:
48 sgmltools -b pdf $<
/external/pdfium/docs/
Dsafetynet.md28 -0.1980% 45,703,820,326 ~/test_pdfs/PDF Reference 1-7.pdf
29 -0.5678% 42,038,814 ~/test_pdfs/Page 24 - PDF Reference 1-7.pdf
30 +0.2666% 10,983,158,809 ~/test_pdfs/Rival.pdf
31 +0.0447% 10,413,890,748 ~/test_pdfs/dynamic.pdf
32 -7.7228% 26,161,171 ~/test_pdfs/encrypted1234.pdf
33 -0.2763% 102,084,398 ~/test_pdfs/ghost.pdf
34 -3.7005% 10,800,642,262 ~/test_pdfs/musician.pdf
35 -0.2266% 45,691,618,789 ~/test_pdfs/no_metadata.pdf
36 +1.4440% 38,442,606,162 ~/test_pdfs/test7.pdf
37 +0.0335% 9,286,083 ~/test_pdfs/testbulletpoint.pdf
[all …]
/external/selinux/secilc/docs/
DMakefile3 PDFDIR ?= $(CWD)/pdf
31 PDF_OUT=CIL_Reference_Guide.pdf
41 all: html pdf
61 pdf: $(PANDOC_FILE_LIST) $(TMPDIR)/policy.cil target
/external/curl/docs/libcurl/
DMakefile.am33 PDFPAGES = $(man_MANS:.3=.pdf)
56 pdf: $(PDFPAGES) target
57 cd opts && $(MAKE) pdf
59 .3.pdf:
/external/apache-commons-bcel/docs/verifier/
DGNUmakefile31 pdf: ps target
32 ps2pdf JustIce.ps JustIce.pdf
38 $(RM) -rf JustIce.ps JustIce.pdf JustIce.ps.gz

12345678910>>...22