HomeSort by relevance Sort by last modified time
    Searched full:hex (Results 176 - 200 of 1226) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/SunSpider/tests/sunspider-0.9.1/
crypto-sha1.js 14 var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */
20 * They take string arguments and return either hex or base-64 encoded strings
169 * Convert an array of big-endian words to a hex string.
  /external/webkit/WebCore/css/
MediaList.cpp 104 // US ASCII letter [a-zA-Z] (ISO 10646 hex 41-5a, 61-7a), digit [0-9] (hex 30-39),
105 // or hyphen (hex 2d)."
  /external/wpa_supplicant/
wpa_supplicant.conf 163 # as hex string; network name
238 # The key used in WPA-PSK mode can be entered either as 64 hex-digits, i.e.,
268 # hex without quotation, e.g., 0102030405)
406 # eappsk: 16-byte (128-bit, 32 hex digits) pre-shared key in hex format
410 # eappsk: 16-byte (128-bit, 32 hex digits) pre-shared key in hex format
413 # eappsk: 32-byte (256-bit, 64 hex digits) pre-shared key in hex format
418 # eappsk: Pre-shared key in hex format (at least 128 bits, i.e., 32 hex digits
    [all...]
  /frameworks/base/tools/obbtool/
Main.cpp 82 " -s <8 byte hex salt> sets the crypto key salt (if encrypted)\n"
220 fprintf(stderr, "ERROR: salt must be 8 bytes in hex (e.g., ABCD65031337D00D)\n\n");
230 fprintf(stderr, "ERROR: salt must be in hex (e.g., ABCD65031337D00D)\n");
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 376 fail("device id on CDMA must be 14-digit hex MEID or 8-digit hex ESN.");
382 assertTrue("ESN hex device id " + deviceId + " does not match pattern " + esnPattern,
384 assertFalse("ESN hex device id " + deviceId + " must not be a pseudo-ESN",
  /dalvik/vm/
Misc.h 57 * Print a hex dump to the log file.
59 * "local" mode prints a hex dump starting from offset 0 (roughly equivalent
72 * Print a hex dump, at INFO level.
80 * Print a hex dump at VERBOSE level. This does nothing in non-debug builds.
  /external/astl/tests/
test_iomanip.cpp 61 EXPECT_TRUE(s.flags() == (ios_base::hex | ios_base::skipws));
  /external/bluetooth/glib/tests/
gen-casemap-txt.pl 77 $code = hex ($fields[$CODE]);
123 $code = hex ($raw_code);
218 $lower[$code] = pack ("U", hex ($fields[$LOWER]));
256 return pack ("U*", map { hex ($_) } split /\s+/, $codes);
utf8.txt 21 # as a series of hex numbers.
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
X509CRLObject.java 19 import org.bouncycastle.util.encoders.Hex;
368 new String(Hex.encode(sig, 0, 20))).append(nl);
374 new String(Hex.encode(sig, i, 20))).append(nl);
379 new String(Hex.encode(sig, i, sig.length - i))).append(nl);
  /external/chromium/third_party/icu/public/i18n/unicode/
unirepl.h 77 * character to their hex escape representations, \\uxxxx or
  /external/chromium/third_party/icu/source/test/cintltst/
utransts.c 266 "Any-Hex",
267 "Hex-Any"
505 UTransliterator* hex = utrans_open("Any-Hex", UTRANS_FORWARD, NULL,0,NULL,&status); local
507 if (hex == 0 || U_FAILURE(status)) {
508 log_err("FAIL: utrans_open(Unicode-Hex) failed, error=%s\n",
516 utrans_setFilter(hex, filt, -1, &status);
527 utrans_transUChars(hex, buf, NULL, 128, 0, &limit, &status);
545 utrans_close(hex);
  /external/dropbear/libtommath/
bn_mp_read_radix.c 49 * [e.g. in hex]
  /external/e2fsprogs/lib/uuid/
uuid_unparse.3.in 52 The case of the hex digits returned by
58 hex digits is important then the functions
  /external/icu4c/i18n/unicode/
unirepl.h 77 * character to their hex escape representations, \\uxxxx or
  /external/icu4c/test/cintltst/
utransts.c 266 "Any-Hex",
267 "Hex-Any"
505 UTransliterator* hex = utrans_open("Any-Hex", UTRANS_FORWARD, NULL,0,NULL,&status); local
507 if (hex == 0 || U_FAILURE(status)) {
508 log_err("FAIL: utrans_open(Unicode-Hex) failed, error=%s\n",
516 utrans_setFilter(hex, filt, -1, &status);
527 utrans_transUChars(hex, buf, NULL, 128, 0, &limit, &status);
545 utrans_close(hex);
  /external/stlport/stlport/stl/
_ios_base.h 71 _STLP_STATIC_CONSTANT(int, hex = 0x0010);
83 _STLP_STATIC_CONSTANT(int, basefield = dec | hex | oct);
324 inline ios_base& _STLP_CALL hex(ios_base& __s) function
325 { __s.setf(ios_base::hex, ios_base::basefield); return __s; }
  /external/v8/test/mjsunit/
char-escape.js 51 // Do the hex and unicode escape chars have the right value?
  /external/webkit/WebCore/platform/mac/
LoggingMac.mm 36 NSLog(@"unable to parse hex value for %s (%@), logging is off", channel.defaultName, logLevelString);
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
networkconfig.cpp 195 "or 64 hex digit PSK");
447 bool hex; local
455 * Assume hex key if only hex characters are present and length matches
465 hex = true;
470 hex = false;
475 if (hex && len != 10 && len != 26 && len != 32)
476 hex = false;
478 setNetworkParam(network_id, buf, txt, !hex);
  /libcore/luni/src/test/java/tests/SQLite/
FunctionContextTest.java 442 byte[] hex = new byte[2 * raw.length];
447 hex[index++] = HEX_CHAR_TABLE[v >>> 4];
448 hex[index++] = HEX_CHAR_TABLE[v & 0xF];
450 return new String(hex, "ASCII");
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestUtils.java 39 * Prints byte array <code>data</code> as hex to the
  /ndk/sources/android/stlport/stlport/stl/
_ios_base.h 71 _STLP_STATIC_CONSTANT(int, hex = 0x0010);
83 _STLP_STATIC_CONSTANT(int, basefield = dec | hex | oct);
324 inline ios_base& _STLP_CALL hex(ios_base& __s) function
325 { __s.setf(ios_base::hex, ios_base::basefield); return __s; }
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameNormalizer.java 51 return Hex.encodeHex(key.toByteArray(), true);
  /dalvik/dx/src/com/android/dx/cf/code/
ValueAwareMachine.java 23 import com.android.dx.util.Hex;
193 Hex.u1(opcode));

Completed in 1040 milliseconds

1 2 3 4 5 6 78 91011>>