HomeSort by relevance Sort by last modified time
    Searched refs:Write (Results 26 - 50 of 2248) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_output.cpp 34 bool FileWrapperOutput::Write(uint8_t byte) {
38 bool FileWrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) {
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Drivers/
PL310L2Cache.h 65 #define PL310_LATENCIES(Write,Read,Setup) (((Write) << 8) | ((Read) << 4) | (Setup))
66 #define PL310_TAG_LATENCIES(Write,Read,Setup) PL310_LATENCIES(Write,Read,Setup)
67 #define PL310_DATA_LATENCIES(Write,Read,Setup) PL310_LATENCIES(Write,Read,Setup)
  /external/webrtc/webrtc/modules/video_processing/test/
writeYUV420file.m 12 % Write luminance
15 % Write U channel
18 % Write V channel
  /prebuilts/go/darwin-x86/test/fixedbugs/issue4590.dir/
pkg1.go 8 Write() error
18 func (c C) Write() error { return nil }
24 Write() error
  /prebuilts/go/linux-x86/test/fixedbugs/issue4590.dir/
pkg1.go 8 Write() error
18 func (c C) Write() error { return nil }
24 Write() error
  /system/tools/aidl/
ast_java.h 54 // Write the modifiers that are set in both mod and mask
61 virtual void Write(CodeWriter* to) const = 0;
66 virtual void Write(CodeWriter* to) const = 0;
74 void Write(CodeWriter* to) const override;
83 void Write(CodeWriter* to) const override;
97 void Write(CodeWriter* to) const;
109 void Write(CodeWriter* to) const;
122 void Write(CodeWriter* to) const override;
127 virtual void Write(CodeWriter* to) const = 0;
135 void Write(CodeWriter* to) const override
    [all...]
code_writer.h 32 // Write a formatted string to this writer in the usual printf sense.
34 virtual bool Write(const char* format, ...) = 0;
  /external/libchrome/base/json/
json_writer_unittest.cc 18 EXPECT_TRUE(JSONWriter::Write(*Value::CreateNullValue(), &output_js));
22 EXPECT_TRUE(JSONWriter::Write(DictionaryValue(), &output_js));
26 EXPECT_TRUE(JSONWriter::Write(ListValue(), &output_js));
30 EXPECT_TRUE(JSONWriter::Write(Value(42), &output_js));
34 EXPECT_TRUE(JSONWriter::Write(Value(true), &output_js));
38 EXPECT_TRUE(JSONWriter::Write(Value(1.0), &output_js));
42 EXPECT_TRUE(JSONWriter::Write(Value(0.2), &output_js));
46 EXPECT_TRUE(JSONWriter::Write(Value(-0.8), &output_js));
50 EXPECT_TRUE(JSONWriter::Write(Value("foo"), &output_js));
69 EXPECT_TRUE(JSONWriter::Write(root_dict, &output_js))
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
scariness_score_test.cc 43 enum ReadOrWrite { Read = 0, Write = 1 };
139 case 3: HeapBuferOverflow<short>(0, Write); break;
140 case 4: HeapBuferOverflow<int64_t>(2, Write); break;
141 case 5: HeapBuferOverflow<S32>(4, Write); break;
143 case 7: HeapUseAfterFree<int>(0, Write); break;
145 case 9: HeapUseAfterFree<S32>(0, Write); break;
146 case 10: StackBufferOverflow<char>(0, Write); break;
148 case 12: StackBufferOverflow<int>(4, Write); break;
150 case 14: StackUseAfterReturn<S32>(0, Write); break;
166 // CHECK3: SCARINESS: 33 (2-byte-write-heap-buffer-overflow
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/
JsonWriter.h 10 // Helper to write information for the points-to graph.
22 Write(key);
39 void Write(const size_t val) {
43 void Write(const std::string& val) {
47 void Write(const std::string& key, const size_t val) {
51 void Write(const std::string& key, const std::string& val) {
  /frameworks/base/libs/hwui/renderstate/
Stencil.h 55 * Enables stencil write. When stencil write is enabled, the stencil
74 * Disables stencil test and write.
79 * Indicates whether either test or write is enabled.
88 bool isWriteEnabled() { return mState == StencilState::Write; }
93 enum class StencilState { Disabled, Test, Write };
  /art/libartbase/base/unix_file/
random_access_file.h 28 // This interface does not support a stream position (i.e. every read or write
49 // file's current extent, it is as if a write of the relevant number of zero
58 // a write of the relevant number of zero bytes also occurred. Returns the
60 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset) = 0;
random_access_file_utils.cc 32 if (dst->Write(&buf[0], n, offset) != n) {
  /external/ImageMagick/PerlMagick/demo/
pixel-fx.pl 44 # write pixel to destination
51 $dest->Write('win:');
52 $dest->Write('pixel-fx.gif');
single-pixels.pl 34 # write pixel to destination
46 $im->Write('win:');
47 $im->Write('single-pixels.gif');
  /external/bsdiff/
compressor_interface.h 22 // Compress and write |size| bytes of input data starting from |buf|.
23 virtual bool Write(const uint8_t* buf, size_t size) = 0;
  /external/google-breakpad/src/processor/
simple_serializer.h 53 // Write 'item' to memory location 'dest', and return to the "end" address of
55 static char *Write(const Type &item, char *dest) {
  /external/lzma/CPP/7zip/Archive/Common/
DummyOutStream.h 21 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
  /external/puffin/src/include/puffin/
stream.h 23 // Returns the current offset in the stream where next read or write will
27 // Sets the offset in the stream for the next read or write. On error
35 virtual bool Write(const void* buffer, size_t length) = 0;
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 27 void MemoryOutputStream::Write(ByteVector* buffer) {
31 void MemoryOutputStream::Write(ByteVector* buffer,
46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) {
57 void MemoryOutputStream::Write(byte_t b) {
  /external/sfntly/cpp/src/test/
endian_test.cc 57 fos.Write(202);
58 fos.Write(202);
59 fos.Write(202);
60 fos.Write(202);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7050.go 15 _, err := os.Stdout.Write(nil)
17 fmt.Printf("BUG: os.Stdout.Write(nil) = %v\n", err)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7050.go 15 _, err := os.Stdout.Write(nil)
17 fmt.Printf("BUG: os.Stdout.Write(nil) = %v\n", err)
  /system/core/fastboot/
transport.h 35 virtual ssize_t Write(const void* data, size_t len) = 0;
  /system/tpm/tpm_manager/server/
local_data_store_impl.h 35 bool Write(const LocalData& data) override;

Completed in 737 milliseconds

12 3 4 5 6 7 8 91011>>