HomeSort by relevance Sort by last modified time
    Searched refs:rawByte (Results 1 - 7 of 7) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
DexRandomAccessFile.java 101 int rawByte = readUnsignedByte();
106 value |= ((rawByte & 0x7f) << shift);
110 if ((rawByte & 0x80) == 0) {
113 rawByte = readUnsignedByte();
181 int rawByte = readUnsignedByte();
187 value |= ((rawByte & 0x7f) << shift);
191 if ((rawByte & 0x80) == 0) {
193 if ((rawByte & 0x60) != 0) {
198 rawByte = readUnsignedByte();
266 byte rawByte = readByte()
    [all...]
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
bimport.go 72 if b := p.rawByte(); b == 'c' || b == 'd' {
82 p.trackAllTypes = p.rawByte() == 'a'
105 p.debugFormat = p.rawStringln(p.rawByte()) == "debug"
794 p.buf[i] = p.rawByte()
802 if got := p.rawByte(); got != want {
826 b = p.rawByte()
833 return p.rawByte(), nil
838 // rawByte should only be used by low-level decoders.
839 func (p *importer) rawByte() byte {
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
bimport.go 72 if b := p.rawByte(); b == 'c' || b == 'd' {
82 p.trackAllTypes = p.rawByte() == 'a'
105 p.debugFormat = p.rawStringln(p.rawByte()) == "debug"
794 p.buf[i] = p.rawByte()
802 if got := p.rawByte(); got != want {
826 b = p.rawByte()
833 return p.rawByte(), nil
838 // rawByte should only be used by low-level decoders.
839 func (p *importer) rawByte() byte {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bimport.go 60 if b := p.rawByte(); b == 'c' || b == 'd' {
70 p.trackAllTypes = p.rawByte() == 'a'
93 p.debugFormat = p.rawStringln(p.rawByte()) == "debug"
1226 p.buf[i] = p.rawByte()
1234 if got := p.rawByte(); got != want {
1258 b = p.rawByte()
1265 return p.rawByte(), nil
1268 // rawByte is the bottleneck interface for reading from p.in.
1270 // rawByte should only be used by low-level decoders.
1271 func (p *importer) rawByte() byte
    [all...]
bexport.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
bimport.go 60 if b := p.rawByte(); b == 'c' || b == 'd' {
70 p.trackAllTypes = p.rawByte() == 'a'
93 p.debugFormat = p.rawStringln(p.rawByte()) == "debug"
1226 p.buf[i] = p.rawByte()
1234 if got := p.rawByte(); got != want {
1258 b = p.rawByte()
1265 return p.rawByte(), nil
1268 // rawByte is the bottleneck interface for reading from p.in.
1270 // rawByte should only be used by low-level decoders.
1271 func (p *importer) rawByte() byte
    [all...]
bexport.go     [all...]

Completed in 158 milliseconds