HomeSort by relevance Sort by last modified time
    Searched refs:Hex (Results 1 - 25 of 236) sorted by null

1 2 3 4 5 6 7 8 910

  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 23 import com.android.dx.util.Hex;
173 + Hex.s4(relativeTarget));
189 + Hex.s4(relativeTarget));
205 throw new DexException("Literal out of range: " + Hex.u8(literal));
217 throw new DexException("Literal out of range: " + Hex.u8(literal));
229 throw new DexException("Literal out of range: " + Hex.u8(literal));
241 throw new DexException("Literal out of range: " + Hex.u8(literal));
278 + Hex.u8(registerCount));
292 throw new DexException("Register A out of range: " + Hex.u8(a));
306 throw new DexException("Register A out of range: " + Hex.u8(a))
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.java 23 import com.android.dx.util.Hex;
173 + Hex.s4(relativeTarget));
189 + Hex.s4(relativeTarget));
205 throw new DexException("Literal out of range: " + Hex.u8(literal));
217 throw new DexException("Literal out of range: " + Hex.u8(literal));
229 throw new DexException("Literal out of range: " + Hex.u8(literal));
241 throw new DexException("Literal out of range: " + Hex.u8(literal));
278 + Hex.u8(registerCount));
292 throw new DexException("Register A out of range: " + Hex.u8(a));
306 throw new DexException("Register A out of range: " + Hex.u8(a))
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
X962NamedCurves.java 6 import org.bouncycastle.util.encoders.Hex;
30 Hex.decode("03188da80eb03090f67cbf20eb43a18800f4ff0afd82ff1012")),
33 Hex.decode("3045AE6FC8422f64ED579528D38120EAE12196D5"));
49 Hex.decode("03eea2bae7e1497842f2de7769cfe9c989c072ad696f48034a")),
52 Hex.decode("31a92ee2029fd10d901b113e990710f0d21ac6b6"));
68 Hex.decode("027d29778100c65a1da1783716588dce2b8b4aee8e228f1896")),
71 Hex.decode("c469684435deb378c4b65ca9591e2a5763059a2e"));
87 Hex.decode("020ffa963cdca8816ccc33b8642bedf905c3d358573d3f27fbbd3b3cb9aaaf")),
90 Hex.decode("e43bb460f0b80cc0c0b075798e948060f8321b7d"));
106 Hex.decode("0238af09d98727705120c921bb5e9e26296a3cdcf2f35757a0eafd87b830e7"))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstLong.java 20 import com.android.dexgen.util.Hex;
60 return "long{0x" + Hex.u8(value) + " / " + value + '}';
CstByte.java 20 import com.android.dexgen.util.Hex;
72 return "byte{0x" + Hex.u1(value) + " / " + value + '}';
CstChar.java 20 import com.android.dexgen.util.Hex;
72 return "char{0x" + Hex.u2(value) + " / " + value + '}';
CstDouble.java 20 import com.android.dexgen.util.Hex;
62 return "double{0x" + Hex.u8(bits) + " / " +
CstFloat.java 20 import com.android.dexgen.util.Hex;
63 return "float{0x" + Hex.u4(bits) + " / " +
CstShort.java 20 import com.android.dexgen.util.Hex;
73 return "short{0x" + Hex.u2(value) + " / " + value + '}';
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlockList.java 20 import com.android.dx.util.Hex;
60 + Hex.u2(label));
ByteBlock.java 19 import com.android.dx.util.Hex;
96 return '{' + Hex.u2(label) + ": " + Hex.u2(start) + ".." +
97 Hex.u2(end) + '}';
ReturnAddress.java 21 import com.android.dx.util.Hex;
51 return ("<addr:" + Hex.u2(subroutineAddress) + ">");
  /dalvik/dx/src/com/android/dx/rop/cst/
CstLong.java 20 import com.android.dx.util.Hex;
60 return "long{0x" + Hex.u8(value) + " / " + value + '}';
CstByte.java 20 import com.android.dx.util.Hex;
72 return "byte{0x" + Hex.u1(value) + " / " + value + '}';
CstChar.java 20 import com.android.dx.util.Hex;
72 return "char{0x" + Hex.u2(value) + " / " + value + '}';
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstLong.java 20 import com.android.dx.util.Hex;
60 return "long{0x" + Hex.u8(value) + " / " + value + '}';
  /external/elfutils/tests/
run-readelf-test2.sh 32 Hex dump of section [6] '.strtab', 1 bytes at offset 0x290:
  /dalvik/dx/src/com/android/dx/cf/direct/
CodeObserver.java 32 import com.android.dx.util.Hex;
80 String idxStr = (length <= 3) ? Hex.u1(idx) : Hex.u2(idx);
86 ((length <= 3) ? Hex.s1(value) : Hex.s2(value));
135 valueStr += Hex.u1(value);
137 valueStr += Hex.u2(value);
148 String targetStr = (length <= 3) ? Hex.u2(target) : Hex.u4(target);
161 sb.append(" // padding: " + Hex.u4(padding))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteBlock.java 19 import com.android.dexgen.util.Hex;
96 return '{' + Hex.u2(label) + ": " + Hex.u2(start) + ".." +
97 Hex.u2(end) + '}';
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderItem.java 21 import com.android.dexgen.util.Hex;
79 Hex.u4(file.getFileSize()));
80 out.annotate(4, "header_size: " + Hex.u4(HEADER_SIZE));
81 out.annotate(4, "endian_tag: " + Hex.u4(ENDIAN_TAG));
84 out.annotate(4, "map_off: " + Hex.u4(mapOff));
116 out.annotate(4, "data_size: " + Hex.u4(dataSize));
117 out.annotate(4, "data_off: " + Hex.u4(dataOff));
AnnotationSetRefItem.java 20 import com.android.dexgen.util.Hex;
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderItem.java 23 import com.android.dx.util.Hex;
71 Hex.u4(file.getFileSize()));
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG));
76 out.annotate(4, "map_off: " + Hex.u4(mapOff));
108 out.annotate(4, "data_size: " + Hex.u4(dataSize));
109 out.annotate(4, "data_off: " + Hex.u4(dataOff));
AnnotationSetRefItem.java 20 import com.android.dx.util.Hex;
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
HeaderItem.java 23 import com.android.dx.util.Hex;
71 Hex.u4(file.getFileSize()));
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG));
76 out.annotate(4, "map_off: " + Hex.u4(mapOff));
108 out.annotate(4, "data_size: " + Hex.u4(dataSize));
109 out.annotate(4, "data_off: " + Hex.u4(dataOff));
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 10 import org.bouncycastle.util.encoders.Hex;
19 String hex)
21 return new BigInteger(1, Hex.decode(hex));
35 byte[] S = Hex.decode("00F50B028E4D696E676875615175290472783FB1");
40 //ECPoint G = curve.decodePoint(Hex.decode("02"
42 ECPoint G = curve.decodePoint(Hex.decode("04"
61 byte[] S = Hex.decode("002757A1114D696E6768756151755316C05E0BD4");
66 //ECPoint G = curve.decodePoint(Hex.decode("03"
68 ECPoint G = curve.decodePoint(Hex.decode("04
    [all...]

Completed in 647 milliseconds

1 2 3 4 5 6 7 8 910