Home
last modified time | relevance | path

Searched refs:Writable (Results 1 – 25 of 141) sorted by relevance

123456

/external/llvm/lib/DebugInfo/CodeView/
DByteStream.cpp35 template <bool Writable>
36 Error ByteStream<Writable>::readBytes(uint32_t Offset, uint32_t Size, in readBytes()
46 template <bool Writable>
47 Error ByteStream<Writable>::readLongestContiguousChunk( in readLongestContiguousChunk()
55 template <bool Writable>
56 Error ByteStream<Writable>::writeBytes(uint32_t Offset, in writeBytes()
61 template <bool Writable> uint32_t ByteStream<Writable>::getLength() const { in getLength()
65 template <bool Writable> Error ByteStream<Writable>::commit() const { in commit()
69 template <bool Writable> StringRef ByteStream<Writable>::str() const { in str()
/external/crosvm/devices/src/virtio/
Ddescriptor_utils.rs735 Writable, enumerator
761 if let DescriptorType::Writable = type_ { in create_descriptor_chain()
854 (Writable, 8), in writer_test_simple_chain()
855 (Writable, 16), in writer_test_simple_chain()
856 (Writable, 18), in writer_test_simple_chain()
857 (Writable, 64), in writer_test_simple_chain()
894 vec![(Writable, 8)], in reader_test_incompatible_chain()
974 vec![(Writable, 256), (Writable, 256)], in writer_failing_io()
1008 (Writable, 64), in reader_writer_shared_chain()
1009 (Writable, 1), in reader_writer_shared_chain()
[all …]
Dblock.rs970 (DescriptorType::Writable, 512), in read_last_sector()
972 (DescriptorType::Writable, 1), in read_last_sector()
1024 (DescriptorType::Writable, 512 * 2), in read_beyond_last_sector()
1026 (DescriptorType::Writable, 1), in read_beyond_last_sector()
1078 (DescriptorType::Writable, 20), in get_id()
1080 (DescriptorType::Writable, 1), in get_id()
Dblock_async.rs1103 (DescriptorType::Writable, 512), in read_last_sector()
1105 (DescriptorType::Writable, 1), in read_last_sector()
1170 (DescriptorType::Writable, 512 * 2), in read_beyond_last_sector()
1172 (DescriptorType::Writable, 1), in read_beyond_last_sector()
1240 (DescriptorType::Writable, 20), in get_id()
1242 (DescriptorType::Writable, 1), in get_id()
/external/llvm/include/llvm/DebugInfo/CodeView/
DByteStream.h25 template <bool Writable = false> class ByteStream : public StreamInterface {
26 typedef typename std::conditional<Writable, MutableArrayRef<uint8_t>,
/external/crosvm/fuzz/
Dfs_server_fuzzer.rs34 Writable,
/external/tensorflow/tensorflow/lite/toco/
Dtoco_port.cc89 tensorflow::Status Writable(const std::string& filename) { in Writable() function
181 tensorflow::Status Writable(const string& filename) { in Writable() function
Dtoco_port.h77 tensorflow::Status Writable(const std::string& filename);
Dtoco_convert.cc37 QCHECK(port::file::Writable(output_file.value()).ok()) in CheckOutputFilePermissions()
/external/libchrome/mojo/public/cpp/base/
Dshared_memory_unittest.cc25 TEST(SharedMemoryMojomTest, Writable) { in TEST() argument
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
DInstructionMethodItem.java92 private interface Writable { interface in InstructionMethodItem
100 Writable referenceWritable = null; in writeTo()
101 Writable referenceWritable2 = null; in writeTo()
/external/python/cpython3/Doc/library/
Dmmap.rst185 Writable :term:`bytes-like object` is now accepted.
266 Writable :term:`bytes-like object` is now accepted.
298 Writable :term:`bytes-like object` is now accepted.
Dossaudiodev.rst159 Writable :term:`bytes-like object` is now accepted.
173 Writable :term:`bytes-like object` is now accepted.
Dsocket.rst64 Writable :term:`bytes-like object` is now accepted.
966 Writable :term:`bytes-like object` is now accepted.
1008 Writable :term:`bytes-like object` is now accepted.
1735 Writable :term:`bytes-like object` is now accepted.
/external/virglrenderer/src/gallium/auxiliary/tgsi/
Dtgsi_build.c285 di.Writable = 0; in tgsi_default_declaration_image()
306 di.Writable = writable; in tgsi_build_declaration_image()
494 full_decl->Image.Writable, in tgsi_build_full_declaration()
Dtgsi_dump.c356 if (decl->Image.Writable) in iter_declaration()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_build.c296 di.Writable = 0; in tgsi_default_declaration_image()
317 di.Writable = writable; in tgsi_build_declaration_image()
506 full_decl->Image.Writable, in tgsi_build_full_declaration()
Dtgsi_dump.c387 if (decl->Image.Writable) in iter_declaration()
/external/mesa3d/src/gallium/include/pipe/
Dp_shader_tokens.h231 unsigned Writable : 1; member
/external/virglrenderer/src/gallium/include/pipe/
Dp_shader_tokens.h217 unsigned Writable : 1; member
/external/llvm-project/llvm/docs/CommandGuide/
Dllvm-nm.rst45 Writable data object.
/external/python/cpython3/Doc/reference/
Ddatamodel.rst508 | :attr:`__doc__` | The function's documentation | Writable |
513 | :attr:`~definition.\ | The function's name. | Writable |
516 | :attr:`~definition.\ | The function's | Writable |
521 | :attr:`__module__` | The name of the module the | Writable |
525 | :attr:`__defaults__` | A tuple containing default | Writable |
531 | :attr:`__code__` | The code object representing | Writable |
541 | :attr:`~object.__dict__`| The namespace supporting | Writable |
552 | :attr:`__annotations__` | A dict containing annotations | Writable |
559 | :attr:`__kwdefaults__` | A dict containing defaults | Writable |
563 Most of the attributes labelled "Writable" check the type of the assigned value.
/external/crosvm/
DREADME.md110 >**WARNING:** Writable disks are at risk of corruption by a malicious or
/external/python/cpython2/Doc/reference/
Ddatamodel.rst505 | :attr:`__doc__` | The function's documentation | Writable |
509 | :attr:`~definition.\ | The function's name | Writable |
513 | :attr:`__module__` | The name of the module the | Writable |
517 | :attr:`__defaults__` | A tuple containing default | Writable |
523 | :attr:`__code__` | The code object representing | Writable |
533 | :attr:`~object.\ | The namespace supporting | Writable |
542 Most of the attributes labelled "Writable" check the type of the assigned value.
/external/llvm-project/llvm/docs/
DExtensions.rst175 - ``w``: Writable

123456