HomeSort by relevance Sort by last modified time
    Searched defs:Read (Results 1 - 25 of 681) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/tools/clang/pylib/clang/
compile_db.py 26 def Read(path):
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
TestAndClearBit.c 27 UINT16 Word, Read;
39 for (Word = *(UINT16 *) Address; Word & Mask; Word = Read) {
40 Read = InterlockedCompareExchange16 (Address, Word, Word & ~Mask);
41 if (Read == Word) {
  /external/boringssl/src/ssl/test/runner/
deterministic.go 28 func (d *deterministicRand) Read(buf []byte) (int, error) {
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.cpp 7 STDMETHODIMP CSequentialInStreamSizeCount2::Read(void *data, UInt32 size, UInt32 *processedSize)
10 HRESULT result = _stream->Read(data, size, &realProcessedSize);
  /external/lzma/CPP/7zip/Archive/Common/
InStreamWithCRC.cpp 7 STDMETHODIMP CSequentialInStreamWithCRC::Read(void *data, UInt32 size, UInt32 *processedSize)
12 result = _stream->Read(data, size, &realProcessed);
22 STDMETHODIMP CInStreamWithCRC::Read(void *data, UInt32 size, UInt32 *processedSize)
27 result = _stream->Read(data, size, &realProcessed);
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand.go 20 // Read is a helper function that calls Reader.Read using io.ReadFull.
22 func Read(b []byte) (n int, err error) {
rand_windows.go 26 func (r *rngReader) Read(b []byte) (n int, err error) {
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/testdata/
escapeinfo.go 13 func (*T) Read(p []byte) {}
  /prebuilts/go/linux-x86/src/crypto/rand/
rand.go 20 // Read is a helper function that calls Reader.Read using io.ReadFull.
22 func Read(b []byte) (n int, err error) {
rand_windows.go 26 func (r *rngReader) Read(b []byte) (n int, err error) {
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/testdata/
escapeinfo.go 13 func (*T) Read(p []byte) {}
  /system/core/libbacktrace/
BacktracePtrace.cpp 65 size_t BacktracePtrace::Read(uint64_t addr, uint8_t* buffer, size_t bytes) {
  /external/compiler-rt/test/asan/TestCases/Darwin/
segv_read_write.c 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
9 __attribute__((noinline)) void Read(int *ptr) { sink = *ptr; }
19 Read((int *)p);
23 // READ: AddressSanitizer: SEGV on unknown address
24 // READ: The signal is caused by a READ memory access.
  /external/compiler-rt/test/asan/TestCases/Linux/
segv_read_write.c 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
9 __attribute__((noinline)) void Read(int *ptr) { sink = *ptr; }
19 Read((int *)p);
23 // READ: AddressSanitizer: SEGV on unknown address
24 // READ: The signal is caused by a READ memory access.
  /prebuilts/go/darwin-x86/src/crypto/tls/
example_test.go 19 func (zeroSource) Read(b []byte) (n int, err error) {
  /prebuilts/go/darwin-x86/src/go/token/
serialize.go 21 // Read calls decode to deserialize a file set into s; s must not be nil.
22 func (s *FileSet) Read(decode func(interface{}) error) error {
  /prebuilts/go/linux-x86/src/crypto/tls/
example_test.go 19 func (zeroSource) Read(b []byte) (n int, err error) {
  /prebuilts/go/linux-x86/src/go/token/
serialize.go 21 // Read calls decode to deserialize a file set into s; s must not be nil.
22 func (s *FileSet) Read(decode func(interface{}) error) error {
  /art/runtime/
gc_root-inl.h 31 inline MirrorType* GcRoot<MirrorType>::Read(GcRootSource* gc_root_source) const {
  /bionic/linker/
linker_phdr.cpp 132 The load_bias must be added to any p_vaddr value read from the ELF file to
149 bool ElfReader::Read(const char* name, int fd, off64_t file_offset, off64_t file_size) {
193 DL_ERR("can't read file \"%s\": %s", name_.c_str(), strerror(errno));
310 // Loads the program header table from an ELF file into a read-only private
770 * to read-only by calling phdr_table_protect_gnu_relro. This is no
800 // here and put every page touched by the segment as read-only.
810 // there is anything on the page which should not be read-only,
828 * turn some of the pages of a writable PT_LOAD segment to read-only, as
833 * read-only from the program's POV, but contain absolute addresses
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/Include/Ppi/
EcpPciCfg.h 27 A PCI read and write operation.
54 ECP_PEI_PCI_CFG_PPI_IO Read;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/EcpPciCfg/
EcpPciCfg.h 43 ECP_PEI_PCI_CFG_PPI_IO Read;
  /external/bsdiff/
brotli_decompressor.cc 23 bool BrotliDecompressor::Read(uint8_t* output_data, size_t bytes_to_output) {
bz2_decompressor.cc 36 bool BZ2Decompressor::Read(uint8_t* output_data, size_t bytes_to_output) {
memory_file.cc 15 bool MemoryFile::Read(void* buf, size_t count, size_t* bytes_read) {

Completed in 2129 milliseconds

1 2 3 4 5 6 7 8 91011>>