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

1 2 3 4 5 6 7

  /external/conscrypt/platform/src/main/java/org/conscrypt/
Hex.java 28 public final class Hex {
29 private Hex() {}
45 int bufLen = 8; // Max number of hex digits in an int
  /dalvik/dexgen/src/com/android/dexgen/util/
Hex.java 22 public final class Hex {
26 private Hex() {
31 * Formats a {@code long} as an 8-byte unsigned hex value.
47 * Formats an {@code int} as a 4-byte unsigned hex value.
63 * Formats an {@code int} as a 3-byte unsigned hex value.
79 * Formats an {@code int} as a 2-byte unsigned hex value.
95 * Formats an {@code int} as either a 2-byte unsigned hex value
96 * (if the value is small enough) or a 4-byte unsigned hex value (if
111 * Formats an {@code int} as a 1-byte unsigned hex value.
127 * Formats an {@code int} as a 4-bit unsigned hex nibble
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CstInsn.java 23 import com.android.dx.util.Hex;
229 sb.append(Hex.u2(index));
231 sb.append(Hex.u4(index));
MultiCstInsn.java 22 import com.android.dx.util.Hex;
247 sb.append(Hex.u2(currentIndex));
249 sb.append(Hex.u4(currentIndex));
SwitchData.java 23 import com.android.dx.util.Hex;
186 sb.append(Hex.u2(baseAddress));
194 sb.append(Hex.u4(absTarget));
196 sb.append(Hex.s4(relTarget));
  /dalvik/dx/src/com/android/dx/util/
Hex.java 22 public final class Hex {
26 private Hex() {
31 * Formats a {@code long} as an 8-byte unsigned hex value.
47 * Formats an {@code int} as a 4-byte unsigned hex value.
63 * Formats an {@code int} as a 3-byte unsigned hex value.
79 * Formats an {@code int} as a 2-byte unsigned hex value.
95 * Formats an {@code int} as either a 2-byte unsigned hex value
96 * (if the value is small enough) or a 4-byte unsigned hex value (if
111 * Formats an {@code int} as a 1-byte unsigned hex value.
127 * Formats an {@code int} as a 4-bit unsigned hex nibble
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
Hex.java 34 public final class Hex {
38 private Hex() {
43 * Formats a <code>long</code> as an 8-byte unsigned hex value.
59 * Formats an <code>int</code> as a 4-byte unsigned hex value.
75 * Formats an <code>int</code> as a 3-byte unsigned hex value.
91 * Formats an <code>int</code> as a 2-byte unsigned hex value.
107 * Formats an <code>int</code> as either a 2-byte unsigned hex value
108 * (if the value is small enough) or a 4-byte unsigned hex value (if
123 * Formats an <code>int</code> as a 1-byte unsigned hex value.
139 * Formats an <code>int</code> as a 4-bit unsigned hex nibble
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Hex.java 10 * Utility class for converting hex data to bytes and back again.
12 public class Hex
32 * encode the input data producing a Hex encoded byte array.
34 * @return a byte array containing the Hex encoded data.
43 * encode the input data producing a Hex encoded byte array.
45 * @return a byte array containing the Hex encoded data.
60 throw new EncoderException("exception encoding Hex string: " + e.getMessage(), e);
67 * Hex encode the byte data writing it to the given output stream.
80 * Hex encode the byte data writing it to the given output stream.
95 * decode the Hex encoded input data. It is assumed the input data is valid
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Hex.java 28 public class Hex {
38 // two characters form the hex value.
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedField.java 23 import com.android.dexgen.util.Hex;
90 sb.append(Hex.u2(getAccessFlags()));
143 " field_idx: " + Hex.u4(fieldIdx));
EncodedMethod.java 25 import com.android.dexgen.util.Hex;
100 sb.append(Hex.u2(getAccessFlags()));
182 " method_idx: " + Hex.u4(methodIdx));
187 " code_off: " + Hex.u4(codeOff));
StringDataItem.java 22 import com.android.dexgen.util.Hex;
77 "utf16_size: " + Hex.u4(utf16Size));
  /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));
136 valueStr += Hex.u1(value);
138 valueStr += Hex.u2(value);
150 String targetStr = (length <= 3) ? Hex.u2(target) : Hex.u4(target);
164 sb.append(" // padding: " + Hex.u4(padding))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedField.java 24 import com.android.dx.util.Hex;
92 sb.append(Hex.u2(getAccessFlags()));
146 " field_idx: " + Hex.u4(fieldIdx));
EncodedMethod.java 26 import com.android.dx.util.Hex;
101 sb.append(Hex.u2(getAccessFlags()));
184 " method_idx: " + Hex.u4(methodIdx));
189 " code_off: " + Hex.u4(codeOff));
StringDataItem.java 23 import com.android.dx.util.Hex;
77 "utf16_size: " + Hex.u4(utf16Size));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
Hex.java 19 * Basic hex operations: from byte array to string and vice versa.
23 public class Hex {
79 * contain non-hex strings and we want to make sure the provider won't crash even with such
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
InsnFormat.java 26 import com.android.dexgen.util.Hex;
229 case 4: sb.append(Hex.uNibble((int) bits)); break;
230 case 8: sb.append(Hex.u1((int) bits)); break;
231 case 16: sb.append(Hex.u2((int) bits)); break;
232 case 32: sb.append(Hex.u4((int) bits)); break;
233 case 64: sb.append(Hex.u8(bits)); break;
252 return (address == (char) address) ? Hex.u2(address) : Hex.u4(address);
265 return (offset == (short) offset) ? Hex.s2(offset) : Hex.s4(offset)
    [all...]
SwitchData.java 22 import com.android.dexgen.util.Hex;
185 sb.append(Hex.u2(baseAddress));
193 sb.append(Hex.u4(absTarget));
195 sb.append(Hex.s4(relTarget));
ArrayData.java 24 import com.android.dexgen.util.Hex;
188 sb.append(Hex.u2(baseAddress));
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
SourcePosition.java 20 import com.android.dexgen.util.Hex;
89 sb.append(Hex.u2(address));
  /dalvik/dx/src/com/android/dx/rop/code/
SourcePosition.java 20 import com.android.dx.util.Hex;
89 sb.append(Hex.u2(address));
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 25 * Hex encoder and decoder.
29 * @version $Id: Hex.java,v 1.13 2004/04/18 18:22:33 ggregory Exp $
36 public class Hex implements BinaryEncoder, BinaryDecoder {
39 * Used building output as Hex
69 // two characters form the hex value.
87 * @throws DecoderException Thrown if ch is an illegal hex character
103 * a byte[] to convert to Hex characters
112 // two characters form the hex value.
168 * @param array a byte[] to convert to Hex characters
182 * @param object a String, or byte[] to convert to Hex character
    [all...]
  /external/llvm/include/llvm/Support/
Format.h 146 bool Hex;
154 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
166 assert(Width <= 18 && "hex width must be <= 18");
179 assert(Width <= 16 && "hex width must be <= 16");
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
ProtectionSpecificHeader.java 4 import com.coremedia.iso.Hex;
75 sb.append(Hex.encodeHex(bytes));

Completed in 633 milliseconds

1 2 3 4 5 6 7