Searched refs:raw (Results 26 - 40 of 40) sorted by relevance

12

/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
H A DFormat31c.java35 public long getA(byte[] raw) throws IOException { argument
36 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
40 public long getB(byte[] raw) throws IOException { argument
41 return RawInsnHelper.getUnsignedIntFromFourBytes(raw, 2);
45 public long getC(byte[] raw) throws IOException { argument
H A DFormat31i.java34 public long getA(byte[] raw) throws IOException { argument
35 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
39 public long getB(byte[] raw) throws IOException { argument
40 return RawInsnHelper.getSignedIntFromFourBytes(raw, 2);
44 public long getC(byte[] raw) throws IOException { argument
H A DFormat31t.java34 public long getA(byte[] raw) throws IOException { argument
35 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
39 public long getB(byte[] raw) throws IOException { argument
40 return RawInsnHelper.getSignedIntFromFourBytes(raw, 2);
44 public long getC(byte[] raw) throws IOException { argument
H A DFormat32x.java35 public long getA(byte[] raw) throws IOException { argument
36 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2);
40 public long getB(byte[] raw) throws IOException { argument
41 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 4);
45 public long getC(byte[] raw) throws IOException { argument
H A DFormat10t.java33 public long getA(byte[] raw) throws IOException { argument
34 return RawInsnHelper.getSignedByteFromByte(raw, 1);
38 public long getB(byte[] raw) throws IOException { argument
43 public long getC(byte[] raw) throws IOException { argument
H A DFormat20t.java34 public long getA(byte[] raw) throws IOException { argument
35 return RawInsnHelper.getSignedShortFromTwoBytes(raw, 2);
39 public long getB(byte[] raw) throws IOException { argument
44 public long getC(byte[] raw) throws IOException { argument
H A DFormat30t.java34 public long getA(byte[] raw) throws IOException { argument
35 return RawInsnHelper.getSignedIntFromFourBytes(raw, 2);
39 public long getB(byte[] raw) throws IOException { argument
44 public long getC(byte[] raw) throws IOException { argument
H A DFormat22c.java36 public long getA(byte[] raw) throws IOException { argument
37 return RawInsnHelper.getUnsignedLowNibbleFromByte(raw, 1);
41 public long getB(byte[] raw) throws IOException { argument
42 return RawInsnHelper.getUnsignedHighNibbleFromByte(raw, 1);
46 public long getC(byte[] raw) throws IOException { argument
47 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2);
H A DFormat35c.java39 public long getA(byte[] raw) throws IOException { argument
40 return RawInsnHelper.getUnsignedHighNibbleFromByte(raw, 1);
44 public long getB(byte[] raw) throws IOException { argument
45 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2);
49 public long getC(byte[] raw) throws IOException { argument
50 return RawInsnHelper.getUnsignedLowNibbleFromByte(raw, 4);
H A DFormat3rc.java37 public long getA(byte[] raw) throws IOException { argument
38 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
42 public long getB(byte[] raw) throws IOException { argument
43 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2);
47 public long getC(byte[] raw) throws IOException { argument
48 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 4);
H A DFormat21c.java36 public long getA(byte[] raw) throws IOException { argument
37 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
41 public long getB(byte[] raw) throws IOException { argument
42 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2);
46 public long getC(byte[] raw) throws IOException { argument
H A DFormat51l.java37 public long getA(byte[] raw) throws IOException { argument
38 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
42 public long getB(byte[] raw) throws IOException { argument
43 return RawInsnHelper.getSignedLongFromEightBytes(raw, 2);
47 public long getC(byte[] raw) throws IOException { argument
/art/runtime/
H A Ddex_file_test.cc170 std::unique_ptr<const DexFile> raw(OpenDexFileBase64(kRawDex, tmp.GetFilename().c_str()));
171 ASSERT_TRUE(raw.get() != nullptr);
173 const DexFile::Header& header = raw->GetHeader();
196 EXPECT_EQ(header.checksum_, raw->GetLocationChecksum());
201 std::unique_ptr<const DexFile> raw(OpenTestDexFile("Main"));
202 EXPECT_NE(raw->GetHeader().checksum_, raw->GetLocationChecksum());
216 std::unique_ptr<const DexFile> raw(OpenTestDexFile("Nested"));
217 ASSERT_TRUE(raw.get() != nullptr);
218 EXPECT_EQ(2U, raw
[all...]
H A Ddex_file_verifier_test.cc155 std::unique_ptr<const DexFile> raw(OpenDexFileBase64(kGoodTestDex, tmp.GetFilename().c_str(),
157 ASSERT_TRUE(raw.get() != nullptr) << error_msg;
302 std::unique_ptr<const DexFile> raw(OpenDexFileBase64(kDebugInfoTestDex,
305 ASSERT_TRUE(raw.get() != nullptr) << error_msg;
/art/tools/
H A Dcpplint.py1974 raw = clean_lines.raw_lines
1975 raw_line = raw[linenum]
2227 raw = clean_lines.raw_lines
2228 line = raw[linenum]
2291 next_line = raw[linenum + 1]
3474 raw_line: The raw line of code to check, with comments.
3782 raw = clean_lines.raw_lines
3783 line = raw[linenum]
3870 # We check here rather than inside ProcessLine so that we see raw

Completed in 176 milliseconds

12