Home
last modified time | relevance | path

Searched refs:Chapter (Results 1 – 25 of 57) sorted by relevance

123

/external/mesa3d/docs/specs/
DMESA_swap_control.spec53 Additions to Chapter 2 of the 1.4 GL Specification (OpenGL Operation)
57 Additions to Chapter 3 of the 1.4 GL Specification (Rasterization)
61 Additions to Chapter 4 of the 1.4 GL Specification (Per-Fragment Operations
66 Additions to Chapter 5 of the 1.4 GL Specification (Special Functions)
70 Additions to Chapter 6 of the 1.4 GL Specification (State and State Requests)
DMESA_swap_frame_usage.spec89 Additions to Chapter 2 of the 1.4 GL Specification (OpenGL Operation)
93 Additions to Chapter 3 of the 1.4 GL Specification (Rasterization)
97 Additions to Chapter 4 of the 1.4 GL Specification (Per-Fragment Operations
102 Additions to Chapter 5 of the 1.4 GL Specification (Special Functions)
106 Additions to Chapter 6 of the 1.4 GL Specification (State and State Requests)
DMESA_ycbcr_texture.spec148 Additions to Chapter 4 of the OpenGL 1.4 Specification (Per-Fragment
153 Additions to Chapter 5 of the OpenGL 1.4 Specification (Special Functions)
157 Additions to Chapter 6 of the OpenGL 1.4 Specification (State and
DMESA_shader_debug.spec224 Additions to Chapter 9 of the OpenGL Shading Language 1.10 Specification
229 Additions to Chapter 10 of the OpenGL Shading Language 1.10
DMESA_multithread_makecurrent.spec64 Changes to Chapter 2 of the GLX 1.3 Specification (Functions and Errors)
76 Changes to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
DMESA_agp_offset.spec61 Additions to Chapter 3 the GLX 1.4 Specification (Functions and Errors)
DMESA_set_3dfx_mode.spec53 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
DMESA_copy_sub_buffer.spec54 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
DMESA_pixmap_colormap.spec59 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
DMESA_texture_array.spec155 Additions to Chapter 2 of the OpenGL 2.0 Specification (OpenGL Operation)
159 Additions to Chapter 3 of the OpenGL 2.0 Specification (Rasterization)
565 Additions to Chapter 4 of the OpenGL 2.0 Specification (Per-Fragment Operations)
603 Additions to Chapter 5 of the OpenGL 2.0 Specification (Special Functions)
618 Additions to Chapter 6 of the OpenGL 2.0 Specification (State and State Requests)
/external/llvm/docs/tutorial/
DBuildingAJIT4.rst12 Chapter 4 Introduction
15 Welcome to Chapter 4 of the "Building an ORC-based JIT in LLVM" tutorial. This
18 `Chapter 3 <BuildingAJIT3.html>`_ with a custom lazy-JITing scheme that JITs
DBuildingAJIT3.rst12 Chapter 3 Introduction
15 Welcome to Chapter 3 of the "Building an ORC-based JIT in LLVM" tutorial. This
17 CompileOnDemand layer the JIT from `Chapter 2 <BuildingAJIT2.html>`_.
DBuildingAJIT5.rst12 Chapter 5 Introduction
15 Welcome to Chapter 5 of the "Building an ORC-based JIT in LLVM" tutorial. This
21 stack from `Chapter 4 <BuildingAJIT3.html>`_.
DLangImpl01.rst38 - `Chapter #1 <#language>`_: Introduction to the Kaleidoscope
45 - `Chapter #2 <LangImpl02.html>`_: Implementing a Parser and AST -
51 - `Chapter #3 <LangImpl03.html>`_: Code generation to LLVM IR - With
54 - `Chapter #4 <LangImpl04.html>`_: Adding JIT and Optimizer Support
59 - `Chapter #5 <LangImpl05.html>`_: Extending the Language: Control
64 - `Chapter #6 <LangImpl06.html>`_: Extending the Language:
70 - `Chapter #7 <LangImpl07.html>`_: Extending the Language: Mutable
76 - `Chapter #8 <LangImpl08.html>`_: Compiling to Object Files - This
79 - `Chapter #9 <LangImpl09.html>`_: Extending the Language: Debug
86 - `Chapter #10 <LangImpl10.html>`_: Conclusion and other useful LLVM
[all …]
DOCamlLangImpl1.rst38 - `Chapter #1 <#language>`_: Introduction to the Kaleidoscope
45 - `Chapter #2 <OCamlLangImpl2.html>`_: Implementing a Parser and
51 - `Chapter #3 <OCamlLangImpl3.html>`_: Code generation to LLVM IR -
54 - `Chapter #4 <OCamlLangImpl4.html>`_: Adding JIT and Optimizer
59 - `Chapter #5 <OCamlLangImpl5.html>`_: Extending the Language:
64 - `Chapter #6 <OCamlLangImpl6.html>`_: Extending the Language:
70 - `Chapter #7 <OCamlLangImpl7.html>`_: Extending the Language:
76 - `Chapter #8 <OCamlLangImpl8.html>`_: Conclusion and other useful
140 A more interesting example is included in Chapter 6 where we write a
DBuildingAJIT1.rst8 Chapter 1 Introduction
11 Welcome to Chapter 1 of the "Building an ORC-based JIT in LLVM" tutorial. This
25 - Chapter #1: Investigate the simple KaleidoscopeJIT class. This will
29 - `Chapter #2 <BuildingAJIT2.html>`_: Extend the basic KaleidoscopeJIT by adding
32 - `Chapter #3 <BuildingAJIT3.html>`_: Further extend the JIT by adding a
35 - `Chapter #4 <BuildingAJIT4.html>`_: Improve the laziness of our JIT by
40 - `Chapter #5 <BuildingAJIT5.html>`_: Add process isolation by JITing code into
44 `Chapter 7 <LangImpl7.html>`_ of the "Implementing a language in LLVM tutorial",
47 in Chapter #2.
95 the REPL code from `Chapter 7 <LangImpl7.html>`_ of that tutorial to supply the
[all …]
DBuildingAJIT2.rst12 Chapter 2 Introduction
15 Welcome to Chapter 2 of the "Building an ORC-based JIT in LLVM" tutorial. In
16 `Chapter 1 <BuildingAJIT1.html>`_ of this series we examined a basic JIT
28 In `Chapter 4 <LangImpl4.html>`_ of the "Implementing a language with LLVM"
36 added to it. In this Chapter we will make optimization a phase of our JIT
45 Chapter 1 and compose an ORC *IRTransformLayer* on top. We will look at how the
78 Our extended KaleidoscopeJIT class starts out the same as it did in Chapter 1,
151 `Chapter 4 <LangImpl4.html>`_ of the "Implementing a language with LLVM"
276 operations we identified in Chapter 1. Conforming to the layer concept allows
/external/mesa3d/docs/specs/OLD/
DMESA_packed_depth_stencil.spec72 Additions to Chapter 2 of the 1.1 Specification (OpenGL Operation)
76 Additions to Chapter 3 of the 1.1 Specification (Rasterization)
184 Additions to Chapter 4 of the 1.1 Specification (Per-Fragment Operations
199 Additions to Chapter 5 of the 1.1 Specification (Special Functions)
203 Additions to Chapter 6 of the 1.1 Specification (State and State Requests)
DMESA_sprite_point.spec113 Additions to Chapter 2 of the 1.1 Specification (OpenGL Operation)
117 Additions to Chapter 3 of the 1.1 Specification (Rasterization)
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.cc1859 bool Chapter::set_id(const char* id) { return StrCpy(id, &id_); } in set_id()
1861 void Chapter::set_time(const Segment& segment, uint64_t start_ns, in set_time()
1869 bool Chapter::add_string(const char* title, const char* language, in add_string()
1889 Chapter::Chapter() { in Chapter() function in mkvmuxer::Chapter
1901 Chapter::~Chapter() {} in ~Chapter()
1903 void Chapter::Init(unsigned int* seed) { in Init()
1913 void Chapter::ShallowCopy(Chapter* dst) const { in ShallowCopy()
1923 void Chapter::Clear() { in Clear()
1937 bool Chapter::ExpandDisplaysArray() { in ExpandDisplaysArray()
1959 uint64_t Chapter::WriteAtom(IMkvWriter* writer) const { in WriteAtom()
[all …]
Dmkvmuxer.h925 class Chapter {
995 Chapter();
996 ~Chapter();
1005 void ShallowCopy(Chapter* dst) const;
1046 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(Chapter);
1057 Chapter* AddChapter(unsigned int* seed);
1082 Chapter* chapters_;
1531 Chapter* AddChapter();
/external/syslinux/doc/
DCodingStyle.txt23 Chapter 1: Indentation
82 Chapter 2: Breaking long lines and strings
107 Chapter 3: Placing Braces and Spaces
244 Chapter 4: Naming
277 Chapter 5: Typedefs
353 Chapter 6: Functions
395 Chapter 7: Centralized exiting of functions
432 Chapter 8: Commenting
472 Chapter 9: You've made a mess of it
532 Chapter 10: Kconfig configuration files
[all …]
/external/syslinux/com32/libupload/
Dymodem.txt128 Chapter 1
194 Chapter 1
260 Chapter 2
326 Chapter 2
392 Chapter 3
458 Chapter 3
524 Chapter 3
590 Chapter 3
656 Chapter 4 XMODEM Protocol Enhancements
722 Chapter 4 XMODEM Protocol Enhancements
[all …]
/external/libnfnetlink/
DMake_global.am2 # Please read Chapter 6 "Library interface versions" of the libtool
/external/libnetfilter_conntrack/
DMake_global.am2 # Please read Chapter 6 "Library interface versions" of the libtool

123