Home
last modified time | relevance | path

Searched refs:Buffers (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dbuffer_sequence_adapter.hpp61 template <typename Buffer, typename Buffers>
66 explicit buffer_sequence_adapter(const Buffers& buffer_sequence) in buffer_sequence_adapter()
69 typename Buffers::const_iterator iter = buffer_sequence.begin(); in buffer_sequence_adapter()
70 typename Buffers::const_iterator end = buffer_sequence.end(); in buffer_sequence_adapter()
94 static bool all_empty(const Buffers& buffer_sequence) in all_empty()
96 typename Buffers::const_iterator iter = buffer_sequence.begin(); in all_empty()
97 typename Buffers::const_iterator end = buffer_sequence.end(); in all_empty()
105 static void validate(const Buffers& buffer_sequence) in validate()
107 typename Buffers::const_iterator iter = buffer_sequence.begin(); in validate()
108 typename Buffers::const_iterator end = buffer_sequence.end(); in validate()
[all …]
Dconsuming_buffers.hpp151 template <typename Buffer, typename Buffers>
159 typedef consuming_buffers_iterator<Buffer, typename Buffers::const_iterator>
163 consuming_buffers(const Buffers& buffers) in consuming_buffers()
184 typename Buffers::const_iterator first = other.buffers_.begin(); in consuming_buffers()
185 typename Buffers::const_iterator second = other.begin_remainder_; in consuming_buffers()
196 typename Buffers::const_iterator first = other.buffers_.begin(); in operator =()
197 typename Buffers::const_iterator second = other.begin_remainder_; in operator =()
254 Buffers buffers_;
257 typename Buffers::const_iterator begin_remainder_;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DSourceMgr.h51 std::vector<SrcBuffer> Buffers; variable
85 assert(i < Buffers.size() && "Invalid Buffer ID!"); in getBufferInfo()
86 return Buffers[i]; in getBufferInfo()
90 assert(i < Buffers.size() && "Invalid Buffer ID!"); in getMemoryBuffer()
91 return Buffers[i].Buffer; in getMemoryBuffer()
95 assert(i < Buffers.size() && "Invalid Buffer ID!"); in getParentIncludeLoc()
96 return Buffers[i].IncludeLoc; in getParentIncludeLoc()
105 Buffers.push_back(NB); in AddNewSourceBuffer()
106 return Buffers.size()-1; in AddNewSourceBuffer()
/external/llvm/tools/dsymutil/
DBinaryHolder.cpp25 std::vector<MemoryBufferRef> Buffers; in getMachOFatMemoryBuffers() local
30 Buffers.emplace_back(ObjData, Filename); in getMachOFatMemoryBuffers()
32 return Buffers; in getMachOFatMemoryBuffers()
101 std::vector<MemoryBufferRef> Buffers; in GetArchiveMemberBuffers() local
102 Buffers.reserve(CurrentArchives.size()); in GetArchiveMemberBuffers()
120 Buffers.push_back(*ErrOrMem); in GetArchiveMemberBuffers()
128 if (Buffers.empty()) in GetArchiveMemberBuffers()
130 return Buffers; in GetArchiveMemberBuffers()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dgen7_sol_state.c54 intel_buffer_object(xfb_obj->Buffers[i]); in upload_3dstate_so_buffers()
59 if (!xfb_obj->Buffers[i]) { in upload_3dstate_so_buffers()
73 stride = linked_xfb_info->Buffers[i].Stride * 4; in upload_3dstate_so_buffers()
260 if (xfb_obj->Buffers[i]) { in upload_3dstate_streamout()
284 if (xfb_obj->Buffers[0]) in upload_3dstate_streamout()
285 dw3 |= linked_xfb_info->Buffers[0].Stride * 4; in upload_3dstate_streamout()
286 if (xfb_obj->Buffers[1]) in upload_3dstate_streamout()
287 dw3 |= (linked_xfb_info->Buffers[1].Stride * 4) << 16; in upload_3dstate_streamout()
288 if (xfb_obj->Buffers[2]) in upload_3dstate_streamout()
289 dw4 |= linked_xfb_info->Buffers[2].Stride * 4; in upload_3dstate_streamout()
[all …]
Dgen6_sol.c60 brw, xfb_obj->Buffers[buffer], in gen6_update_sol_surfaces()
63 linked_xfb_info->Buffers[buffer].Stride, buffer_offset); in gen6_update_sol_surfaces()
66 brw, xfb_obj->Buffers[buffer], in gen6_update_sol_surfaces()
69 linked_xfb_info->Buffers[buffer].Stride, buffer_offset); in gen6_update_sol_surfaces()
213 for (unsigned i = 0; i < ARRAY_SIZE(obj->Buffers); i++) { in brw_delete_transform_feedback()
214 _mesa_reference_buffer_object(ctx, &obj->Buffers[i], NULL); in brw_delete_transform_feedback()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DSourceMgr.h57 std::vector<SrcBuffer> Buffers; variable
69 bool isValidBufferID(unsigned i) const { return i && i <= Buffers.size(); } in isValidBufferID()
94 return Buffers[i - 1]; in getBufferInfo()
99 return Buffers[i - 1].Buffer.get(); in getMemoryBuffer()
103 return Buffers.size(); in getNumBuffers()
113 return Buffers[i - 1].IncludeLoc; in getParentIncludeLoc()
123 Buffers.push_back(std::move(NB)); in AddNewSourceBuffer()
124 return Buffers.size(); in AddNewSourceBuffer()
/external/llvm/include/llvm/Support/
DSourceMgr.h62 std::vector<SrcBuffer> Buffers; variable
74 bool isValidBufferID(unsigned i) const { return i && i <= Buffers.size(); } in isValidBufferID()
99 return Buffers[i - 1]; in getBufferInfo()
104 return Buffers[i - 1].Buffer.get(); in getMemoryBuffer()
108 return Buffers.size(); in getNumBuffers()
118 return Buffers[i - 1].IncludeLoc; in getParentIncludeLoc()
128 Buffers.push_back(std::move(NB)); in AddNewSourceBuffer()
129 return Buffers.size(); in AddNewSourceBuffer()
/external/swiftshader/third_party/LLVM/lib/Support/
DSourceMgr.cpp42 while (!Buffers.empty()) { in ~SourceMgr()
43 delete Buffers.back().Buffer; in ~SourceMgr()
44 Buffers.pop_back(); in ~SourceMgr()
73 for (unsigned i = 0, e = Buffers.size(); i != e; ++i) in FindBufferContainingLoc()
74 if (Loc.getPointer() >= Buffers[i].Buffer->getBufferStart() && in FindBufferContainingLoc()
77 Loc.getPointer() <= Buffers[i].Buffer->getBufferEnd()) in FindBufferContainingLoc()
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_xformfb.c99 for (i = 0; i < ARRAY_SIZE(sobj->base.Buffers); i++) { in st_delete_transform_feedback()
100 _mesa_reference_buffer_object(ctx, &sobj->base.Buffers[i], NULL); in st_delete_transform_feedback()
119 max_num_targets = MIN2(ARRAY_SIZE(sobj->base.Buffers), in st_begin_transform_feedback()
124 struct st_buffer_object *bo = st_buffer_object(sobj->base.Buffers[i]); in st_begin_transform_feedback()
128 Buffers[i].Stream; in st_begin_transform_feedback()
207 Buffers[i].Stream; in st_end_transform_feedback()
/external/protobuf/docs/
Dthird_party.md1 # Third-Party Add-ons for Protocol Buffers
3 This page lists code related to Protocol Buffers which is developed and maintained by third parties…
9 These are projects we know about implementing Protocol Buffers for other programming languages:
89Buffers. There are other third-party RPC implementations as well. Some of these actually work wit…
118 There are miscellaneous other things you may find useful as a Protocol Buffers developer.
138 * [RSpec matchers and Cucumber step defs for testing Protocol Buffers](https://github.com/connamara…
139 * [Sbt plugin for Protocol Buffers](https://github.com/Atry/sbt-cppp)
142 * [Python scripts to convert between Protocol Buffers and JSON](https://github.com/NextTuesday/py-p…
143 * [Visual Studio Language Service support for Protocol Buffers](http://visualstudiogallery.msdn.mic…
144 * [C++ library for serialization/de-serialization between Protocol Buffers and JSON.](https://githu…
/external/protobuf/conformance/
DREADME.md1 Protocol Buffers - Google's data interchange format
9 correctness of Protocol Buffers implementations. These tests are designed
10 to be easy to run against any Protocol Buffers implementation.
31 To run these tests against a new Protocol Buffers implementation, write a
/external/protobuf/java/
DREADME.md1 Protocol Buffers - Google's data interchange format
8 This directory contains the Java Protocol Buffers runtime library.
13 The Protocol Buffers build is managed using Maven. If you would
50 Building the 'lite' version of the Java Protocol Buffers library is
99 The complete documentation for Protocol Buffers is available via the
/external/protobuf/examples/
DREADME.txt1 This directory contains example code that uses Protocol Buffers to manage an
24 These examples are part of the Protocol Buffers tutorial, located at:
38 First, install the Protocol Buffers compiler (protoc).
39 Then, install the Go Protocol Buffers plugin
/external/protobuf/python/
DREADME.md1 Protocol Buffers - Google's data interchange format
8 This directory contains the Python Protocol Buffers runtime library.
25 The Python implementation of Protocol Buffers is not as mature as the C++
28 join the Protocol Buffers discussion list and let us know!
115 The complete documentation for Protocol Buffers is available via the
/external/protobuf/ruby/
DREADME.md1 This directory contains the Ruby extension that implements Protocol Buffers
13 When we release a version of Protocol Buffers, we will upload a Gem to
26 also want to install Protocol Buffers itself, as described in this repository's
95 We are using a version number scheme that is a hybrid of Protocol Buffers'
101 * First, we determine the prefix: a Protocol Buffers version "3.0.0-alpha-2"
Dgoogle-protobuf.gemspec5 s.summary = "Protocol Buffers"
6 s.description = "Protocol Buffers are Google's data interchange format."
/external/deqp/external/openglcts/modules/gl/
Dgl4cDirectStateAccessTests.cpp90 addChild(new Buffers::CreationTest(m_context)); in init()
91 addChild(new Buffers::DataTest(m_context)); in init()
92 addChild(new Buffers::ClearTest(m_context)); in init()
93 addChild(new Buffers::MapReadOnlyTest(m_context)); in init()
94 addChild(new Buffers::MapReadWriteTest(m_context)); in init()
95 addChild(new Buffers::MapWriteOnlyTest(m_context)); in init()
96 addChild(new Buffers::MapRangeReadBitTest(m_context)); in init()
97 addChild(new Buffers::MapRangeWriteBitTest(m_context)); in init()
98 addChild(new Buffers::SubDataQueryTest(m_context)); in init()
99 addChild(new Buffers::DefaultsTest(m_context)); in init()
[all …]
/external/flatbuffers/docs/source/
DBenchmarks.md5 64bit. We use the LITE runtime for Protocol Buffers (less code / lower
24 | | FlatBuffers (binary) | Protocol Buffers
38 - Cap'n'Proto promises to reduce Protocol Buffers much like FlatBuffers does,
45 - Thrift: very similar to Protocol Buffers, but appears to be less efficient,
/external/protobuf/src/
DREADME.md1 Protocol Buffers - Google's data interchange format
74 To compile a package that uses Protocol Buffers, you need to pass
76 Protocol Buffers integrates with pkg-config to manage this. If you
89 Buffers may not yet integrate with pkg-config to get flags, and may
100 Buffers, you should probably use the PKG_CHECK_MODULES macro in your
196 Protocol Buffers C++ runtime libraries will have compatible ABIs.
209 The complete documentation for Protocol Buffers is available via the
/external/nanopb-c/docs/
Dindex.rst2 Nanopb: Protocol Buffers with small code size
7 Nanopb is an ANSI-C library for encoding and decoding messages in Google's `Protocol Buffers`__ for…
52 #) The deprecated Protocol Buffers feature called "groups" is not supported.
123 Buffers *protoc* compiler, and the Python bindings for Protocol Buffers. On
/external/deqp/modules/gles2/functional/
Des2fFboRenderTest.cpp1798 template <GLenum Buffers>
1812 template <GLenum Buffers>
1813 class RecreateBuffersNoRebindTest : public RecreateBuffersTest<Buffers>
1817 : RecreateBuffersTest<Buffers>(context, config, false) in RecreateBuffersNoRebindTest()
1822 template <GLenum Buffers>
1823 class RecreateBuffersRebindTest : public RecreateBuffersTest<Buffers>
1827 : RecreateBuffersTest<Buffers>(context, config, true) in RecreateBuffersRebindTest()
1832 template <GLenum Buffers>
1833 RecreateBuffersTest<Buffers>::RecreateBuffersTest (Context& context, const FboConfig& config, bool … in RecreateBuffersTest()
1839 template <GLenum Buffers>
[all …]
/external/protobuf/
DREADME.android13 Protocol Buffers are a way of encoding structured data in an efficient
14 yet extensible format. Google uses Protocol Buffers for almost all
/external/protobuf/js/
DREADME.md1 Protocol Buffers - Google's data interchange format
8 This directory contains the JavaScript Protocol Buffers runtime library.
19 To use Protocol Buffers with JavaScript, you need two main components:
56 Using Protocol Buffers in your own project
59 To use Protocol Buffers in your own project, you need to integrate
/external/protobuf/util/
DREADME.md1 Protocol Buffers - Google's data interchange format
13 Protocol Buffers (a.k.a., protobuf) are Google's language-neutral,
74 The complete documentation for Protocol Buffers is available via the

12345678910>>...13