/ndk/sources/host-tools/make-3.81/ |
strcache.c | 35 int bytesfree; /* The amount of the buffer that is free. */ member in struct:strcache 49 new->bytesfree = bufsize; 74 if (sp->bytesfree > len && (!best || best->bytesfree > sp->bytesfree)) 81 assert (best->bytesfree > len); 88 best->bytesfree -= len + 1; 192 int bf = sp->bytesfree;
|
/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
analyze_counters_test.js | 47 var freeSeries = new CounterSeries('bytesfree', 1); 101 var freeSeries = new CounterSeries('bytesfree', 1); 172 assertEquals('ctr1: series(bytesfree)', table.rows[1].label); 174 assertEquals('ctr2: series(bytesfree)', table.rows[3].label); 189 assertEquals('b: series(bytesfree)', table.rows[2].label);
|
/external/chromium/net/tools/flip_server/ |
ring_buffer.cc | 34 int RingBuffer::BytesFree() const { 78 int bytes_available = BytesFree(); 194 if (size <= BytesFree()) { 238 CHECK_LE(amount_to_produce, BytesFree());
|
simple_buffer.cc | 65 inline int SimpleBuffer::BytesFree() const { 102 *size = SimpleBuffer::BytesFree(); 142 if (size > 0 && BytesFree() < size) { 152 CHECK_GE(BytesFree(), size);
|
simple_buffer.h | 39 virtual int BytesFree() const;
|
ring_buffer.h | 43 virtual int BytesFree() const; 71 // size is <= BytesFree(), it is guaranteed that the buffer size will not 77 // or equal to BytesFree(), it is guaranteed that the buffer size will not
|
buffer_interface.h | 28 virtual int BytesFree() const = 0;
|
/external/chromium_org/net/tools/flip_server/ |
ring_buffer.cc | 34 int RingBuffer::BytesFree() const { 78 int bytes_available = BytesFree(); 194 if (size <= BytesFree()) { 238 CHECK_LE(amount_to_produce, BytesFree());
|
simple_buffer.cc | 70 inline int SimpleBuffer::BytesFree() const { 107 *size = SimpleBuffer::BytesFree(); 147 if (size > 0 && BytesFree() < size) { 157 CHECK_GE(BytesFree(), size);
|
simple_buffer.h | 37 virtual int BytesFree() const OVERRIDE;
|
ring_buffer.h | 43 virtual int BytesFree() const OVERRIDE; 71 // size is <= BytesFree(), it is guaranteed that the buffer size will not 77 // or equal to BytesFree(), it is guaranteed that the buffer size will not
|
buffer_interface.h | 27 virtual int BytesFree() const = 0;
|
/external/chromium_org/net/quic/ |
quic_packet_creator.cc | 82 return BytesFree() > 110 const size_t free_bytes = BytesFree(); 132 DCHECK_LT(data.size(), BytesFree()); 167 size_t QuicPacketCreator::BytesFree() const { 277 frame, BytesFree(), queued_frames_.empty());
|
quic_packet_creator_test.cc | 284 creator_.BytesFree()); 306 EXPECT_EQ(0u, creator_.BytesFree()); 328 creator_.BytesFree());
|
quic_packet_creator.h | 102 size_t BytesFree() const;
|
quic_packet_generator.cc | 89 DCHECK(data.empty() || packet_creator_->BytesFree() == 0u);
|