Home
last modified time | relevance | path

Searched refs:text (Results 1 – 15 of 15) sorted by relevance

/oneTBB/
H A D.gitattributes2 * text=auto
6 *.c text
7 *.h text
8 *.cpp text
9 *.def text
10 *.rc text
11 *.i text
12 *.sh text
14 *.mk text
22 *.js text
[all …]
H A DLICENSE.txt106 (d) If the Work includes a "NOTICE" text file as part of its
111 of the following places: within a NOTICE text file distributed
119 or as an addendum to the NOTICE text from the Work, provided
183 the brackets!) The text should be enclosed in the appropriate
H A Dthird-party-programs.txt9 party programs as set forth in the "third-party-programs.txt" or other similarlynamed text file.
/oneTBB/test/tbbmalloc/
H A Dtest_scalable_allocator.cpp199 const char *text = "this is a test";// 15 bytes variable
202 strcpy(p1, text);
204 REQUIRE_MESSAGE( (p2 && !strcmp(p2, text)), "realloc broke memory" );
211 REQUIRE_MESSAGE( !strcmp(p3, text), "realloc broke memory" );
/oneTBB/doc/main/tbb_userguide/Migration_Guide/
H A DMixing_Two_Runtimes.rst19 .. code:: text
30 .. code:: text
/oneTBB/doc/main/tbb_userguide/
H A DWorking_on_the_Assembly_Line_pipeline.rst19 simple text processing example will be used to demonstrate the usage of
21 example reads a text file, squares each decimal numeral in the text, and
22 writes the modified text to a new file. Below is a picture of the
60 of text. Each input chunk is approximately 4000 characters. Each chunk
67 // Holds a slice of text.
H A DThroughput_of_pipeline.rst21 The text processing example has relatively poor speedup, because the
H A DCancellation_and_Nested_Parallelism.rst128 Removing the blue text would permit cancellation to propagate down into
/oneTBB/doc/
H A DREADME.md3 Our documentation is written in restructured text markup (.rst) and built using [Sphinx](http://www…
H A DDoxyfile.in6 # All text after a double hash (##) is considered a comment and is placed in
9 # All text after a single hash (#) is considered a comment and will be ignored.
21 # that follow. The default is UTF-8 which is also the encoding used for all text
113 # used to form the text in various listings. Each string in this list, if found
114 # as the leading text of the brief description, will be stripped from the text
116 # text. Otherwise, the brief description is used as-is. If left blank, the
537 # append additional text to a page's title, such as Class Reference. If set to
768 # can produce. The string should contain the $file, $line, and $text tags, which
770 # and the warning text. Optionally the format may contain $version, which will
773 # The default value is: $file:$line: $text.
[all …]
/oneTBB/examples/concurrent_hash_map/count_strings/
H A DREADME.md2 The example counts the number of unique words in a text.
/oneTBB/examples/parallel_pipeline/square/
H A DREADME.md2 …el_pipeline`. Example program reads a file containing decimal integers in text format, and changes…
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DLocal_Serializer.rst16 suppose the program presents editable text to the user. There might
17 be operations to select text and delete selected text. Reversing the
/oneTBB/doc/main/intro/
H A Dnotation.rst23 … options, function names, methods, classes, data structures in body text, source code.
/oneTBB/test/common/
H A Ddoctest.h4919 #define DOCTEST_OUTPUT_DEBUG_STRING(text) ::OutputDebugStringA(text)
4922 #define DOCTEST_OUTPUT_DEBUG_STRING(text)
5116 ScopedElement& writeText( std::string const& text, bool indent = true );
5157 XmlWriter& writeText( std::string const& text, bool indent = true );
5352 …XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, bool inden…
5353 m_writer->writeText( text, indent );
5415 XmlWriter& XmlWriter::writeText( std::string const& text, bool indent ) {
5416 if( !text.empty() ){
5421 m_os << XmlEncode( text );