HomeSort by relevance Sort by last modified time
    Searched defs:hex (Results 201 - 225 of 856) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/wpa_supplicant_8/src/ap/
wps_hostapd.c 139 char hex[PMK_LEN * 2 + 1]; local
148 wpa_snprintf_hex(hex, sizeof(hex), psk, psk_len);
149 fprintf(f, MACSTR " %s\n", MAC2STR(mac_addr), hex);
    [all...]
ieee802_11.c 4166 char *hex = os_malloc(hex_len); local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
dpp_supplicant.c 996 char *hex; local
1000 hex = os_malloc(hexlen);
1001 if (hex) {
1002 wpa_snprintf_hex(hex, hexlen,
1006 hex);
1007 os_free(hex);
1011 char *hex; local
1015 hex = os_malloc(hexlen);
1016 if (hex) {
1017 wpa_snprintf_hex(hex, hexlen
    [all...]
  /frameworks/base/libs/common_time/
common_time_server.cpp 628 char hex[256]; local
631 hexDumpToString(buf, static_cast<size_t>(recvBytes), hex, sizeof(hex));
635 recvBytes, srcEPStr, hex);
    [all...]
  /frameworks/native/cmds/dumpstate/
utils.cpp 1151 struct hex { struct
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
ios_base.h 239 * - hex
267 static const fmtflags hex = _S_hex; member in class:ios_base
312 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
939 /// Calls base.setf(ios_base::hex, ios_base::basefield).
941 hex(ios_base& __base) function
943 __base.setf(ios_base::hex, ios_base::basefield);
regex.h 321 __is >> std::hex; member in class:std
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
ios_base.h 239 * - hex
267 static const fmtflags hex = _S_hex; member in class:ios_base
312 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
939 /// Calls base.setf(ios_base::hex, ios_base::basefield).
941 hex(ios_base& __base) function
943 __base.setf(ios_base::hex, ios_base::basefield);
regex.h 321 __is >> std::hex; member in class:std
    [all...]
  /system/core/init/
property_service.cpp 750 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id)); local
751 property_set("ro.recovery_id", hex);
  /toolchain/binutils/binutils-2.27/gas/config/
tc-mcore.c 146 static const char hex[] = "0123456789ABCDEF"; local
151 s[3] = hex[(n >> 12) & 0xF];
152 s[4] = hex[(n >> 8) & 0xF];
153 s[5] = hex[(n >> 4) & 0xF];
154 s[6] = hex[(n) & 0xF];
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
Demo.java 279 + "To get a character from its control point, type the hex, then hit CTL Q"
293 hexDialog = new InfoDialog(this, "Hex Entry", "Use U+..., \\u..., \\x{...}, or &#x...;",
305 helpMenu.add(mitem = new MenuItem("Hex...",
316 "[^\\u0000-\\u00FF] hex"
343 "([A-Z]) > &Hex($1) &Name($1);\r\n"
344 + "&Hex-Any($1) < ('\\' [uU] [a-fA-F0-9]*);\r\n"
500 Transliterator fromHex = Transliterator.getInstance("Hex-Any");
575 static String hexAndNameRules = " ([:c:]) > \\u200E &hex/unicode($1) ' ( ) ' &name($1) \\u200E ' ';"
576 + "([:mark:]) > \\u200E &hex/unicode($1) ' ( ' \\u200E \u25CC $1 \\u200E ' ) ' &name($1) \\u200E ' ';"
577 + "(.) > \\u200E &hex/unicode($1) ' ( ' \\u200E $1 \\u200E ' ) ' &name($1) ' ' \\u200E;"
1064 static Transliterator hex = Transliterator.getInstance("[^\\\\u0020-\\\\u007E] hex"); field in class:Demo
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TransliteratorTest.java 433 * Compose the hex transliterators forward and reverse.
437 Transliterator a = Transliterator.getInstance("Any-Hex");
438 Transliterator b = Transliterator.getInstance("Hex-Any");
441 Transliterator ab = Transliterator.getInstance("Any-Hex;Hex-Any");
451 Transliterator ba = Transliterator.getInstance("Hex-Any;Any-Hex");
472 Transliterator hex = Transliterator.getInstance("Any-Hex"); local
473 hex.setFilter(new UnicodeFilter()
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TransliteratorTest.java 430 * Compose the hex transliterators forward and reverse.
434 Transliterator a = Transliterator.getInstance("Any-Hex");
435 Transliterator b = Transliterator.getInstance("Hex-Any");
438 Transliterator ab = Transliterator.getInstance("Any-Hex;Hex-Any");
448 Transliterator ba = Transliterator.getInstance("Hex-Any;Any-Hex");
469 Transliterator hex = Transliterator.getInstance("Any-Hex"); local
470 hex.setFilter(new UnicodeFilter()
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
NativeDecoderTest.java 590 StringBuilder hex = new StringBuilder(); local
593 hex.append(digits[(c >> 4) & 0xf]);
594 hex.append(digits[c & 0xf]);
596 return hex.toString();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 968 /* There's at least enough room for a hex escape
2702 char *hex; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 962 /* There's at least enough room for a hex escape
2694 char *hex; local
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DumbTextComponent.java 188 + hex((char)code) + ", " + hex((char)e.getModifiers()));
323 + hex((char)code) + ", " + hex((char)e.getModifiers()));
329 + hex((char)ch) + ", " + hex((char)e.getModifiers()));
812 add = hex(ch);
817 add = hex(ch) + add;
824 public static String hex(char ch) { method in class:DumbTextComponent
  /external/libxml2/
xmlwriter.c 1677 static char hex[16] = local
    [all...]
  /external/python/cpython2/Objects/
bytearrayobject.c 969 /* There's at least enough room for a hex escape
2715 char *hex; local
    [all...]
  /external/skia/experimental/skottie/
Skottie.cpp 779 const auto hex = ParseDefault(jlayer["sc"], SkString()); local
782 !hex.startsWith("#") ||
783 !SkParse::FindHex(hex.c_str() + 1, &c)) {
    [all...]
  /external/skqp/experimental/skottie/
Skottie.cpp 714 const auto hex = ParseDefault(jlayer["sc"], SkString()); local
717 !hex.startsWith("#") ||
718 !SkParse::FindHex(hex.c_str() + 1, &c)) {
    [all...]
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c 1170 char hex[PMK_LEN * 2 + 1]; local
1171 wpa_snprintf_hex(hex, sizeof(hex),
1173 ret = os_snprintf(pos, end - pos, "psk=%s\n", hex);
    [all...]
  /external/wpa_supplicant_8/hs20/client/
osu_client.c 1379 char *pw, *hex, *pos, *end; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_registrar.c 1688 char hex[65]; local
1699 char hex[65]; local
    [all...]

Completed in 1101 milliseconds

1 2 3 4 5 6 7 891011>>