Home
last modified time | relevance | path

Searched refs:buffered (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/third_party/boost/libs/geometry/test/algorithms/buffer/
Dtest_buffer.hpp143 bg::model::multi_polygon<GeometryOut>& buffered, in test_buffer() argument
250 buffered.clear(); in test_buffer()
252 std::back_inserter(buffered), in test_buffer()
263 buffer_mapper.map_input_output(mapper, geometry, buffered, distance_strategy.negative()); in test_buffer()
270 if (bg::is_empty(buffered) && bg::math::equals(expected_area, 0.0)) in test_buffer()
280 ! bg::is_empty(buffered), in test_buffer()
287 bg::envelope(buffered, envelope_output, envelope_strategy); in test_buffer()
299 int(buffered.size()) == expected_count, in test_buffer()
302 << " Detected: " << buffered.size() in test_buffer()
308 std::size_t nholes = bg::num_interior_rings(buffered); in test_buffer()
[all …]
Dtest_buffer_svg_per_turn.hpp88 GeometryBuffer const& buffered, bool negative) in map_input_output() argument
90 m_buffer_mapper.map_input_output(m_mapper, geometry, buffered, negative); in map_input_output()
153 GeometryBuffer const& buffered, bool negative) in map_input_output() argument
158 it->map_input_output(geometry, buffered, negative); in map_input_output()
Dtest_buffer_svg.hpp343 GeometryBuffer const& buffered, bool negative) in map_input_output() argument
356 map_io_zoomed(mapper, geometry, buffered, negative, areal); in map_input_output()
360 map_io(mapper, geometry, buffered, negative, areal); in map_input_output()
391 GeometryBuffer const& buffered, bool negative, bool areal) in map_io() argument
410 mapper.map(buffered, style); in map_io()
416 GeometryBuffer const& buffered, bool negative, bool areal) in map_io_zoomed() argument
443 bg::intersection(buffered, m_alternate_box, clipped); in map_io_zoomed()
/third_party/python/Modules/_io/
Dbufferedio.c241 } buffered; typedef
269 _enter_buffered_busy(buffered *self) in _enter_buffered_busy()
380 buffered_dealloc(buffered *self) in buffered_dealloc()
403 buffered_sizeof(buffered *self, PyObject *Py_UNUSED(ignored)) in buffered_sizeof()
414 buffered_traverse(buffered *self, visitproc visit, void *arg) in buffered_traverse()
422 buffered_clear(buffered *self) in buffered_clear()
434 buffered_dealloc_warn(buffered *self, PyObject *source) in buffered_dealloc_warn()
457 buffered_simple_flush(buffered *self, PyObject *args) in buffered_simple_flush()
464 buffered_closed(buffered *self) in buffered_closed()
478 buffered_closed_get(buffered *self, void *context) in buffered_closed_get()
[all …]
/third_party/python/Modules/_io/clinic/
Dbufferedio.c.h109 _io__Buffered_peek_impl(buffered *self, Py_ssize_t size);
112 _io__Buffered_peek(buffered *self, PyObject *const *args, Py_ssize_t nargs) in _io__Buffered_peek()
151 _io__Buffered_read_impl(buffered *self, Py_ssize_t n);
154 _io__Buffered_read(buffered *self, PyObject *const *args, Py_ssize_t nargs) in _io__Buffered_read()
184 _io__Buffered_read1_impl(buffered *self, Py_ssize_t n);
187 _io__Buffered_read1(buffered *self, PyObject *const *args, Py_ssize_t nargs) in _io__Buffered_read1()
226 _io__Buffered_readinto_impl(buffered *self, Py_buffer *buffer);
229 _io__Buffered_readinto(buffered *self, PyObject *arg) in _io__Buffered_readinto()
263 _io__Buffered_readinto1_impl(buffered *self, Py_buffer *buffer);
266 _io__Buffered_readinto1(buffered *self, PyObject *arg) in _io__Buffered_readinto1()
[all …]
/third_party/boost/libs/thread/tutorial/
Dbounded_buffer.cpp17 bounded_buffer(int n) : begin(0), end(0), buffered(0), circular_buf(n) { } in bounded_buffer()
20 while (buffered == circular_buf.size()) in send()
24 ++buffered; in send()
29 while (buffered == 0) in receive()
33 --buffered; in receive()
38 int begin, end, buffered; member in bounded_buffer
/third_party/boost/libs/thread/example/
Dcondition.cpp19 bounded_buffer(int n) : boost::noncopyable(), begin(0), end(0), buffered(0), circular_buf(n) { } in bounded_buffer()
23 while (buffered == circular_buf.size()) in send()
27 ++buffered; in send()
32 while (buffered == 0) in receive()
36 --buffered; in receive()
43 std::vector<int>::size_type buffered; member in bounded_buffer
/third_party/node/lib/internal/streams/
Dwritable.js181 state.buffered = [];
188 return this.buffered.slice(this.bufferedIndex);
193 return this.buffered.length - this.bufferedIndex;
346 state.buffered.push({ chunk, encoding, callback });
429 if (state.buffered.length > state.bufferedIndex) {
482 for (let n = state.bufferedIndex; n < state.buffered.length; ++n) {
483 const { chunk, callback } = state.buffered[n];
498 const { buffered, bufferedIndex, objectMode } = state;
499 const bufferedLength = buffered.length - bufferedIndex;
512 for (let n = i; n < buffered.length; ++n) {
[all …]
/third_party/openssl/doc/man3/
DSSL_pending.pod5 SSL_pending, SSL_has_pending - check for readable bytes buffered in an
18 is processed (e.g. decrypted) in one go and is buffered by OpenSSL until it is
21 SSL_pending() returns the number of bytes which have been processed, buffered
28 additional bytes will be buffered by OpenSSL but will remain unprocessed until
33 the data is in unprocessed buffered records).
35 SSL_has_pending() returns 1 if B<s> has buffered data (whether processed or
38 data because the unprocessed buffered data when processed yielded no application
41 SSL_read_ex() or SSL_read() call because the buffered and unprocessed data is
47 SSL_pending() returns the number of buffered and processed application data
49 returns 1 if there is buffered record data in the SSL object and 0 otherwise.
/third_party/node/test/parallel/
Dtest-stream2-readable-legacy-drain.js40 let buffered = 0; variable
42 buffered += c.length;
48 assert(buffered <= 3);
49 buffered = 0;
/third_party/flutter/skia/src/utils/
DSkFrontBufferedStream.cpp127 const size_t buffered = fStream->read(buffer, bytesToBuffer); in bufferAndWriteTo() local
129 fBufferedSoFar += buffered; in bufferAndWriteTo()
135 memcpy(dst, buffer, buffered); in bufferAndWriteTo()
138 return buffered; in bufferAndWriteTo()
196 const size_t buffered = this->bufferAndWriteTo(dst, size); in read() local
200 size -= buffered; in read()
203 dst += buffered; in read()
/third_party/boost/libs/asio/doc/requirements/
DBufferedHandshakeHandler.qbk10 A buffered handshake handler must meet the requirements for a [link
11 boost_asio.reference.Handler handler]. A value `h` of a buffered handshake handler
17 A free function as a buffered handshake handler:
26 A buffered handshake handler function object:
40 A non-static class member function adapted to a buffered handshake handler
/third_party/skia/client_utils/android/
DFrontBufferedStream.cpp154 const size_t buffered = fStream->read(buffer, bytesToBuffer); in bufferAndWriteTo() local
156 fBufferedSoFar += buffered; in bufferAndWriteTo()
162 memcpy(dst, buffer, buffered); in bufferAndWriteTo()
165 return buffered; in bufferAndWriteTo()
224 const size_t buffered = this->bufferAndWriteTo(dst, size); in read() local
228 size -= buffered; in read()
231 dst += buffered; in read()
/third_party/cJSON/fuzzing/
Dcjson_read_fuzzer.c19 int minify, require_termination, formatted, buffered; in LLVMFuzzerTestOneInput() local
32 buffered = data[3] == '1' ? 1 : 0; in LLVMFuzzerTestOneInput()
38 if(buffered) in LLVMFuzzerTestOneInput()
/third_party/node/deps/npm/node_modules/delayed-stream/
DReadme.md30 If you are not using `Stream#pipe`, you can also manually release the buffered
37 // Emit all buffered events and resume underlaying source
58 buffered events are emitted on the `delayedStream`, and the event buffer is
64 Error events on `source` are buffered / proxied just like any other events.
72 the amount of data being buffered. In order to protect you from bad `source`
113 The amount of data buffered so far.
136 Emits and clears all events that have been buffered up so far. This does not
/third_party/boost/libs/geometry/test/robustness/overlay/buffer/
Dmulti_point_growth.cpp68 std::vector<GeometryOut> buffered; in test_growth() local
70 bg::buffer(geometry, buffered, in test_growth()
76 BOOST_FOREACH(GeometryOut const& polygon, buffered) in test_growth()
85 BOOST_FOREACH(GeometryOut const& polygon, buffered) in test_growth()
/third_party/skia/third_party/externals/opengl-registry/xml/
Dwgltypes.txt54 PFD_DOUBLEBUFFER The buffer is double-buffered. This flag and PFD_SUPPORT_GDI are mutually e…
56 …can swap individual layer planes with pixel formats that include double-buffered overlay or underl…
58 PFD_DOUBLEBUFFER_DONTCARE The requested pixel format can be either single- or double-buffered.
60 PFD_SWAP_COPY Specifies the content of the back buffer in the double-buffered main color plane fo…
61 PFD_SWAP_EXCHANGE Specifies the content of the back buffer in the double-buffered main color …
92 … The layer plane is double-buffered. A layer plane can be double-buffered even when the main p…
94 LPD_SWAP_EXCHANGE In a double-buffered layer plane, swapping the color buffer exchanges the f…
95 LPD_SWAP_COPY In a double-buffered layer plane, swapping the color buffer copies the back buffer …
/third_party/openGLES/xml/
Dwgltypes.txt54 PFD_DOUBLEBUFFER The buffer is double-buffered. This flag and PFD_SUPPORT_GDI are mutually e…
56 …can swap individual layer planes with pixel formats that include double-buffered overlay or underl…
58 PFD_DOUBLEBUFFER_DONTCARE The requested pixel format can be either single- or double-buffered.
60 PFD_SWAP_COPY Specifies the content of the back buffer in the double-buffered main color plane fo…
61 PFD_SWAP_EXCHANGE Specifies the content of the back buffer in the double-buffered main color …
92 … The layer plane is double-buffered. A layer plane can be double-buffered even when the main p…
94 LPD_SWAP_EXCHANGE In a double-buffered layer plane, swapping the color buffer exchanges the f…
95 LPD_SWAP_COPY In a double-buffered layer plane, swapping the color buffer copies the back buffer …
/third_party/libwebsockets/lib/roles/raw-proxy/
Dops-raw-proxy.c32 int n, buffered; in rops_handle_POLLIN_raw_proxy() local
62 buffered = lws_buflist_aware_read(pt, wsi, &ebuf, 1, __func__); in rops_handle_POLLIN_raw_proxy()
63 if (buffered < 0) in rops_handle_POLLIN_raw_proxy()
98 buffered, __func__)) in rops_handle_POLLIN_raw_proxy()
/third_party/grpc/doc/
Dstatus_ordering.md6 2. OK Status is only delivered after all buffered messages are read.
13 but continues reading, the library Should deliver buffered messages before
15 where errors cause all buffered messages to be dropped, but this is not a
/third_party/node/deps/npm/node_modules/https-proxy-agent/
Dindex.js119 var buffered = Buffer.concat(buffers, buffersLength);
120 var str = buffered.toString('ascii');
138 buffers = buffered = null;
176 buffers = buffered;
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/
DEGL_KHR_mutable_render_buffer.txt74 This allows for implementations to switch between back-buffered and single-
75 buffered rendering without requiring re-creation of the surface. It is not
122 of whether rendering goes to the front or back buffer for back buffered
132 If surface is a single-buffered window, pixmap, or pbuffer surface for which
135 attribute change. If surface is a single-buffered window, pixmap, or pbuffer
145 When switching to single-buffered from back-buffered rendering and the
154 When switching to back-buffered from single-buffered rendering, any draw
213 7) What state are back buffers after switching between single and back buffered
222 same value at creation of the surface. When a surface is single-buffered,
232 single-buffered surface?
[all …]
/third_party/EGL/extensions/KHR/
DEGL_KHR_mutable_render_buffer.txt74 This allows for implementations to switch between back-buffered and single-
75 buffered rendering without requiring re-creation of the surface. It is not
122 of whether rendering goes to the front or back buffer for back buffered
132 If surface is a single-buffered window, pixmap, or pbuffer surface for which
135 attribute change. If surface is a single-buffered window, pixmap, or pbuffer
145 When switching to single-buffered from back-buffered rendering and the
154 When switching to back-buffered from single-buffered rendering, any draw
213 7) What state are back buffers after switching between single and back buffered
222 same value at creation of the surface. When a surface is single-buffered,
232 single-buffered surface?
[all …]
/third_party/flutter/skia/tests/
DStreamBufferTest.cpp37 size_t buffered = length / 2; in test_buffer_from_beginning() local
38 REPORTER_ASSERT(r, buffer.buffer(buffered)); in test_buffer_from_beginning()
39 REPORTER_ASSERT(r, !memcmp(buffer.get(), gText, buffered)); in test_buffer_from_beginning()
42 REPORTER_ASSERT(r, buffer.buffer(buffered / 2)); in test_buffer_from_beginning()
/third_party/skia/tests/
DStreamBufferTest.cpp36 size_t buffered = length / 2; in test_buffer_from_beginning() local
37 REPORTER_ASSERT(r, buffer.buffer(buffered)); in test_buffer_from_beginning()
38 REPORTER_ASSERT(r, !memcmp(buffer.get(), gText, buffered)); in test_buffer_from_beginning()
41 REPORTER_ASSERT(r, buffer.buffer(buffered / 2)); in test_buffer_from_beginning()

12345678910>>...15