/external/usrsctp/ |
D | .gitignore | 58 programs/chargen_server_upcall 59 programs/client 60 programs/client_upcall 61 programs/daytime_server 62 programs/daytime_server_upcall 63 programs/discard_server 64 programs/discard_server_upcall 65 programs/echo_server 66 programs/echo_server_upcall 67 programs/ekr_client [all …]
|
/external/zstd/build/meson/programs/ |
D | meson.build | 13 zstd_programs_sources = [join_paths(zstd_rootdir, 'programs/zstdcli.c'), 14 join_paths(zstd_rootdir, 'programs/util.c'), 15 join_paths(zstd_rootdir, 'programs/timefn.c'), 16 join_paths(zstd_rootdir, 'programs/fileio.c'), 17 join_paths(zstd_rootdir, 'programs/benchfn.c'), 18 join_paths(zstd_rootdir, 'programs/benchzstd.c'), 19 join_paths(zstd_rootdir, 'programs/datagen.c'), 20 join_paths(zstd_rootdir, 'programs/dibio.c')] 66 zstd_frugal_sources = [join_paths(zstd_rootdir, 'programs/zstdcli.c'), 67 join_paths(zstd_rootdir, 'programs/timefn.c'), [all …]
|
/external/deqp/external/openglcts/modules/common/ |
D | glcMultipleContextsTests.cpp | 80 void prepareProgram(Utils::program** programs, bool is_separable); 82 void prepareProgramPipeline(glw::GLuint& pipeline_id, Utils::program** programs); 86 bool testProgram(Utils::program** programs, bool is_separable, const glw::GLuint test_cases[][5], 257 /* Test separable programs */ in iterate() 260 /* Prepare programs */ in iterate() 583 …* @param programs An array of 5 programs' pointers. If monolithic program is prepared that onl… 584 * @param is_separable Select if monolithic or separable programs should be prepared 586 void UniformPreservationTest::prepareProgram(Utils::program** programs, bool is_separable) in prepareProgram() argument 607 programs[0]->build(0 /* compute shader source */, fragmenty_shader_code, geometry_shader_code, in prepareProgram() 611 programs[m_geometry_stage_index] = programs[m_fragment_stage_index]; in prepareProgram() [all …]
|
/external/zstd/build/meson/tests/ |
D | meson.build | 30 test_includes = [ include_directories(join_paths(zstd_rootdir, 'programs')) ] 32 datagen_sources = [join_paths(zstd_rootdir, 'programs/datagen.c'), 41 fullbench_sources = [join_paths(zstd_rootdir, 'programs/datagen.c'), 42 join_paths(zstd_rootdir, 'programs/util.c'), 43 join_paths(zstd_rootdir, 'programs/timefn.c'), 44 join_paths(zstd_rootdir, 'programs/benchfn.c'), 45 join_paths(zstd_rootdir, 'programs/benchzstd.c'), 53 fuzzer_sources = [join_paths(zstd_rootdir, 'programs/datagen.c'), 54 join_paths(zstd_rootdir, 'programs/util.c'), 55 join_paths(zstd_rootdir, 'programs/timefn.c'), [all …]
|
/external/bcc/src/cc/frontends/p4/ |
D | README.md | 9 This document describes a prototype compiler that translates programs 10 written in the P4 programming languages to eBPF programs. The 11 translation is performed by generating programs written in a subset of 63 P4 programs describe the behavior of network-processing dataplanes. A 81 machine code); EBPF programs are traditionally executed by a virtual 82 machine that resides in the Linux kernel. EBPF programs can be 84 instrumentation. The main feature of EBPF programs is their *static 85 safety*: prior to execution all EBPF programs have to be validated as 86 being safe, and unsafe programs cannot be executed. A safe program 100 EBPF programs are inserted into the kernel using *hooks*. There are [all …]
|
/external/pigweed/pw_presubmit/py/pw_presubmit/ |
D | cli.py | 56 programs: presubmit.Programs, default: str): argument 58 if arg not in programs: 62 return programs[arg] 66 choices=programs.values(), 71 all_steps = programs.all_steps() 97 programs: Optional[presubmit.Programs] = None, argument 125 if programs: 127 raise ValueError('A default must be provided with programs') 129 _add_programs_arguments(parser, programs, default)
|
/external/clang/tools/clang-format/ |
D | CMakeLists.txt | 22 install(PROGRAMS clang-format-bbedit.applescript 25 install(PROGRAMS clang-format-diff.py 28 install(PROGRAMS clang-format-sublime.py 31 install(PROGRAMS clang-format.el 34 install(PROGRAMS clang-format.py 37 install(PROGRAMS git-clang-format
|
/external/llvm-project/clang/tools/clang-format/ |
D | CMakeLists.txt | 23 install(PROGRAMS clang-format-bbedit.applescript 26 install(PROGRAMS clang-format-diff.py 29 install(PROGRAMS clang-format-sublime.py 32 install(PROGRAMS clang-format.el 35 install(PROGRAMS clang-format.py 38 install(PROGRAMS git-clang-format
|
/external/antlr/runtime/Ruby/lib/antlr3/streams/ |
D | rewrite.rb | 39 …at provides simple stream editing functionality. By creating <i>rewrite programs</i>, new text out… 362 attr_reader :programs accessor in ANTLR3.TokenRewriteStream 367 @programs = Hash.new do |programs, name| 369 programs[ name ] = RewriteProgram.new( self, name ) 370 else programs[ name.to_s ] 378 program = @programs[ program_name ] 387 return @programs[ name ] 391 @programs.delete( name ) 401 @programs[ 'default' ].insert_before( *args ) 405 @programs[ 'default' ].insert_after( *args ) [all …]
|
/external/python/cpython3/Tools/freeze/ |
D | win32.html | 15 <H2>Frozen programs under Win32</H2> 16 …programs under Win32 can (theoretically) freeze any type of program supported by Python on Win32 -… 19 <H4>Minimal frozen programs</H4> 20 <P>These programs freeze only .py files in your program. All external DLLs are required at run-tim… 22 <H4>Frozen Extension programs</H4> 24 <P>These programs also freeze in the sources from all .pyd and .dll files used at runtime. This me… 26 <H4>Completely frozen programs</H4> 27 <P>Completely stand-alone programs, as is the default on Unix systems. These are currently not sup… 41 …enting COM Servers. Ie, you can freeze programs which control other applications, but can not imp…
|
/external/python/cpython2/Tools/freeze/ |
D | win32.html | 15 <H2>Frozen programs under Win32</H2> 16 …programs under Win32 can (theoretically) freeze any type of program supported by Python on Win32 -… 19 <H4>Minimal frozen programs</H4> 20 <P>These programs freeze only .py files in your program. All external DLLs are required at run-tim… 22 <H4>Frozen Extension programs</H4> 24 <P>These programs also freeze in the sources from all .pyd and .dll files used at runtime. This me… 26 <H4>Completely frozen programs</H4> 27 <P>Completely stand-alone programs, as is the default on Unix systems. These are currently not sup… 41 …enting COM Servers. Ie, you can freeze programs which control other applications, but can not imp…
|
/external/lz4/contrib/meson/programs/ |
D | meson.build | 12 lz4_includes = include_directories(join_paths(lz4_root_dir, 'programs')) 13 lz4_sources = [join_paths(lz4_root_dir, 'programs/bench.c'), 14 join_paths(lz4_root_dir, 'programs/datagen.c'), 15 join_paths(lz4_root_dir, 'programs/lz4cli.c'), 16 join_paths(lz4_root_dir, 'programs/lz4io.c')] 39 # Programs and manpages installing 42 install_man(join_paths(lz4_root_dir, 'programs/lz4.1'))
|
/external/ltp/testcases/kernel/io/direct_io/ |
D | README | 19 diotest_routines.c: Routines to support the test programs. 20 diotest[1-6].c: 6 test programs with 30 test blocks. 21 Makefile: To compile the programs. 23 To run the programs: 24 1: Compile the programs 26 2: Execute the test script or the test programs individually.
|
/external/fsverity-utils/ |
D | Makefile | 150 #### Programs 152 ALL_PROG_SRC := $(wildcard programs/*.c) 154 ALL_PROG_HEADERS := $(wildcard programs/*.h) $(COMMON_HEADERS) 155 PROG_COMMON_SRC := programs/utils.c 158 programs/cmd_digest.o \ 159 programs/cmd_sign.o \ 160 programs/fsverity.o 163 programs/cmd_enable.o \ 164 programs/cmd_measure.o 166 TEST_PROG_SRC := $(wildcard programs/test_*.c) [all …]
|
/external/llvm/docs/ |
D | TestSuiteMakefileGuide.rst | 21 The ``test-suite`` module contains a number of programs that can be 22 compiled with LLVM and executed. These programs are compiled using the 25 the other programs are compared to the native program output and pass if 29 subset of the available tests or programs. This makes test run times 31 test failures. To run some test only on a subset of programs, simply 32 change directory to the programs you want tested and run ``gmake`` 34 variable to change what tests or run on the selected programs (see below 48 The SingleSource directory contains test programs that are only a 50 programs or small programs that calculate a particular value. Several 51 such programs are grouped together in each directory. [all …]
|
/external/zstd/lib/dll/example/ |
D | build_package.bat | 4 COPY programs\datagen.c bin\example\ 5 COPY programs\datagen.h bin\example\ 6 COPY programs\util.h bin\example\ 7 COPY programs\platform.h bin\example\ 20 COPY programs\zstd.exe bin\zstd.exe
|
/external/python/cpython2/Doc/tutorial/ |
D | appetite.rst | 30 more structure and support for large programs than shell scripts or batch files 38 Python programs. It comes with a large collection of standard modules that you 39 can use as the basis of your programs --- or as examples to start learning to 47 features of the language, to write throw-away programs, or to test functions 50 Python enables programs to be written compactly and readably. Programs written 51 in Python are typically much shorter than equivalent C, C++, or Java programs, 64 operations at maximum speed, or to link Python programs to libraries that may
|
/external/python/cpython3/Doc/tutorial/ |
D | appetite.rst | 30 more structure and support for large programs than shell scripts or batch files 38 Python programs. It comes with a large collection of standard modules that you 39 can use as the basis of your programs --- or as examples to start learning to 47 features of the language, to write throw-away programs, or to test functions 50 Python enables programs to be written compactly and readably. Programs written 51 in Python are typically much shorter than equivalent C, C++, or Java programs, 64 operations at maximum speed, or to link Python programs to libraries that may
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/ |
D | compiled_program_cache_generated.h | 102 const flatbuffers::Vector<flatbuffers::Offset<Program>> *programs() const { in programs() function 110 verifier.VerifyVector(programs()) && in Verify() 111 verifier.VerifyVectorOfTables(programs()) && in Verify() 122 …void add_programs(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<Program>>> programs)… in add_programs() 123 fbb_.AddOffset(CompiledCache::VT_PROGRAMS, programs); in add_programs() 140 flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<Program>>> programs = 0) { 142 builder_.add_programs(programs); 150 const std::vector<flatbuffers::Offset<Program>> *programs = nullptr) { 152 auto programs__ = programs ? _fbb.CreateVector<flatbuffers::Offset<Program>>(*programs) : 0;
|
/external/libpng/contrib/gregbook/ |
D | README | 8 cross-platform demo programs that show how to use the libpng reference 16 The source code for all three demo programs currently compiles under 48 Note that, although the programs are designed to be functional, their 50 other programs. As such, their user interfaces are crude and definitely 55 13-15 of the book for detailed discussion of the three programs. 70 The pngbook demo programs are explicitly designed to demonstrate proper 132 current folder. Like the Unix versions, the two windowed programs 135 the June 2001 release. Note that the programs use the Unix-style "-" 151 To run the programs, they probably first need to be set up as "foreign 163 RUNNING THE PROGRAMS: (VERY) BRIEF INTRO
|
/external/libcap/doc/values/ |
D | 39.txt | 4 programs. CAP_BPF permits a process to: 18 - BPF programs can use pointer-to-integer 28 - iteration over the system-wide loaded programs, 31 - CAP_PERFMON is required to load tracing programs. 33 programs.
|
/external/e2fsprogs/ |
D | INSTALL | 1 To install the second extended file system management programs, 20 cause programs that use the uuid library to core dump. To disable 23 4) Compile the programs 31 6) Install the programs 39 programs to work. It is only needed if you expect to develop other 40 programs using the libraries or if you want to compile other program
|
/external/OpenCL-CTS/test_conformance/half/ |
D | Test_vLoadHalf.cpp | 29 cl_program programs[kVectorSizeCount+kStrangeVectorSizeCount][AS_NumAddressSpaces] = {{0}}; in Test_vLoadHalf_private() local 284 …programs[vectorSize][AS_Global] = MakeProgram( device, source, sizeof( source) / sizeof( source[0]… in Test_vLoadHalf_private() 285 if( NULL == programs[ vectorSize ][AS_Global] ) { in Test_vLoadHalf_private() 294 …programs[vectorSize][AS_Global] = MakeProgram( device, sourceV3aligned, sizeof( sourceV3aligned) /… in Test_vLoadHalf_private() 295 if( NULL == programs[ vectorSize ][AS_Global] ) { in Test_vLoadHalf_private() 304 …programs[vectorSize][AS_Global] = MakeProgram( device, sourceV3, sizeof( sourceV3) / sizeof( sourc… in Test_vLoadHalf_private() 305 if( NULL == programs[ vectorSize ][AS_Global] ) { in Test_vLoadHalf_private() 314 …kernels[ vectorSize ][AS_Global] = clCreateKernel( programs[ vectorSize ][AS_Global], "test", &err… in Test_vLoadHalf_private() 339 programs[vectorSize][AS_Private] = MakeProgram( device, source_ptr, source_size ); in Test_vLoadHalf_private() 340 if( NULL == programs[ vectorSize ][AS_Private] ) in Test_vLoadHalf_private() [all …]
|
/external/zstd/build/VS2008/fullbench/ |
D | fullbench.vcproj | 47 …common;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\programs;$(SolutionDir)..\..\programs\le… 123 …common;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\programs;$(SolutionDir)..\..\programs\le… 197 …common;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\programs;$(SolutionDir)..\..\programs\le… 274 …common;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\programs;$(SolutionDir)..\..\programs\le… 408 RelativePath="..\..\..\programs\datagen.c" 412 RelativePath="..\..\..\programs\benchfn.c" 420 RelativePath="..\..\..\programs\util.c" 424 RelativePath="..\..\..\programs\timefn.c"
|
/external/flatbuffers/docs/source/ |
D | FlatBuffers.md | 132 own programs. 134 in your own programs. 136 in your own programs. 138 in your own programs. 140 own programs. 142 own programs. 144 own programs. 146 own programs. 148 own programs. 150 own programs. [all …]
|