HomeSort by relevance Sort by last modified time
    Searched refs:Hex (Results 226 - 250 of 357) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/boxes/h264/
AvcConfigurationBox.java 19 import com.coremedia.iso.Hex;
355 result.add(Hex.encodeHex(parameterSet));
363 result.add(Hex.encodeHex(parameterSet));
371 result.add(Hex.encodeHex(parameterSet));
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MixedItemSection.java 21 import com.android.dexgen.util.Hex;
153 out.annotate(4, name + "_size:" + spaces + Hex.u4(sz));
154 out.annotate(4, name + "_off: " + spaces + Hex.u4(offset));
ValueEncoder.java 41 import com.android.dexgen.util.Hex;
277 out.annotate(" size: " + Hex.u4(size));
318 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " +
328 out.annotate(" size: " + Hex.u4(size));
342 out.annotate(" name_idx: " + Hex.u4(nameIdx) + " // " +
  /dalvik/dx/src/com/android/dx/dex/file/
MixedItemSection.java 21 import com.android.dx.util.Hex;
152 out.annotate(4, name + "_size:" + spaces + Hex.u4(sz));
153 out.annotate(4, name + "_off: " + spaces + Hex.u4(offset));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MixedItemSection.java 21 import com.android.dx.util.Hex;
153 out.annotate(4, name + "_size:" + spaces + Hex.u4(sz));
154 out.annotate(4, name + "_off: " + spaces + Hex.u4(offset));
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractBox.java 21 import com.coremedia.iso.Hex;
251 System.err.println("original : " + Hex.encodeHex(b1, 4));
252 System.err.println("reconstructed : " + Hex.encodeHex(b2, 4));
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
AnnotatedBytes.java 39 import org.jf.util.Hex;
78 * >= 8 (if used); the number of bytes of hex output to use
318 String left = Hex.dump(data, rangeStart, rangeEnd - rangeStart, rangeStart, hexCols, 6);
325 String left = Hex.dump(data, lastKey, data.length - lastKey, lastKey, hexCols, 6);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java 19 import com.android.providers.contacts.util.Hex;
217 decodedCandidateName = Hex.decodeHex(candidateName);
218 decodedName = Hex.decodeHex(name);
RawContactMatcher.java 20 import com.android.providers.contacts.util.Hex;
215 decodedCandidateName = Hex.decodeHex(candidateName);
216 decodedName = Hex.decodeHex(name);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
FlatManifestWriterImpl.java 18 import com.coremedia.iso.Hex;
366 l.codecPrivateData = Hex.encodeHex(waveformatex.array()) + Hex.encodeHex(dec3Content.array()); //append EC3SpecificBox (big endian) at the end of waveformatex
424 l.codecPrivateData = Hex.encodeHex(waveformatex.array()) + Hex.encodeHex(dtsCodecPrivateData.array());
560 return Hex.encodeHex(configByteArray);
569 l.codecPrivateData = Hex.encodeHex(getAvcCodecPrivateData(avcConfigurationBox));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java 39 import org.bouncycastle.util.encoders.Hex;
322 return indent + type + " ApplicationSpecific[" + app.getApplicationTag() + "] (" + new String(Hex.encode(app.getContents())) + ")" + nl;
379 buf.append(new String(Hex.encode(bytes, i, SAMPLE_SIZE)));
387 buf.append(new String(Hex.encode(bytes, i, bytes.length - i)));
  /external/conscrypt/src/platform/java/org/conscrypt/
PinListEntry.java 115 return Hex.bytesToHexString(fingerprint);
133 // check to make sure that it's a valid hex string
137 throw new IllegalArgumentException("Pin is not a valid hex string", e);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsn.java 23 import com.android.dexgen.util.Hex;
299 return Hex.u4(System.identityHashCode(this));
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlockList.java 21 import com.android.dexgen.util.Hex;
163 + Hex.u2(label));
Rop.java 22 import com.android.dexgen.util.Hex;
298 default: sb.append(" " + Hex.u1(branchingness)); break;
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsn.java 24 import com.android.dx.util.Hex;
328 return Hex.u4(System.identityHashCode(this));
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlockList.java 21 import com.android.dx.util.Hex;
162 + Hex.u2(label));
Rop.java 22 import com.android.dx.util.Hex;
298 default: sb.append(" " + Hex.u1(branchingness)); break;
  /dalvik/dx/src/com/android/dx/ssa/
PhiInsn.java 27 import com.android.dx.util.Hex;
373 + Hex.u2(operands.get(i).ropLabel) + "]");
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsn.java 23 import com.android.dx.util.Hex;
327 return Hex.u4(System.identityHashCode(this));
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlockList.java 21 import com.android.dx.util.Hex;
162 + Hex.u2(label));
Rop.java 22 import com.android.dx.util.Hex;
298 default: sb.append(" " + Hex.u1(branchingness)); break;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
PhiInsn.java 22 import com.android.dx.util.Hex;
369 + Hex.u2(operands.get(i).ropLabel) + "]");
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 170 constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
172 constructor = mapping.getProperty("uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 91011>>