Home
last modified time | relevance | path

Searched refs:programs (Results 1 – 25 of 688) sorted by relevance

12345678910>>...28

/external/e2fsprogs/
DINSTALL1 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
DREADME2 system management programs.
15 In case of bugs in these programs, please contact Ted Ts'o at
18 reports for these programs.
/external/valgrind/main/docs/internals/
Dperformance.txt13 - Julian made the tree builder linear. Saved 2--13% on a range of programs.
16 Saved 1--3% on a few programs.
25 programs (eg. ktuberling) programs by a couple of percent.
33 gives about 40% speedup on artificial programs which just do
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DTokenRewriteStream.js60 this.programs = null;
141 this.programs = {};
142 this.programs[trs.DEFAULT_PROGRAM_NAME] = []; property
161 var is = this.programs[programName];
163 programs[programName] = is.slice(trs.MIN_TOKEN_INDEX, this.instructionIndex);
345 var is = this.programs[name];
354 this.programs[name] = is;
389 var rewrites = this.programs[programName];
/external/sonivox/arm-fm-22k/lib_src/
Deas_fmsndlib.c1611 const S_PROGRAM programs[] = variable
1655 programs,
/external/bison/
DPACKAGING9 Contents: Runtime libraries and programs.
10 Audience: Anyone who wants to run internationalized programs
15 Audience: Anyone who wants to develop programs that use parsers.
20 contains localized programs that use the diagnostics contained in
/external/llvm/docs/
DTestSuiteMakefileGuide.rst20 The ``test-suite`` module contains a number of programs that can be
21 compiled with LLVM and executed. These programs are compiled using the
24 the other programs are compared to the native program output and pass if
28 subset of the available tests or programs. This makes test run times
30 test failures. To run some test only on a subset of programs, simply
31 change directory to the programs you want tested and run ``gmake``
33 variable to change what tests or run on the selected programs (see below
47 The SingleSource directory contains test programs that are only a
49 programs or small programs that calculate a particular value. Several
50 such programs are grouped together in each directory.
[all …]
DTestingGuide.rst32 regression tests and whole programs. The regression tests are contained
36 The whole programs tests are referred to as the "LLVM test suite" (or
59 The test suite contains whole programs, which are pieces of code which
61 executed. These programs are generally written in high level languages
64 These programs are compiled using a user specified compiler and set of
66 information. The output of these programs is compared to a reference
69 In addition to compiling and executing programs, whole program tests
71 efficiency of the programs generated as well as the speed with which
95 The more comprehensive test suite that includes whole programs in C and C++
405 To make RUN line writing easier, there are several helper scripts and programs
[all …]
/external/qemu/distrib/sdl-1.2.15/
DREADME28 freely in commercial programs as long as you link with the dynamic
32 the "include" subdirectory and the programs in the "test" subdirectory.
33 The header files and test programs are well commented and always up to date.
38 The test programs in the "test" subdirectory are in the public domain.
DREADME.MacOS28 II. Building the Simple DirectMedia Layer test programs:
38 Build the programs that have an associated MPW makefile (file ending
44 III. Building the Simple DirectMedia Layer demo programs:
DREADME.RISCOS38 …nimum of RISC OS 3.6. The source code for the library (and a lot of the programs built with it) al…
44 Note: As most programs ported from other OSes use high resolution graphics and a memory back buffer…
50 Several environmental variables have been defined to make porting programs easier (i.e. By setting …
66 Set to 1 to use a system memory back buffer for the screen in full screen mode. Some programs on ot…
72 SDL$<appname>$CloseAction - set the action for the close icon. Again as programs don't match the sp…
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenRewriteStream.cs182 protected IDictionary<string, IList<RewriteOperation>> programs = null; field in Antlr.Runtime.TokenRewriteStream
192 programs = new Dictionary<string, IList<RewriteOperation>>(); in Init()
193 programs[DEFAULT_PROGRAM_NAME] = new List<RewriteOperation>(PROGRAM_INIT_SIZE); in Init()
219 if (programs.TryGetValue(programName, out @is) && @is != null) { in Rollback()
224 programs[programName] = sublist; in Rollback()
350 if (!programs.TryGetValue(name, out @is) || @is == null) { in GetProgram()
358 programs[name] = @is; in InitializeProgram()
392 if (!programs.TryGetValue(programName, out rewrites)) in ToString()
/external/zlib/src/contrib/minizip/
Dconfigure.ac9 AC_MSG_CHECKING([whether to build example programs])
10 AC_ARG_ENABLE([demos], AC_HELP_STRING([--enable-demos], [build example programs]))
/external/libpng/contrib/gregbook/
DREADME8 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
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DTokenRewriteStream.cs204 protected IDictionary<string, IList<RewriteOperation>> programs = null; field in Antlr.Runtime.TokenRewriteStream
216 programs = new Dictionary<string, IList<RewriteOperation>>(); in Init()
217 programs[DEFAULT_PROGRAM_NAME] = new List<RewriteOperation>( PROGRAM_INIT_SIZE ); in Init()
247 if ( programs.TryGetValue( programName, out @is ) && @is != null ) in Rollback()
253 programs[programName] = sublist; in Rollback()
404 if ( !programs.TryGetValue( name, out @is ) || @is == null ) in GetProgram()
414 programs[name] = @is; in InitializeProgram()
455 if ( !programs.TryGetValue( programName, out rewrites ) ) in ToString()
/external/protobuf/examples/
DREADME.txt2 address book. Two programs are provided, each with three different
21 All of these programs simply take an address book file as their parameter.
22 The add_person programs will create the file if it doesn't already exist.
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DTokenRewriteStream.java162 protected Map programs = null; field in TokenRewriteStream
172 programs = new HashMap(); in init()
173 programs.put(DEFAULT_PROGRAM_NAME, new ArrayList(PROGRAM_INIT_SIZE)); in init()
196 List is = (List)programs.get(programName); in rollback()
198 programs.put(programName, is.subList(MIN_TOKEN_INDEX,instructionIndex)); in rollback()
321 List is = (List)programs.get(name); in getProgram()
330 programs.put(name, is); in initializeProgram()
362 List rewrites = (List)programs.get(programName); in toString()
/external/chromium_org/third_party/tcmalloc/vendor/packages/deb/
Dcontrol13 analyze the performance of C++ programs. This includes an optimized
24 analyze the performance of C++ programs. This includes an optimized
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRTokenRewriteStream.m184 @synthesize programs;
205 programs = [ANTLRHashMap newANTLRHashMap];
206 …[programs addObject:[ANTLRMapElement newANTLRMapElementWithName:DEFAULT_PROGRAM_NAME Node:[ANTLRHa…
215 programs = [ANTLRHashMap newANTLRHashMap];
216 …[programs addObject:[ANTLRMapElement newANTLRMapElementWithName:DEFAULT_PROGRAM_NAME Node:[ANTLRHa…
226 programs = [ANTLRHashMap newANTLRHashMap];
227 …[programs addObject:[ANTLRMapElement newANTLRMapElementWithName:DEFAULT_PROGRAM_NAME Node:[ANTLRHa…
237 return programs;
242 programs = aProgList;
259 // AMutableArray *is = [programs get(programName)];
[all …]
/external/valgrind/main/perf/
DREADME13 of runtime, particularly on larger programs.
21 difference to programs that allocate a lot.
32 Real programs
/external/llvm/docs/HistoricalNotes/
D2001-09-18-OptimizeExceptions.txt7 In C++ programs, exceptions suck, and here's why:
25 6. Most large C++ programs throw few exceptions. Most well designed
26 programs only throw exceptions in specific planned portions of the
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
Drewrite.rb367 @programs = Hash.new do |programs, name|
369 programs[ name ] = RewriteProgram.new( self, name )
370 else programs[ name.to_s ]
/external/libmtp/
DINSTALL15 Sample programs will be built in the "example" directory, and should
17 immediate gratification. Links to other programs using the libmtp
69 the same system. When you compile your programs they will typically
95 example programs prior to installation. The program-prefix option
96 makes libmtp sample programs avoid collision with other programs like
/external/llvm/
Dllvm.spec.in16 and idle-time optimization of programs from arbitrary programming languages.
18 Illinois and Apple. It currently supports compilation of C and C++ programs,
/external/e2fsprogs/lib/e2p/
De2p.pc.in7 Description: Ext2fs userpace programs utility library

12345678910>>...28