HomeSort by relevance Sort by last modified time
    Searched refs:reads (Results 76 - 100 of 418) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/encoding/binary/
varint.go 105 // ReadUvarint reads an encoded unsigned integer from r and returns it as a uint64.
125 // ReadVarint reads an encoded signed integer from r and returns it as an int64.
  /prebuilts/go/linux-x86/doc/codewalk/
markov.go 41 Our version of this program reads text from standard input, parsing it into a
86 // Build reads text from the provided Reader and
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
ar.go 61 // hostArchive reads an archive file holding host objects and links in
135 // readArmap reads the archive symbol map.
  /prebuilts/go/linux-x86/src/crypto/rand/
rand_unix.go 36 // A devReader satisfies reads by reading the file named name.
69 // hideAgainReader masks EAGAIN reads from /dev/urandom.
  /prebuilts/go/linux-x86/src/encoding/binary/
varint.go 105 // ReadUvarint reads an encoded unsigned integer from r and returns it as a uint64.
125 // ReadVarint reads an encoded signed integer from r and returns it as an int64.
  /build/soong/android/
onceper.go 34 // for reads.
  /external/v8/tools/gcmole/
gccause.lua 28 -- This is an auxiliary tool that reads gccauses file generated by
  /prebuilts/go/darwin-x86/doc/play/
tree.go 54 // Compare reads values from two Walkers
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/fetch/
fetch.go 24 // FetchProfile reads from a data source (network, file) and generates a
  /prebuilts/go/darwin-x86/src/compress/bzip2/
bit_reader.go 33 // ReadBits64 reads the given number of bits and returns them in the
  /prebuilts/go/darwin-x86/src/index/suffixarray/
suffixarray.go 46 // readInt reads an int x from r using buf to buffer the read and returns x.
70 // readSlice reads data[:n] from r and returns n.
97 // Read reads the index from r into x; x must not be nil.
99 // buffer for all reads
  /prebuilts/go/darwin-x86/src/testing/iotest/
reader.go 54 // loop because first call needs two reads:
  /prebuilts/go/linux-x86/doc/play/
tree.go 54 // Compare reads values from two Walkers
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/fetch/
fetch.go 24 // FetchProfile reads from a data source (network, file) and generates a
  /prebuilts/go/linux-x86/src/compress/bzip2/
bit_reader.go 33 // ReadBits64 reads the given number of bits and returns them in the
  /prebuilts/go/linux-x86/src/index/suffixarray/
suffixarray.go 46 // readInt reads an int x from r using buf to buffer the read and returns x.
70 // readSlice reads data[:n] from r and returns n.
97 // Read reads the index from r into x; x must not be nil.
99 // buffer for all reads
  /prebuilts/go/linux-x86/src/testing/iotest/
reader.go 54 // loop because first call needs two reads:
  /external/fio/
iolog.c 334 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */ local
349 reads = writes = waits = 0;
401 reads++;
448 if (!reads && !writes && !waits)
450 else if (reads && !writes)
452 else if (!reads && writes)
  /prebuilts/go/darwin-x86/src/net/
iprawsock.go 12 // BUG(mikio): On every POSIX platform, reads from the "ip4" network
96 // ReadFromIP reads an IP packet from c, copying the payload into b.
129 // ReadMsgIP reads a packet from c, copying the payload into b and the
  /prebuilts/go/linux-x86/src/net/
iprawsock.go 12 // BUG(mikio): On every POSIX platform, reads from the "ip4" network
96 // ReadFromIP reads an IP packet from c, copying the payload into b.
129 // ReadMsgIP reads a packet from c, copying the payload into b and the
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_io.py 876 # we should not issue any additional reads, otherwise it may block
886 # A more complex case where two raw reads are needed to satisfy
    [all...]
  /external/libvorbis/doc/
03-codebook.tex 77 The decoder first reads one additional bit flag, the
117 a length for every codeword, the encoder reads the number of
136 After all codeword lengths have been decoded, the decoder reads the
161 number of lookup values to be read. Lookup type one reads a list of
164 type two builds the same vector list, but reads each scalar for each
373 bit-unpacking convention; a specific codebook reads a
391 reads bits until the accumulated bits match a codeword in the
  /prebuilts/go/darwin-x86/src/bufio/
bufio.go 82 // fill reads a new chunk into the buffer.
182 // Read reads data into p.
231 // ReadByte reads and returns a single byte.
265 // ReadRune reads a single UTF-8 encoded Unicode character and returns the
303 // ReadSlice reads until the first occurrence of delim in the input,
401 // ReadBytes reads until the first occurrence of delim in the input,
448 // ReadString reads until the first occurrence of delim in the input,
  /prebuilts/go/darwin-x86/src/bytes/
buffer.go 46 // so immediate changes to the slice will affect the result of future reads.
156 // ReadFrom reads data from r until EOF and appends it to the buffer, growing
259 // Read reads the next len(p) bytes from the buffer or until the buffer
299 // ReadByte reads and returns the next byte from the buffer.
314 // ReadRune reads and returns the next UTF-8-encoded
368 // ReadBytes reads until the first occurrence of delim in the input,
396 // ReadString reads until the first occurrence of delim in the input,
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
print.go 157 Printf(format, "hi") // ERROR "missing argument for Printf..%s..: format reads arg 2, have only 1"
158 Printf("%s %d %.3v %q", "str", 4) // ERROR "missing argument for Printf..%.3v..: format reads arg 3, have only 2"
181 Printf("%[3]*s", "hi", 2) // ERROR "missing argument for Printf.* reads arg 3, have only 2"
182 _ = fmt.Sprintf("%[3]d", 2) // ERROR "missing argument for Sprintf.* reads arg 3, have only 1"
234 errorf("ERROR", "%d") // ERROR "format reads arg 1, have only 0 args"
242 externalprintf.Logf(level, "%d") // ERROR "format reads arg 1, have only 0 args"
263 Printf("%d %[3]d %d %[2]d", 1, 2, 3) // ERROR "format reads arg 4, have only 3 args"

Completed in 1968 milliseconds

1 2 34 5 6 7 8 91011>>