Searched refs:spaceLeft (Results 1 – 6 of 6) sorted by relevance
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | BinaryWriter.java | 979 int spaceLeft() { in spaceLeft() method in BinaryWriter.SafeHeapWriter 1383 if (spaceLeft() < length) { in write() 1393 if (spaceLeft() < length) { in writeLazy() 1412 if (spaceLeft() < length) { in write() 1423 if (spaceLeft() < length) { in writeLazy() 1440 if (spaceLeft() < size) { in requireSpace() 1516 int spaceLeft() { in spaceLeft() method in BinaryWriter.UnsafeHeapWriter 1934 if (spaceLeft() < length) { in writeLazy() 1962 if (spaceLeft() < length) { in writeLazy() 1979 if (spaceLeft() < size) { in requireSpace() [all …]
|
D | CodedOutputStream.java | 929 public abstract int spaceLeft(); in spaceLeft() method in CodedOutputStream 938 if (spaceLeft() != 0) { in checkNoSpaceLeft() 1339 && spaceLeft() >= MAX_VARINT32_SIZE) { in writeUInt32NoTag() 1398 if (HAS_UNSAFE_ARRAY_OPERATIONS && spaceLeft() >= MAX_VARINT_SIZE) { in writeUInt64NoTag() 1487 int newPosition = Utf8.encode(value, buffer, position, spaceLeft()); in writeStringNoTag() 1497 position = Utf8.encode(value, buffer, position, spaceLeft()); in writeStringNoTag() 1516 public final int spaceLeft() { in spaceLeft() method in CodedOutputStream.ArrayEncoder 1854 public int spaceLeft() { in spaceLeft() method in CodedOutputStream.SafeDirectNioEncoder 2215 public int spaceLeft() { in spaceLeft() method in CodedOutputStream.UnsafeDirectNioEncoder 2253 public final int spaceLeft() { in spaceLeft() method in CodedOutputStream.AbstractBufferedEncoder
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/ |
D | BitReader.java | 70 int spaceLeft = CAPACITY - bytesInBuffer; in doReadMoreInput() local 71 int len = Utils.readInput(s.input, s.byteBuffer, bytesInBuffer, spaceLeft); in doReadMoreInput()
|
/third_party/ffmpeg/libpostproc/ |
D | postprocess.c | 716 int spaceLeft; in pp_get_mode_by_name_and_quality() local 721 spaceLeft= p - temp + plen; in pp_get_mode_by_name_and_quality() 722 if(spaceLeft + newlen >= GET_MODE_BUFFER_SIZE - 1){ in pp_get_mode_by_name_and_quality()
|
/third_party/skia/third_party/externals/brotli/js/ |
D | decode.js | 1538 var /** number */ spaceLeft = 4096 - bytesInBuffer; 1539 var /** number */ len = readInput(s.input, s.byteBuffer, bytesInBuffer, spaceLeft);
|
/third_party/sqlite/src/ |
D | sqlite3.c | 75235 int spaceLeft; 75291 spaceLeft = n; 75317 assert( spaceLeft == info.nLocal ); 75324 if( n>spaceLeft ) n = spaceLeft; 75348 spaceLeft -= n; 75349 if( spaceLeft==0 ){ 75401 spaceLeft = pBt->usableSize - 4;
|