Searched refs:Hex (Results 1 - 25 of 118) sorted by relevance

12345

/external/lldb/tools/debugserver/source/MacOSX/ppc/
H A DDNBArchImpl.cpp260 { "srr0" , Uint, 4, Hex },
261 { "srr1" , Uint, 4, Hex },
262 { "r0" , Uint, 4, Hex },
263 { "r1" , Uint, 4, Hex },
264 { "r2" , Uint, 4, Hex },
265 { "r3" , Uint, 4, Hex },
266 { "r4" , Uint, 4, Hex },
267 { "r5" , Uint, 4, Hex },
268 { "r6" , Uint, 4, Hex },
269 { "r7" , Uint, 4, Hex },
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DDecodedInstruction.java23 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
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX962NamedCurves.java10 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
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstLong.java20 import com.android.dx.util.Hex;
60 return "long{0x" + Hex.u8(value) + " / " + value + '}';
H A DCstByte.java20 import com.android.dx.util.Hex;
72 return "byte{0x" + Hex.u1(value) + " / " + value + '}';
H A DCstChar.java20 import com.android.dx.util.Hex;
72 return "char{0x" + Hex.u2(value) + " / " + value + '}';
H A DCstDouble.java20 import com.android.dx.util.Hex;
62 return "double{0x" + Hex.u8(bits) + " / " +
H A DCstFloat.java20 import com.android.dx.util.Hex;
63 return "float{0x" + Hex.u4(bits) + " / " +
H A DCstShort.java20 import com.android.dx.util.Hex;
73 return "short{0x" + Hex.u2(value) + " / " + value + '}';
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DExtensionProfileLevelDescriptor.java19 import com.coremedia.iso.Hex;
47 sb.append("{bytes=").append(bytes == null ? "null" : Hex.encodeHex(bytes));
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DHeaderItem.java23 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));
H A DAnnotationSetRefItem.java20 import com.android.dx.util.Hex;
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
H A DMemberIdItem.java22 import com.android.dx.util.Hex;
71 out.annotate(2, " class_idx: " + Hex.u2(classIdx));
73 Hex.u2(typoidIdx)));
74 out.annotate(4, " name_idx: " + Hex.u4(nameIdx));
H A DCodeItem.java35 import com.android.dx.util.Hex;
169 out.println("regs: " + Hex.u2(getRegistersSize()) +
170 "; ins: " + Hex.u2(getInsSize()) + "; outs: " +
171 Hex.u2(getOutsSize()));
245 out.annotate(2, " registers_size: " + Hex.u2(regSz));
246 out.annotate(2, " ins_size: " + Hex.u2(insSz));
247 out.annotate(2, " outs_size: " + Hex.u2(outsSz));
248 out.annotate(2, " tries_size: " + Hex.u2(triesSz));
249 out.annotate(4, " debug_off: " + Hex.u4(debugOff));
250 out.annotate(4, " insns_size: " + Hex
[all...]
H A DFieldAnnotationStruct.java22 import com.android.dx.util.Hex;
91 out.annotate(4, " field_idx: " + Hex.u4(fieldIdx));
93 Hex.u4(annotationsOff));
H A DFieldIdsSection.java22 import com.android.dx.util.Hex;
84 out.annotate(4, "field_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "field_ids_off: " + Hex.u4(offset));
H A DMethodAnnotationStruct.java22 import com.android.dx.util.Hex;
91 out.annotate(4, " method_idx: " + Hex.u4(methodIdx));
93 Hex.u4(annotationsOff));
H A DMethodIdsSection.java22 import com.android.dx.util.Hex;
84 out.annotate(4, "method_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "method_ids_off: " + Hex.u4(offset));
H A DProtoIdsSection.java22 import com.android.dx.util.Hex;
76 out.annotate(4, "proto_ids_size: " + Hex.u4(sz));
77 out.annotate(4, "proto_ids_off: " + Hex.u4(offset));
H A DTypeListItem.java24 import com.android.dx.util.Hex;
98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
103 " " + Hex.u2(idx) + " // " + one.toHuman());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
H A DSECNamedCurves.java14 import org.bouncycastle.util.encoders.Hex;
36 return new BigInteger(1, Hex.decode(hex));
50 byte[] S = Hex.decode("00F50B028E4D696E676875615175290472783FB1");
55 //ECPoint G = curve.decodePoint(Hex.decode("02"
57 ECPoint G = curve.decodePoint(Hex.decode("04"
76 byte[] S = Hex.decode("002757A1114D696E6768756151755316C05E0BD4");
81 //ECPoint G = curve.decodePoint(Hex.decode("03"
83 ECPoint G = curve.decodePoint(Hex.decode("04"
102 byte[] S = Hex.decode("000E0D4D696E6768756151750CC03A4473D03679");
107 //ECPoint G = curve.decodePoint(Hex
[all...]
/external/deqp/framework/common/
H A DtcuFormatUtil.hpp39 class Hex class in namespace:tcu::Format
42 Hex (deUint64 value_) : value(value_) {} function in class:tcu::Format::Hex
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
114 stream << Hex<BitfieldSize/4>(bitsLeft);
152 return stream << Hex<sizeof(int)*2>(m_value);
161 return Hex<sizeof(int)*2>(m_value).toString();
216 // Hex format iterator (useful for combining with ArrayFormatter).
233 Hex<sizeof(T)*2> operator* (void) const { return Hex<sizeof(T)*2>(*m_iter); }
248 inline Format::Hex<NumDigit
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DHex.java22 public final class Hex { class
26 private Hex() { method in class:Hex
276 case 2: astr = Hex.u1(outOffset); break;
277 case 4: astr = Hex.u2(outOffset); break;
278 case 6: astr = Hex.u3(outOffset); break;
279 default: astr = Hex.u4(outOffset); break;
286 sb.append(Hex.u1(arr[offset]));
/external/smali/util/src/main/java/org/jf/util/
H A DHex.java34 public final class Hex { class
38 private Hex() { method in class:Hex
288 case 2: astr = Hex.u1(outOffset); break;
289 case 4: astr = Hex.u2(outOffset); break;
290 case 6: astr = Hex.u3(outOffset); break;
291 default: astr = Hex.u4(outOffset); break;
298 sb.append(Hex.u1(arr[offset]));
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DInsnFormat.java28 import com.android.dx.util.Hex;
288 case 4: sb.append(Hex.uNibble((int) bits)); break;
289 case 8: sb.append(Hex.u1((int) bits)); break;
290 case 16: sb.append(Hex.u2((int) bits)); break;
291 case 32: sb.append(Hex.u4((int) bits)); break;
292 case 64: sb.append(Hex.u8(bits)); break;
312 return (address == (char) address) ? Hex.u2(address) : Hex.u4(address);
325 return (offset == (short) offset) ? Hex.s2(offset) : Hex
[all...]

Completed in 2846 milliseconds

12345