/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
SavableSerializer.java | 82 public int read() throws IOException { method in class:SavableSerializer.BufferInputStream 90 public int read(byte[] b){ method in class:SavableSerializer.BufferInputStream 91 return read(b, 0, b.length); 95 public int read(byte[] b, int off, int len){ method in class:SavableSerializer.BufferInputStream
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/ |
ImageTileLoader.java | 94 im = ImageIO.read(in); 150 public void read(JmeImporter im) throws IOException { method in class:ImageTileLoader
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/ |
DistanceLodCalculator.java | 122 public void read(JmeImporter im) throws IOException { method in class:DistanceLodCalculator
|
PerspectiveLodCalculator.java | 144 public void read(JmeImporter im) throws IOException { method in class:PerspectiveLodCalculator
|
/external/libvorbis/lib/ |
codebook.c | 6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * 284 int read=book->dec_maxlength; local 302 lok = oggpack_look(b, read); 304 while(lok<0 && read>1) 305 lok = oggpack_look(b, --read); 319 if(book->dec_codelengths[lo]<=read){ 325 oggpack_adv(b, read); 331 matches using different criteria; we simply read and map. There are
|
/external/libvpx/libvpx/nestegg/include/nestegg/ |
nestegg.h | 87 /** User supplied read callback. 88 @param buffer Buffer to read data into. 91 @retval 1 Read succeeded. 94 int (* read)(void * buffer, size_t length, void * userdata); member in struct:__anon21148 138 read forward in the stream processing all elements until the first 242 /** Read a packet of media data. A packet consists of one or more chunks of 248 @retval 1 Additional packets may be read in subsequent calls.
|
/external/marisa-trie/lib/marisa/ |
bitvector.cc | 284 read(reader); 289 read(reader); 292 void BitVector::read(int fd) { function in class:marisa::BitVector 294 read(reader); 297 void BitVector::read(std::istream &stream) { function in class:marisa::BitVector 299 read(reader); 302 void BitVector::read(Reader &reader) { function in class:marisa::BitVector 304 temp.blocks_.read(reader); 305 reader.read(&temp.size_); 306 temp.ranks_.read(reader) [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
bitvector.cc | 284 read(reader); 289 read(reader); 292 void BitVector::read(int fd) { function in class:marisa_alpha::BitVector 294 read(reader); 297 void BitVector::read(std::istream &stream) { function in class:marisa_alpha::BitVector 299 read(reader); 302 void BitVector::read(Reader &reader) { function in class:marisa_alpha::BitVector 304 temp.blocks_.read(reader); 305 reader.read(&temp.size_); 306 temp.ranks_.read(reader) [all...] |
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
compat.hpp | 220 read(char *p, size_t n) { function in class:clover::compat::istream
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
IsoTypeReader.java | 83 int read; local 84 while ((read = byteBuffer.get()) != 0) { 85 out.write(read);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/ |
BitstreamReader.java | 21 package com.googlecode.mp4parser.h264.read; 44 curByte = is.read(); 45 nextByte = is.read(); 90 nextByte = is.read();
|
/external/objenesis/main/src/org/objenesis/instantiator/basic/ |
ObjectInputStreamInstantiator.java | 119 public int read() throws IOException { method in class:ObjectInputStreamInstantiator.MockStream 132 public int read(byte[] b, int off, int len) throws IOException { method in class:ObjectInputStreamInstantiator.MockStream
|
/external/proguard/src/proguard/io/ |
DataEntryCopier.java | 51 public void read(DataEntry dataEntry) throws IOException method in class:DataEntryCopier 83 * Copies all data that it can read from the given input stream to the 92 int count = inputStream.read(buffer);
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessageLite.java | 237 public int read() throws IOException { method in class:AbstractMessageLite.Builder.LimitedInputStream 241 final int result = super.read(); 249 public int read(final byte[] b, final int off, int len) method in class:AbstractMessageLite.Builder.LimitedInputStream 255 final int result = super.read(b, off, len); 276 final int firstByte = input.read();
|
/external/qemu/distrib/sdl-1.2.15/include/ |
SDL_rwops.h | 24 * This file provides a general interface for SDL to read and write 40 /** This is the read/write operation structure -- very basic */ 49 /** Read up to 'maxnum' objects each of size 'size' from the data 51 * Returns the number of objects read, or -1 if the read failed. 53 int (SDLCALL *read)(struct SDL_RWops *context, void *ptr, int size, int maxnum); member in struct:SDL_RWops 116 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */ 120 /** @name Macros to easily read and write from an SDL_RWops structure */ 124 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n) 129 /** @name Read an item of the specified endianness and return in native format * [all...] |
/external/skia/include/core/ |
SkReader32.h | 96 void read(void* dst, size_t size) { function in class:SkReader32 126 * Read the length of a string (written by SkWriter32::writeString) into 133 * Read the string (written by SkWriter32::writeString) and return it in
|
/external/skia/src/core/ |
SkBuffer.h | 18 The RBuffer is given the buffer to read from, with either a specified size 20 to attempt to read a value from an empty RBuffer (data == null). 44 /** Return the number of bytes that have been read from the beginning 52 /** Return true if the buffer has read to the end of the data pointer. 58 /** Read the specified number of bytes from the data pointer. If buffer is not 61 virtual bool read(void* buffer, size_t size) { function in class:SkRBuffer 71 bool readPtr(void** ptr) { return read(ptr, sizeof(void*)); } 72 bool readScalar(SkScalar* x) { return read(x, 4); } 73 bool readU32(uint32_t* x) { return read(x, 4); } 74 bool readS32(int32_t* x) { return read(x, 4); [all...] |
SkFontStream.cpp | 39 static bool read(SkStream* stream, void* buffer, size_t amount) { function 40 return stream->read(buffer, amount) == amount; 60 if (!read(stream, header, sizeof(SkSharedTTHeader))) { 75 if (ttcIndex > 0) { // need to read more of the shared header 79 if (!read(stream, header, amount)) { 89 if (!read(stream, header, sizeof(SkSFNTHeader))) { 129 return read(stream, fDir, size); 142 if (!read(stream, &shared, sizeof(shared))) { 202 if (!read(stream, data, length)) {
|
/external/skia/src/utils/win/ |
SkDWriteFontFileStream.cpp | 33 size_t SkDWriteFontFileStream::read(void* buffer, size_t size) { function in class:SkDWriteFontFileStream 59 //The read may have failed because we asked for too much data. 66 size_t read = fileSize - fPos; local 67 hr = fFontFileStream->ReadFileFragment(&start, fPos, read, &fragmentLock); 69 memcpy(buffer, start, read); 72 return read; 209 if (fStream->read(streamData.get(), static_cast<size_t>(fragmentSize)) != fragmentSize) {
|
/external/smack/src/org/jivesoftware/smack/proxy/ |
Socks4ProxySocketFactory.java | 171 int i=in.read(buf, s, len-s); 197 in.read(temp, 0, 2);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
ByteArrayInput.java | 40 /** >= 0; current read cursor */ 245 public void read(byte[] bytes, int offset, int length) { method in class:ByteArrayInput 257 public void read(byte[] bytes) { method in class:ByteArrayInput 308 * Throws the excpetion for when an attempt is made to read past the 312 throw new IndexOutOfBoundsException("attempt to read past the end");
|
/external/tcpdump/ |
tcpdump-stdinc.h | 65 #define read _read macro
|
/external/zlib/src/contrib/iostream2/ |
zstream.h | 60 * open() can be used to read a file which is not in gzip format; 61 * in this case read() will directly read from the file without 85 /* Binary read the given number of bytes from the compressed file. 87 int read(void* buf, size_t len) { function in class:izstream 108 * Binary read the given (array of) object(s) from the compressed file. 109 * If the input file was not in gzip format, read() copies the objects number 111 * returns the number of uncompressed bytes actually read 115 inline int read(izstream& zs, T* x, Items items) { function 136 * Read length of string + the string with the '>' operator [all...] |
/frameworks/av/libvideoeditor/lvpp/ |
VideoEditorSRC.cpp | 112 status_t VideoEditorSRC::read( function in class:android::VideoEditorSRC 114 ALOGV("read %p(%p)", this, mSource.get()); 126 ALOGV("read Seek %lld", seekTimeUs); 154 return read(buffer_out, NULL); 177 // Resampling not required. Read and pass-through. 179 status_t err = mSource->read(&aBuffer, options); 181 ALOGV("read returns err = %d", err); 186 return read(buffer_out, NULL); 208 // If we don't have any data left, read a new buffer. 221 status_t err = mSource->read(&mBuffer, &options) [all...] |
/frameworks/av/media/libstagefright/ |
CameraSourceTimeLapse.cpp | 114 // not skip the next frame as we want read() to get a get a frame 201 status_t CameraSourceTimeLapse::read( function in class:android::CameraSourceTimeLapse 203 ALOGV("read"); 205 mLastReadStatus = CameraSource::read(buffer, options); 207 // mQuickStop may have turned to true while read was blocked. 261 ALOGV("dataCallbackTimestamp timelapse: forced read");
|