Home
last modified time | relevance | path

Searched refs:Hex (Results 1 – 25 of 164) sorted by relevance

1234567

/external/lldb/tools/debugserver/source/MacOSX/ppc/
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/
DDecodedInstruction.java23 import com.android.dx.util.Hex;
173 + Hex.s4(relativeTarget)); in getTargetUnit()
189 + Hex.s4(relativeTarget)); in getTargetByte()
205 throw new DexException("Literal out of range: " + Hex.u8(literal)); in getLiteralInt()
217 throw new DexException("Literal out of range: " + Hex.u8(literal)); in getLiteralUnit()
229 throw new DexException("Literal out of range: " + Hex.u8(literal)); in getLiteralByte()
241 throw new DexException("Literal out of range: " + Hex.u8(literal)); in getLiteralNibble()
278 + Hex.u8(registerCount)); in getRegisterCountUnit()
292 throw new DexException("Register A out of range: " + Hex.u8(a)); in getAUnit()
306 throw new DexException("Register A out of range: " + Hex.u8(a)); in getAByte()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DX962NamedCurves.java10 import org.bouncycastle.util.encoders.Hex;
34 Hex.decode("03188da80eb03090f67cbf20eb43a18800f4ff0afd82ff1012")),
36 Hex.decode("3045AE6FC8422f64ED579528D38120EAE12196D5"));
56 Hex.decode("03eea2bae7e1497842f2de7769cfe9c989c072ad696f48034a")),
58 Hex.decode("31a92ee2029fd10d901b113e990710f0d21ac6b6"));
78 Hex.decode("027d29778100c65a1da1783716588dce2b8b4aee8e228f1896")),
80 Hex.decode("c469684435deb378c4b65ca9591e2a5763059a2e"));
100 Hex.decode("020ffa963cdca8816ccc33b8642bedf905c3d358573d3f27fbbd3b3cb9aaaf")),
102 Hex.decode("e43bb460f0b80cc0c0b075798e948060f8321b7d"));
122 Hex.decode("0238af09d98727705120c921bb5e9e26296a3cdcf2f35757a0eafd87b830e7")),
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
DSECNamedCurves.java16 import org.bouncycastle.util.encoders.Hex;
33 return new BigInteger(1, Hex.decode(hex)); in fromHex()
47 byte[] S = Hex.decode("00F50B028E4D696E676875615175290472783FB1");
54 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
73 byte[] S = Hex.decode("002757A1114D696E6768756151755316C05E0BD4");
80 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
99 byte[] S = Hex.decode("000E0D4D696E6768756151750CC03A4473D03679");
106 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
125 byte[] S = Hex.decode("004D696E67687561517512D8F03431FCE63B88F4");
132 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
[all …]
/external/deqp/framework/common/
DtcuFormatUtil.hpp39 class Hex class
42 Hex (deUint64 value_) : value(value_) {} in Hex() function in tcu::Format::Hex
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex) in operator <<()
114 stream << Hex<BitfieldSize/4>(bitsLeft); in toStream()
152 return stream << Hex<NumBytes*2>((deUint64)m_value); in toStream()
161 return Hex<NumBytes*2>((deUint64)m_value).toString(); in toString()
234 Hex<sizeof(T)*2> operator* (void) const { return Hex<sizeof(T)*2>(*m_iter); } in operator *()
249 inline Format::Hex<NumDigits> toHex (T value) in toHex()
251 return Format::Hex<NumDigits>(toUint64(value)); in toHex()
256 inline Format::Hex<sizeof(T)*2> toHex (T value) in toHex()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ec/
DCustomNamedCurves.java53 import org.bouncycastle.util.encoders.Hex;
193 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
207 byte[] S = Hex.decode("3045AE6FC8422F64ED579528D38120EAE12196D5");
209 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
237 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
251 byte[] S = Hex.decode("BD71344799D5C7FCDC45B59FA3B9AB8F6A948BC5");
253 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
281 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
295 byte[] S = Hex.decode("C49D360886E704936A6678E1139D26B7819F7E90");
297 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
[all …]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DHeaderItem.java23 import com.android.dx.util.Hex;
71 Hex.u4(file.getFileSize())); in writeTo()
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM)); in writeTo()
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG)); in writeTo()
76 out.annotate(4, "map_off: " + Hex.u4(mapOff)); in writeTo()
108 out.annotate(4, "data_size: " + Hex.u4(dataSize)); in writeTo()
109 out.annotate(4, "data_off: " + Hex.u4(dataOff)); in writeTo()
DCodeItem.java35 import com.android.dx.util.Hex;
169 out.println("regs: " + Hex.u2(getRegistersSize()) + in debugPrint()
170 "; ins: " + Hex.u2(getInsSize()) + "; outs: " + in debugPrint()
171 Hex.u2(getOutsSize())); in debugPrint()
245 out.annotate(2, " registers_size: " + Hex.u2(regSz)); in writeTo0()
246 out.annotate(2, " ins_size: " + Hex.u2(insSz)); in writeTo0()
247 out.annotate(2, " outs_size: " + Hex.u2(outsSz)); in writeTo0()
248 out.annotate(2, " tries_size: " + Hex.u2(triesSz)); in writeTo0()
249 out.annotate(4, " debug_off: " + Hex.u4(debugOff)); in writeTo0()
250 out.annotate(4, " insns_size: " + Hex.u4(insnsSz)); in writeTo0()
DClassDefItem.java32 import com.android.dx.util.Hex;
188 out.annotate(4, " class_idx: " + Hex.u4(classIdx)); in writeTo()
191 out.annotate(4, " superclass_idx: " + Hex.u4(superIdx) + in writeTo()
194 out.annotate(4, " interfaces_off: " + Hex.u4(interOff)); in writeTo()
202 out.annotate(4, " source_file_idx: " + Hex.u4(sourceFileIdx) + in writeTo()
205 out.annotate(4, " annotations_off: " + Hex.u4(annoOff)); in writeTo()
206 out.annotate(4, " class_data_off: " + Hex.u4(dataOff)); in writeTo()
208 Hex.u4(staticValuesOff)); in writeTo()
396 pw.println(" accessFlags: " + Hex.u2(accessFlags)); in debugPrint()
DCatchStructs.java24 import com.android.dx.util.Hex;
209 "bogus exception range: " + Hex.u4(start) + ".." + in writeTo()
210 Hex.u4(end)); in writeTo()
249 String s1 = subPrefix + "try " + Hex.u2or4(entry.getStart()) in annotateEntries()
250 + ".." + Hex.u2or4(entry.getEnd()); in annotateEntries()
269 subPrefix + "size: " + Hex.u2(handlerOffsets.size())); in annotateEntries()
307 String s = handlers.toHuman(prefix, Hex.u2(offset) + ": "); in annotateAndConsumeHandlers()
DMemberIdItem.java22 import com.android.dx.util.Hex;
71 out.annotate(2, " class_idx: " + Hex.u2(classIdx)); in writeTo()
73 Hex.u2(typoidIdx))); in writeTo()
74 out.annotate(4, " name_idx: " + Hex.u4(nameIdx)); in writeTo()
/external/smali/util/src/main/java/org/jf/util/
DHex.java34 public final class Hex { class
38 private Hex() { in Hex() method in Hex
288 case 2: astr = Hex.u1(outOffset); break; in dump()
289 case 4: astr = Hex.u2(outOffset); break; in dump()
290 case 6: astr = Hex.u3(outOffset); break; in dump()
291 default: astr = Hex.u4(outOffset); break; in dump()
298 sb.append(Hex.u1(arr[offset])); in dump()
/external/dexmaker/src/dx/java/com/android/dx/util/
DHex.java22 public final class Hex { class
26 private Hex() { in Hex() method in Hex
276 case 2: astr = Hex.u1(outOffset); break; in dump()
277 case 4: astr = Hex.u2(outOffset); break; in dump()
278 case 6: astr = Hex.u3(outOffset); break; in dump()
279 default: astr = Hex.u4(outOffset); break; in dump()
286 sb.append(Hex.u1(arr[offset])); in dump()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
DSecP224R1Curve.java8 import org.bouncycastle.util.encoders.Hex;
13 Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000001"));
26 Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFE"))); in SecP224R1Curve()
28 Hex.decode("B4050A850C04B3ABF54132565044B0B7D7BFD8BA270B39432355FFB4"))); in SecP224R1Curve()
29 …this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFF16A2E0B8F03E13DD29455C5C2A3… in SecP224R1Curve()
DSecP192R1Curve.java8 import org.bouncycastle.util.encoders.Hex;
13 Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFF"));
26 Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFC"))); in SecP192R1Curve()
28 Hex.decode("64210519E59C80E70FA7E9AB72243049FEB8DEECC146B9B1"))); in SecP192R1Curve()
29 … this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831")); in SecP192R1Curve()
DSecP256R1Curve.java8 import org.bouncycastle.util.encoders.Hex;
13 Hex.decode("FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF"));
26 Hex.decode("FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFC"))); in SecP256R1Curve()
28 Hex.decode("5AC635D8AA3A93E7B3EBBD55769886BC651D06B0CC53B0F63BCE3C3E27D2604B"))); in SecP256R1Curve()
29 …this.order = new BigInteger(1, Hex.decode("FFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC… in SecP256R1Curve()
DSecP521R1Curve.java8 import org.bouncycastle.util.encoders.Hex;
13Hex.decode("01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF…
26Hex.decode("01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF… in SecP521R1Curve()
28Hex.decode("0051953EB9618E1C9A1F929A21A0B68540EEA2DA725B99B315F3B8B489918EF109E156193951EC7E937B16… in SecP521R1Curve()
29 …this.order = new BigInteger(1, Hex.decode("01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF… in SecP521R1Curve()
DSecP384R1Curve.java8 import org.bouncycastle.util.encoders.Hex;
13Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF00000000000000…
26Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF00000000000000… in SecP384R1Curve()
28Hex.decode("B3312FA7E23EE7E4988E056BE3F82D19181D9C6EFE8141120314088F5013875AC656398D8A2ED19D2A85C8… in SecP384R1Curve()
29 …this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7634D8… in SecP384R1Curve()
DSecP192K1Curve.java9 import org.bouncycastle.util.encoders.Hex;
14 Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFEE37"));
28 … this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFE26F2FC170F69466A74DEFD8D")); in SecP192K1Curve()
DSecP224K1Curve.java9 import org.bouncycastle.util.encoders.Hex;
14 Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFE56D"));
28 …this.order = new BigInteger(1, Hex.decode("010000000000000000000000000001DCE8D2EC6184CAF0A971769FB… in SecP224K1Curve()
DSecP256K1Curve.java9 import org.bouncycastle.util.encoders.Hex;
14 Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F"));
28 …this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8… in SecP256K1Curve()
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DInsnFormat.java28 import com.android.dx.util.Hex;
288 case 4: sb.append(Hex.uNibble((int) bits)); break; in literalBitsComment()
289 case 8: sb.append(Hex.u1((int) bits)); break; in literalBitsComment()
290 case 16: sb.append(Hex.u2((int) bits)); break; in literalBitsComment()
291 case 32: sb.append(Hex.u4((int) bits)); break; in literalBitsComment()
292 case 64: sb.append(Hex.u8(bits)); break; in literalBitsComment()
312 return (address == (char) address) ? Hex.u2(address) : Hex.u4(address); in branchString()
325 return (offset == (short) offset) ? Hex.s2(offset) : Hex.s4(offset); in branchComment()
363 sb.append(Hex.u2(index)); in cstComment()
365 sb.append(Hex.u4(index)); in cstComment()
/external/elfutils/tests/
Drun-readelf-zx.sh25 Hex dump of section [2] '.zdebug_aranges', 50 bytes (96 uncompressed) at offset 0x260:
37 Hex dump of section [2] '.debug_aranges', 62 bytes (96 uncompressed) at offset 0x260:
49 Hex dump of section [2] '.zdebug_aranges', 49 bytes (64 uncompressed) at offset 0x1c0:
59 Hex dump of section [2] '.debug_aranges', 49 bytes (64 uncompressed) at offset 0x1c0:
/external/regex-re2/re2/
Dre2.h675 static inline Arg Hex(short* x);
676 static inline Arg Hex(unsigned short* x);
677 static inline Arg Hex(int* x);
678 static inline Arg Hex(unsigned int* x);
679 static inline Arg Hex(long* x);
680 static inline Arg Hex(unsigned long* x);
681 static inline Arg Hex(long long* x);
682 static inline Arg Hex(unsigned long long* x);
833 inline RE2::Arg RE2::Hex(type* ptr) { \
/external/lldb/tools/debugserver/source/MacOSX/i386/
DDNBArchImplI386.cpp1014 #define DEFINE_GPR_PSEUDO_16(reg16,reg32) { e_regSetGPR, gpr_##reg16, #reg16, NULL, Uint, Hex, 2, G…
1015 #define DEFINE_GPR_PSEUDO_8H(reg8,reg32) { e_regSetGPR, gpr_##reg8 , #reg8 , NULL, Uint, Hex, 1, G…
1016 #define DEFINE_GPR_PSEUDO_8L(reg8,reg32) { e_regSetGPR, gpr_##reg8 , #reg8 , NULL, Uint, Hex, 1, G…
1065 { e_regSetGPR, gpr_eax, "eax" , NULL , Uint, Hex, GPR_SIZE(eax), GPR_OFFSET(eax) …
1066 { e_regSetGPR, gpr_ebx, "ebx" , NULL , Uint, Hex, GPR_SIZE(ebx), GPR_OFFSET(ebx) …
1067 { e_regSetGPR, gpr_ecx, "ecx" , NULL , Uint, Hex, GPR_SIZE(ecx), GPR_OFFSET(ecx) …
1068 { e_regSetGPR, gpr_edx, "edx" , NULL , Uint, Hex, GPR_SIZE(edx), GPR_OFFSET(edx) …
1069 { e_regSetGPR, gpr_edi, "edi" , NULL , Uint, Hex, GPR_SIZE(edi), GPR_OFFSET(edi) …
1070 { e_regSetGPR, gpr_esi, "esi" , NULL , Uint, Hex, GPR_SIZE(esi), GPR_OFFSET(esi) …
1071 { e_regSetGPR, gpr_ebp, "ebp" , "fp" , Uint, Hex, GPR_SIZE(ebp), GPR_OFFSET(ebp) …
[all …]

1234567