Searched defs:writeBytes (Results 1 - 25 of 50) sorted by relevance

12

/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecordBuilder.h45 void writeBytes(StringRef Value) { Stream << Value; } function in class:llvm::codeview::TypeRecordBuilder
H A DStreamRef.h57 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) const { function in class:llvm::codeview::StreamRef
60 return Stream->writeBytes(ViewOffset + Offset, Data);
/external/llvm/lib/DebugInfo/CodeView/
H A DByteStream.cpp18 static Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Src, function
24 static Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Src, function
56 Error ByteStream<Writable>::writeBytes(uint32_t Offset, function in class:ByteStream
58 return ::writeBytes(Offset, Buffer, Data);
H A DStreamWriter.cpp21 Error StreamWriter::writeBytes(ArrayRef<uint8_t> Buffer) { function in class:StreamWriter
22 if (auto EC = Stream.writeBytes(Offset, Buffer))
47 if (auto EC = Stream.writeBytes(Offset, Bytes))
73 if (auto EC = writeBytes(Chunk))
/external/swiftshader/third_party/subzero/src/
H A DIceELFStreamer.h37 virtual void writeBytes(llvm::StringRef Bytes) { function in class:Ice::ELFStreamer
80 writeBytes(llvm::StringRef(Zeros, 16));
82 writeBytes(llvm::StringRef(Zeros, N % 16));
97 void writeBytes(llvm::StringRef Bytes) override { Out << Bytes; }
/external/guava/guava/src/com/google/common/io/
H A DByteArrayDataOutput.java48 @Deprecated @Override void writeBytes(String s); method in interface:ByteArrayDataOutput
H A DLittleEndianDataOutputStream.java69 * @deprecated The semantics of {@code writeBytes(String s)} are considered
74 @Override public void writeBytes(String s) throws IOException { method in class:LittleEndianDataOutputStream
75 ((DataOutputStream) out).writeBytes(s);
H A DByteStreams.java372 @SuppressWarnings("deprecation") // for writeBytes
424 @Override public void writeBytes(String s) { method in class:ByteStreams.ByteArrayDataOutputStream
426 output.writeBytes(s);
/external/proguard/src/proguard/classfile/io/
H A DRuntimeDataOutput.java109 public void writeBytes(String s) method in class:RuntimeDataOutput
113 dataOutput.writeBytes(s);
/external/llvm/include/llvm/MC/
H A DMCObjectWriter.h183 void writeBytes(const SmallVectorImpl<char> &ByteVec, function in class:llvm::MCObjectWriter
185 writeBytes(StringRef(ByteVec.data(), ByteVec.size()), ZeroFillSize);
188 void writeBytes(StringRef Str, unsigned ZeroFillSize = 0) { function in class:llvm::MCObjectWriter
/external/okhttp/okio/okio/src/test/java/okio/
H A DBufferedSinkTest.java92 @Test public void writeBytes() throws Exception { method in class:BufferedSinkTest
/external/parameter-framework/upstream/parameter/
H A DParameterBlackboard.cpp98 void CParameterBlackboard::writeBytes(const std::vector<uint8_t> &bytes, size_t offset) function in class:CParameterBlackboard
/external/aac/libFDK/src/
H A DFDK_bitbuffer.cpp488 void FDK_Fetch(HANDLE_FDK_BITBUF hBitBuf, UCHAR *outBuf, UINT *writeBytes) { argument
495 *writeBytes); //(bToWrite < *writeBytes) ? bToWrite : *writeBytes ;
517 *writeBytes = bTotal;
/external/jmdns/src/javax/jmdns/impl/
H A DDNSOutgoing.java49 void writeBytes(String str, int off, int len) { method in class:DNSOutgoing.MessageOutputStream
55 void writeBytes(byte data[]) { method in class:DNSOutgoing.MessageOutputStream
57 writeBytes(data, 0, data.length);
61 void writeBytes(byte data[], int off, int len) { method in class:DNSOutgoing.MessageOutputStream
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DMappedBlockStream.cpp225 Error MappedBlockStream::writeBytes(uint32_t Offset, function in class:MappedBlockStream
/external/sonic/
H A Dwave.c29 static void writeBytes( function
52 writeBytes(file, string, strlen(string));
67 writeBytes(file, bytes, 4);
82 writeBytes(file, bytes, 2);
362 writeBytes(file, bytes, bytePos);
370 writeBytes(file, bytes, bytePos);
/external/aac/libFDK/include/
H A DFDK_bitstream.h679 * \param writeBytes Number of bytes write to output buffer.
683 UCHAR *outputBuffer, UINT *writeBytes) {
685 FDK_Fetch(&hBitStream->hBitBuf, outputBuffer, writeBytes);
682 FDKfetchBuffer(HANDLE_FDK_BITSTREAM hBitStream, UCHAR *outputBuffer, UINT *writeBytes) argument
/external/oj-libjdwp/src/share/back/
H A DoutStream.c99 writeBytes(PacketOutputStream *stream, void *source, int size) function
141 return writeBytes(stream, &byte, sizeof(byte));
147 return writeBytes(stream, &val, sizeof(val));
154 return writeBytes(stream, &val, sizeof(val));
161 return writeBytes(stream, &val, sizeof(val));
168 return writeBytes(stream, &val, sizeof(val));
175 return writeBytes(stream, &val, sizeof(val));
182 return writeBytes(stream, &val, sizeof(val));
189 return writeBytes(stream, &val, sizeof(val));
232 return writeBytes(strea
[all...]
/external/protobuf/js/binary/
H A Dencoder.js375 jspb.BinaryEncoder.prototype.writeBytes = function(bytes) {
H A Dwriter.js326 this.writeBytes(field, /** @type {?Uint8Array} */(value));
709 jspb.BinaryWriter.prototype.writeBytes = function(field, value) {
1114 this.writeBytes(field, value[i]);
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp177 void writeBytes(const char *Bytes, int Size) { function in class:__anon14668::GCOVRecord
182 writeBytes(reinterpret_cast<char*>(&i), 4);
197 writeBytes(s.data(), s.size());
202 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
273 writeBytes(LinesTag, 4);
372 writeBytes(FunctionTag, 4);
387 writeBytes(BlockTag, 4);
401 writeBytes(EdgeTag, 4);
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
H A DCodedOutputStreamMicro.java198 public void writeBytes(final int fieldNumber, final ByteStringMicro value) method in class:CodedOutputStreamMicro
279 // writeBytes(WireFormatMicro.MESSAGE_SET_MESSAGE, value);
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DCodedOutputByteBufferNano.java171 public void writeBytes(final int fieldNumber, final byte[] value) method in class:CodedOutputByteBufferNano
178 public void writeBytes(final int fieldNumber, final byte[] value, method in class:CodedOutputByteBufferNano
252 // writeBytes(WireFormatMicro.MESSAGE_SET_MESSAGE, value);
1207 writeBytes(number, bytesValue);
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp122 void writeBytes(const char *Bytes, int Size) { function in class:__anon23008::GCOVRecord
127 writeBytes(reinterpret_cast<char*>(&i), 4);
142 writeBytes(s.data(), s.size());
147 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
215 writeBytes(LinesTag, 4);
257 writeBytes(FunctionTag, 4);
288 writeBytes(BlockTag, 4);
300 writeBytes(EdgeTag, 4);
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DCodedOutputStream.java266 public abstract void writeBytes(int fieldNumber, ByteString value) throws IOException; method in class:CodedOutputStream
1167 public final void writeBytes(final int fieldNumber, final ByteString value) throws IOException { method in class:CodedOutputStream.ArrayEncoder
1238 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value);
1537 public void writeBytes(final int fieldNumber, final ByteString value) throws IOException { method in class:CodedOutputStream.NioEncoder
1584 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value);
2017 public void writeBytes(final int fieldNumber, final ByteString value) throws IOException { method in class:CodedOutputStream.ByteOutputEncoder
2087 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value);
2320 public void writeBytes(final int fieldNumber, final ByteString value) throws IOException { method in class:CodedOutputStream.OutputStreamEncoder
2390 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value);

Completed in 711 milliseconds

12