Home
last modified time | relevance | path

Searched refs:current_bytes_ (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_response_cache.cc113 current_bytes_ += req->response_buf.Length(); in LookupOrCompute()
133 if (current_bytes_ < max_bytes_) { in MaybeCleanup()
137 VLOG(1) << "Cleanup: " << current_bytes_ << " -> " << max_bytes_; in MaybeCleanup()
176 VLOG(1) << "Cleaned cache. Bytes used: " << current_bytes_ << " -> " in MaybeCleanup()
179 current_bytes_ = bytes_used; in MaybeCleanup()
Dgrpc_response_cache.h80 int64 current_bytes_ GUARDED_BY(mu_) = 0;
/external/tensorflow/tensorflow/core/kernels/
Dstage_op.cc38 : capacity_(capacity), memory_limit_(memory_limit), current_bytes_(0) {} in Buffer()
72 current_bytes_ += tuple_bytes; in Put()
100 current_bytes_ -= GetTupleBytes(*tuple); in Get()
130 current_bytes_ = 0; in Clear()
160 return bytes + current_bytes_ > memory_limit_; in WouldExceedMemoryLimit()
172 std::size_t current_bytes_; member in tensorflow::__anonca4d15760111::Buffer
Dmap_stage_op.cc98 std::size_t current_bytes_ GUARDED_BY(mu_);
138 return has_memory_limit() && bytes + current_bytes_ > memory_limit_; in would_exceed_memory_limit()
284 current_bytes_ += tuple_bytes; in put_incomplete()
304 current_bytes_ += tuple_bytes; in put_incomplete()
343 current_bytes_(0) {} in StagingMap()
369 current_bytes_ += tuple_bytes; in put()
391 current_bytes_ -= get_tuple_bytes(*tuple); in get()
420 current_bytes_ -= get_tuple_bytes(*tuple); in pop()
455 current_bytes_ -= get_tuple_bytes(*tuple); in popitem()
466 current_bytes_ = 0; in clear()
/external/webrtc/talk/app/webrtc/java/jni/
Dandroidmediadecoder_jni.cc131 int current_bytes_; // Encoded bytes in the current statistics interval. member in webrtc_jni::MediaCodecVideoDecoder
369 current_bytes_ = 0; in InitDecodeOnCodecThread()
569 current_bytes_ += inputImage._length; in DecodeOnCodecThread()
754 (current_bytes_ * 8 / statistic_time_ms) << " kbps, fps: " << in DeliverPendingOutputs()
760 current_bytes_ = 0; in DeliverPendingOutputs()
Dandroidmediaencoder_jni.cc208 int current_bytes_; // Encoded bytes in the current statistics interval. member in webrtc_jni::MediaCodecVideoEncoder
485 current_bytes_ = 0; in InitEncodeOnCodecThread()
888 current_bytes_ += payload_size; in DeliverPendingOutputs()
894 (current_bytes_ * 8 / statistic_time_ms) << in DeliverPendingOutputs()
902 current_bytes_ = 0; in DeliverPendingOutputs()