Searched refs:out_buffer (Results 1 - 25 of 49) sorted by relevance

12

/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_render_translate.c30 struct pipe_resource **out_buffer,
39 *out_buffer = NULL;
41 &out_offset, out_buffer, &ptr);
53 *out_buffer = NULL;
55 &out_offset, out_buffer, &ptr);
68 *out_buffer = NULL;
70 &out_offset, out_buffer, &ptr);
28 r300_translate_index_buffer(struct r300_context *r300, struct pipe_index_buffer *ib, struct pipe_resource **out_buffer, unsigned *index_size, unsigned index_offset, unsigned *start, unsigned count) argument
/external/webrtc/webrtc/common_audio/
H A Dlapped_transform_unittest.cc107 float out_buffer[kChannels][kChunkLength]; local
113 out_chunk[0] = out_buffer[0];
114 out_chunk[1] = out_buffer[1];
115 out_chunk[2] = out_buffer[2];
144 float out_buffer[kChunkLength]; local
145 float* out_chunk = out_buffer;
174 float out_buffer[kChunkLength]; local
175 float* out_chunk = out_buffer;
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
H A Dg722_enc_dec.h92 unsigned int out_buffer; member in struct:__anon30716
130 unsigned int out_buffer; member in struct:__anon30718
H A Dg722_encode.c417 s->out_buffer |= (code << s->out_bits);
421 g722_data[g722_bytes++] = (uint8_t) (s->out_buffer & 0xFF);
423 s->out_buffer >>= 8;
/external/webrtc/webrtc/modules/audio_device/
H A Dfine_audio_buffer_unittest.cc121 rtc::scoped_ptr<int8_t[]> out_buffer; local
122 out_buffer.reset(new int8_t[fine_buffer.RequiredPlayoutBufferSizeBytes()]);
126 fine_buffer.GetPlayoutData(out_buffer.get());
127 EXPECT_TRUE(VerifyBuffer(out_buffer.get(), i, kFrameSizeBytes));
/external/pdfium/third_party/libtiff/
H A Dtif_ojpeg.c345 uint8 out_buffer[OJPEG_BUFFER]; member in struct:__anon18173
2228 sp->out_buffer[0]=255;
2229 sp->out_buffer[1]=JPEG_MARKER_SOI;
2231 *mem=(void*)sp->out_buffer;
2278 sp->out_buffer[0]=255;
2279 sp->out_buffer[1]=JPEG_MARKER_DRI;
2280 sp->out_buffer[2]=0;
2281 sp->out_buffer[3]=4;
2282 sp->out_buffer[4]=(sp->restart_interval>>8);
2283 sp->out_buffer[
[all...]
/external/tensorflow/tensorflow/core/platform/cloud/
H A Dhttp_request.h40 /// request.SetResultsBuffer(out_buffer);
98 /// Size of out_buffer after an access will be exactly the number of bytes
100 virtual void SetResultBuffer(std::vector<char>* out_buffer) = 0;
H A Dgcs_dns_cache_test.cc48 void SetResultBuffer(std::vector<char>* out_buffer) override {}
H A Dcurl_http_request.cc283 void CurlHttpRequest::SetResultBuffer(std::vector<char>* out_buffer) { argument
285 CHECK(out_buffer != nullptr);
287 out_buffer->clear();
288 response_buffer_ = out_buffer;
/external/avb/libavb/
H A Davb_ops.h260 * returned in |out_buffer| which must point to |buffer_size| bytes. On
262 * |out_buffer|. If AVB_IO_RESULT_ERROR_INSUFFICIENT_SPACE is returned,
266 * The |buffer_size| may be zero and the |out_buffer| may be NULL, but if
267 * |out_buffer| is NULL then |buffer_size| *must* be zero.
282 uint8_t* out_buffer,
/external/avb/test/
H A Dfake_avb_ops.h91 uint8_t* out_buffer,
236 uint8_t* out_buffer,
354 uint8_t* out_buffer,
357 name, buffer_size, out_buffer, out_num_bytes_read);
H A Dfake_avb_ops.cc315 uint8_t* out_buffer,
317 if (out_buffer == NULL && buffer_size > 0) {
327 memcpy(out_buffer, stored_values_[name].data(), stored_values_[name].size());
457 uint8_t* out_buffer,
462 name, buffer_size, out_buffer, out_num_bytes_read);
313 read_persistent_value(const char* name, size_t buffer_size, uint8_t* out_buffer, size_t* out_num_bytes_read) argument
454 my_ops_read_persistent_value(AvbOps* ops, const char* name, size_t buffer_size, uint8_t* out_buffer, size_t* out_num_bytes_read) argument
/external/python/cpython2/Lib/
H A Dasyncore.py533 self.out_buffer = ''
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
538 self.out_buffer = self.out_buffer[num_sent:]
544 return (not self.connected) or len(self.out_buffer)
549 self.out_buffer = self.out_buffer + data
/external/python/cpython3/Lib/
H A Dasyncore.py513 self.out_buffer = b''
517 num_sent = dispatcher.send(self, self.out_buffer[:65536])
518 self.out_buffer = self.out_buffer[num_sent:]
524 return (not self.connected) or len(self.out_buffer)
529 self.out_buffer = self.out_buffer + data
/external/tensorflow/tensorflow/core/kernels/
H A Ddeep_conv2d.cc168 // are stored in 'out_buffer'. The final result is copied from 'out_buffer' to
182 // out_buffer:
202 const T* transform_matrix, T* out_buffer, T* filter_out) {
217 MatrixMap C(out_buffer, tile_spatial_size, in_stride);
221 // Copy 'out_buffer' to 'filter_out' at required filter output stride.
244 ei::ploadu<Packet>(out_buffer + in_base + d * kPacketSize);
251 out_buffer[in_base + scalar_base + d];
279 // out_buffer:
288 const T* transform_matrix, T* out_buffer,
197 operator ()(const Conv2DArgs& args, const DeepConv2DTransform<T>* transform, const int64 od_start, const int64 num_filters, const int64 shard_rows, const int64 shard_cols, const T* filter_in, const int64 in_stride, const int64 out_stride, const T* transform_matrix, T* out_buffer, T* filter_out) argument
285 operator ()(const Conv2DArgs& args, const DeepConv2DTransform<T>* transform, const int64 od_start, const int64 od_limit, const T* filter_in, const T* transform_matrix, T* out_buffer, T* filter_buf, T* filter_out) argument
587 GemmState(const int64 rows, const int64 cols, const int64 depth, const int64 out_buffer_size, const T* lhs_block, const T* rhs_input, T* rhs_block, T* out_buffer) argument
744 operator ()(const Conv2DArgs& args, const DeepConv2DTransform<T>* transform, const int64 num_tiles, const int64 in_r, const int64 in_c, const int64 filter_shards_row, const int64 filter_shards_col, const T* out_transform_matrix, const T* out_buffer, T* out_transform_buffer, T* output) argument
[all...]
/external/valgrind/exp-bbv/tests/arm-linux/
H A Dll.S131 ldr r10,out_addr @ point r10 to out_buffer
165 ldr r10,out_addr @ point r10 to out_buffer
235 ldr r10,out_addr @ point r10 to out_buffer
328 ldr r2,out_addr @ point r2 to out_buffer
347 ldr r1,out_addr @ point r1 to out_buffer
427 out_addr: .word out_buffer
493 .lcomm out_buffer,16384
/external/v8/src/
H A Ddisassembler.cc84 v8::internal::EmbeddedVector<char, kOutBufferSize> out_buffer; local
85 StringBuilder out(out_buffer.start(), out_buffer.length());
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.h68 typedef bool (*SymbolizeCallback)(const void *pc, char *out_buffer,
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dll.S58 mov $out_buffer, %edi # point to out_buffer
118 pop %rbp # get out_buffer and keep in bp
119 mov %ebp,%ecx # move out_buffer to ecx
139 mov %ebp,%edi # point %edi to out_buffer
159 mov %ebp,%ecx # move out_buffer to ecx
346 mov %ebp,%ecx # point ecx to out_buffer
648 .lcomm out_buffer,16384
/external/valgrind/exp-bbv/tests/x86-linux/
H A Dll.S52 mov $out_buffer, %edi # point to out_buffer
110 pop %ebp # get out_buffer and keep in bp
111 mov %ebp,%ecx # move out_buffer to ecx
131 mov %ebp,%edi # point %edi to out_buffer
151 mov %ebp,%ecx # move out_buffer to ecx
344 mov %ebp,%ecx # point ecx to out_buffer
620 .lcomm out_buffer,16384
/external/libbrillo/brillo/streams/
H A Dfile_stream_unittest.cc84 std::vector<uint8_t> out_buffer(256);
85 EXPECT_TRUE(stream->ReadAllBlocking(out_buffer.data(), out_buffer.size(),
87 EXPECT_EQ(out_buffer.size(), stream->GetPosition());
88 EXPECT_EQ(out_buffer.size(), stream->GetSize());
91 EXPECT_EQ(in_buffer, out_buffer);
1025 std::vector<char> out_buffer(total_size);
1026 EXPECT_TRUE(base::ReadFromFD(fds[0], out_buffer.data(), out_buffer.size()));
1031 out_buffer
[all...]
H A Dfake_stream_unittest.cc35 // as a string in |out_buffer|. Returns true if the read was successful or
38 bool ReadString(size_t size_to_read, std::string* out_buffer, bool* eos) { argument
45 out_buffer->assign(data.data(), data.data() + size_read);
47 out_buffer->clear();
/external/v8/tools/
H A Dgrokdump.py2105 out_buffer = StringIO.StringIO()
2106 self.server.output_dumps(out_buffer)
2107 self.wfile.write(out_buffer.getvalue())
2110 out_buffer = StringIO.StringIO()
2111 self.formatter(query_components).output_summary(out_buffer)
2112 self.wfile.write(out_buffer.getvalue())
2115 out_buffer = StringIO.StringIO()
2116 self.formatter(query_components).output_info(out_buffer)
2117 self.wfile.write(out_buffer.getvalue())
2120 out_buffer
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_vbuf.c407 struct pipe_resource *out_buffer = NULL; local
459 &out_offset, &out_buffer,
461 if (!out_buffer)
492 &out_offset, &out_buffer,
494 if (!out_buffer)
519 mgr->real_vertex_buffer[out_vb].buffer = out_buffer;
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorReductionSycl.h137 auto out_buffer =dev.template get_sycl_buffer<typename Eigen::internal::remove_all<CoeffReturnType>::type>(self.dimensions().TotalSize(), output); local
176 syclGenericBufferReducer<CoeffReturnType,HostExpr>::run(out_buffer, temp_global_buffer,dev, GRange, outTileSize);

Completed in 1291 milliseconds

12