HomeSort by relevance Sort by last modified time
    Searched refs:out_buffer (Results 26 - 50 of 106) sorted by null

12 3 4 5

  /prebuilts/gdb/linux-x86/lib/python2.7/
asyncore.py 533 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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 533 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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 533 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/tensorflow/tensorflow/core/kernels/
deep_conv2d.cc 168 // 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, T* filter_buf
    [all...]
  /external/valgrind/exp-bbv/tests/arm-linux/
ll.S 131 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/
disassembler.cc 84 v8::internal::EmbeddedVector<char, kOutBufferSize> out_buffer; local
85 StringBuilder out(out_buffer.start(), out_buffer.length());
  /system/bt/embdrv/g722/
g722_encode.cc 423 s->out_buffer |= (code << s->out_bits);
427 g722_data[g722_bytes++] = (uint8_t) (s->out_buffer & 0xFF);
429 s->out_buffer >>= 8;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.h 68 typedef bool (*SymbolizeCallback)(const void *pc, char *out_buffer,
  /external/tensorflow/tensorflow/core/platform/cloud/
gcs_dns_cache_test.cc 48 void SetResultBuffer(std::vector<char>* out_buffer) override {}
curl_http_request.cc 283 void CurlHttpRequest::SetResultBuffer(std::vector<char>* out_buffer) {
285 CHECK(out_buffer != nullptr);
287 out_buffer->clear();
288 response_buffer_ = out_buffer;
  /hardware/qcom/display/msm8909/gralloc/
gr_buf_mgr.h 83 buffer_handle_t *out_buffer);
gr_device_impl.cpp 177 char *out_buffer) {
183 if (out_buffer == nullptr) {
193 auto copied = os.str().copy(out_buffer, std::min(os.str().size(), max_dump_size), 0);
gr_device_impl.h 64 char *out_buffer);
  /hardware/qcom/display/msm8909w_3100/libgralloc1/
gr_buf_mgr.h 83 buffer_handle_t *out_buffer);
gr_device_impl.h 64 char *out_buffer);
  /hardware/qcom/display/msm8996/libgralloc1/
gr_buf_mgr.h 83 buffer_handle_t *out_buffer);
  /hardware/qcom/display/msm8998/libgralloc1/
gr_buf_mgr.h 83 buffer_handle_t *out_buffer);
gr_device_impl.cpp 183 char *out_buffer) {
189 if (out_buffer == nullptr) {
199 auto copied = os.str().copy(out_buffer, std::min(os.str().size(), max_dump_size), 0);
  /external/valgrind/exp-bbv/tests/amd64-linux/
ll.S 58 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/
ll.S 52 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
  /hardware/intel/img/psb_headers/DRM/cc54/inc/
wv_mod_drm_api.h 134 uint8_t *out_buffer);
141 uint8_t *out_buffer);
  /external/libbrillo/brillo/streams/
file_stream_unittest.cc 84 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);
    [all...]
  /external/avb/test/
fake_avb_ops.cc 315 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);
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/
g722_encode.c 417 s->out_buffer |= (code << s->out_bits);
421 g722_data[g722_bytes++] = (uint8_t) (s->out_buffer & 0xFF);
423 s->out_buffer >>= 8;
  /frameworks/native/libs/vr/libdvr/include/dvr/
dvr_api.h 188 DvrWriteBuffer* out_buffer,
208 DvrReadBuffer* out_buffer,
235 DvrBuffer** out_buffer);

Completed in 498 milliseconds

12 3 4 5