Searched defs:Hex (Results 1 - 10 of 10) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DHex.java28 public class Hex { class
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DHex.java7 public class Hex class
12 * encode the input data producing a Hex encoded byte array.
14 * @return a byte array containing the Hex encoded data.
23 * encode the input data producing a Hex encoded byte array.
25 * @return a byte array containing the Hex encoded data.
40 throw new RuntimeException("exception encoding Hex string: " + e);
47 * Hex encode the byte data writing it to the given output stream.
60 * Hex encode the byte data writing it to the given output stream.
75 * decode the Hex encoded input data. It is assumed the input data is valid.
90 throw new RuntimeException("exception decoding Hex strin
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java25 * Hex encoder and decoder.
29 * @version $Id: Hex.java,v 1.13 2004/04/18 18:22:33 ggregory Exp $
31 public class Hex implements BinaryEncoder, BinaryDecoder { class in inherits:BinaryEncoder,BinaryDecoder
34 * Used building output as Hex
98 * a byte[] to convert to Hex characters
163 * @param array a byte[] to convert to Hex characters
177 * @param object a String, or byte[] to convert to Hex characters
/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/dexlib/src/main/java/org/jf/dexlib/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/openssl/crypto/bn/
H A Dbn_print.c65 static const char Hex[]="0123456789ABCDEF"; variable
91 *(p++)=Hex[v>>4];
92 *(p++)=Hex[v&0x0f];
349 if (BIO_write(bp,&(Hex[v]),1) != 1)
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntityParser.cpp112 Hex, enumerator in enum:WebCore::EntityState
156 entityState = Hex;
165 entityState = Hex;
172 case Hex: {
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp524 bool Hex, Octal; member in struct:__anon3635::LiteralInfo
589 Info.Hex = Info.Octal = false;
591 Info.Hex = true;
706 if (!LitIsFloat && CallIsFloating && (LitInfo.Hex || LitInfo.Octal))
/external/clang/lib/AST/
H A DExpr.cpp688 static const char Hex[] = "0123456789ABCDEF"; local
719 OS << Hex[(Char >> Shift) & 15]; local
726 << Hex[(Char >> 20) & 15]
727 << Hex[(Char >> 16) & 15]; local
730 OS << Hex[(Char >> 12) & 15]
731 << Hex[(Char >> 8) & 15]
732 << Hex[(Char >> 4) & 15]
733 << Hex[(Char >> 0) & 15]; local
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 690 milliseconds