Lines Matching refs:a
3 Dittosuite is a work in progress collection of tools that aims at providing
4 a high-level language called Dittolang that defines operations.
7 to provide a simulated performance measurement and quickly identify
8 the goodness of a solution.
11 a real device, tracking the behavior and measuring the performance.
15 In addition to this readme, the project includes a Doxygen configuration, which
28 To run a benchmark, a well formed .ditto file must be provided, see section
83 `main` is the entry point for the benchmark. It can contain a single `instruction` or
139 Instruction set can optionally iterate over a list and execute the provided set of instructions on
141 - `string list_name` - Shared variable name pointing to a list of values.
142 - `string item_name` - Shared variable name to which a selected value should be stored.
167 (or instruction sets) in different threads. If the optional `spawn` option for a specific
202 Opens the file with a file path or a shared variable name pointing to a file path. If neither of
203 those are provided, a random name consisting of 9 random digits is generated. Optionally saves the
210 `string input` - Shared variable name pointing to a file path.
218 Deletes the file with a file path or a shared variable name pointing to a file path.
224 `string input` - Shared variable name pointing to a file path.
233 - `string input_fd` - Shared variable name pointing to a file descriptor.
242 - `string input_fd` - Shared variable name pointing to a file descriptor.
247 Resizes the file with the provided file descriptor and a range for new size. New file size is
253 - `string input_fd` - Shared variable name pointing to a file descriptor.
273 - `string input_fd` - Shared variable name pointing to a file descriptor.
301 - `string input_fd` - Shared variable name pointing to a file descriptor.
324 Reads file names from a directory and stores them as a list in a shared variable. Uses `readdir(3)`.
368 As an extension to testing, coverage is not a metric that guarantees good
373 data, and `lcov` to aggregate and export all the coverage information into a
389 1.6. The lcov repository already has a binary, so PATH can be updated with its
403 These operations should be able to be triggered in a multiprogrammed fashion.
408 A graph of processes that are communicating with each others in a pipeline of
422 T1 runs the following operations: Read, Write, Read, sends a request to T2 and
424 T2 waits for a request, then Read, Write, then sends the reply to the requester.