HomeSort by relevance Sort by last modified time
    Searched refs:hex (Results 51 - 75 of 745) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_invite.py 33 print "BSSID = ", hex(bssid[0]) , ":" , \
34 hex(bssid[1]) , ":" , hex(bssid[2]) , ":", \
35 hex(bssid[3]) , ":" , hex(bssid[4]) , ":" , \
36 hex(bssid[5])
  /prebuilts/misc/common/swig/include/2.0.11/d/
dmemberfunctionpointers.swg 55 static const char hex[17] = "0123456789abcdef";
60 *(c++) = hex[(uu & 0xf0) >> 4];
61 *(c++) = hex[uu & 0xf];
  /art/runtime/
elf_utils.h 117 LOG(FATAL) << "Illegal d_tag value 0x" << std::hex << d_tag;
149 LOG(FATAL) << "Unknown MIPS d_tag value 0x" << std::hex << d_tag;
159 LOG(FATAL) << "Unknown d_tag value 0x" << std::hex << d_tag;
  /external/chromium_org/third_party/libjingle/source/talk/examples/turnserver/
turnserver_main.cc 48 std::string hex; local
49 bool ret = file_.GetStringValue(username, &hex);
52 size_t len = talk_base::hex_decode(buf, sizeof(buf), hex);
  /external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 17 // static const fmtflags hex;
30 // static const fmtflags basefield = dec | oct | hex;
41 assert(std::ios_base::hex);
59 & std::ios_base::hex
78 | std::ios_base::hex));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 17 // static const fmtflags hex;
30 // static const fmtflags basefield = dec | oct | hex;
41 assert(std::ios_base::hex);
59 & std::ios_base::hex
78 | std::ios_base::hex));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Color.js 57 // Simple - #hex, rgb(), nickname, hsl()
62 if (match[1]) { // hex
63 var hex = match[1].toUpperCase();
65 if (hex.length === 3) {
67 hex = hex.charAt(0) + hex.charAt(0) + hex.charAt(1) + hex.charAt(1) + hex.charAt(2) + hex.charAt(2)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/chacha/
chachatest.c 111 static void hex_decode(unsigned char *out, const char* hex)
115 while (*hex != 0)
117 unsigned char v = hex_digit(*hex++);
119 v |= hex_digit(*hex++);
  /external/ipsec-tools/src/racoon/
prsa_tok.l 52 hex [0-9a-fA-F]
53 word6 {hex}{0,4}
67 return HEX;
  /external/libcxx/test/input.output/iostream.format/std.manip/
setbase.pass.cpp 34 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
46 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex);
58 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
70 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex);
  /external/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
setf_fmtflags_mask.pass.cpp 33 test::fmtflags f = t.setf(test::hex | test::right, test::dec | test::right);
  /hardware/invensense/6515/libsensors_iio/
MPLSupport.h 36 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/std.manip/
setbase.pass.cpp 34 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
46 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex);
58 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
70 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
setf_fmtflags_mask.pass.cpp 33 test::fmtflags f = t.setf(test::hex | test::right, test::dec | test::right);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uuid.py 31 # make a UUID from a string of hex digits (braces and hyphens ignored)
34 # convert a UUID to a string of hex digits in standard form
88 hex the UUID as a 32-character hexadecimal string
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
109 argument. When a string of hex digits is given, curly braces,
122 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
125 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
128 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
129 raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
130 if hex is not None
268 hex = property(get_hex) variable in class:UUID
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uuid.py 31 # make a UUID from a string of hex digits (braces and hyphens ignored)
34 # convert a UUID to a string of hex digits in standard form
88 hex the UUID as a 32-character hexadecimal string
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
109 argument. When a string of hex digits is given, curly braces,
122 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
125 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
128 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
129 raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
130 if hex is not None
268 hex = property(get_hex) variable in class:UUID
    [all...]
  /external/stlport/test/unit/
num_put_get_test.cpp 725 CHECK(short, 0, hex, "0")
726 CHECK(short, 12345, hex, "3039")
728 CHECK(short, -1, hex, "ffff")
729 CHECK(short, -12345, hex, "cfc7")
732 CHECK(unsigned short, 0, hex, "0")
733 CHECK(unsigned short, 12345, hex, "3039")
735 CHECK(int, 0, hex, "0")
736 CHECK(int, 12345678, hex, "bc614e")
738 CHECK(int, -1, hex, "ffffffff")
739 CHECK(int, -12345678, hex, "ff439eb2"
1010 s << hex << 0; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
num_put_get_test.cpp 725 CHECK(short, 0, hex, "0")
726 CHECK(short, 12345, hex, "3039")
728 CHECK(short, -1, hex, "ffff")
729 CHECK(short, -12345, hex, "cfc7")
732 CHECK(unsigned short, 0, hex, "0")
733 CHECK(unsigned short, 12345, hex, "3039")
735 CHECK(int, 0, hex, "0")
736 CHECK(int, 12345678, hex, "bc614e")
738 CHECK(int, -1, hex, "ffffffff")
739 CHECK(int, -12345678, hex, "ff439eb2"
1010 s << hex << 0; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
num_put_get_test.cpp 725 CHECK(short, 0, hex, "0")
726 CHECK(short, 12345, hex, "3039")
728 CHECK(short, -1, hex, "ffff")
729 CHECK(short, -12345, hex, "cfc7")
732 CHECK(unsigned short, 0, hex, "0")
733 CHECK(unsigned short, 12345, hex, "3039")
735 CHECK(int, 0, hex, "0")
736 CHECK(int, 12345678, hex, "bc614e")
738 CHECK(int, -1, hex, "ffffffff")
739 CHECK(int, -12345678, hex, "ff439eb2"
1012 s << hex << 0; local
    [all...]
  /external/arduino/hardware/arduino/
boards.txt 11 uno.bootloader.file=optiboot_atmega328.hex
30 atmega328.bootloader.file=ATmegaBOOT_168_atmega328.hex
50 diecimila.bootloader.file=ATmegaBOOT_168_diecimila.hex
70 mega2560.bootloader.file=stk500boot_v2_mega2560.hex
90 mega.bootloader.file=ATmegaBOOT_168_atmega1280.hex
110 mini.bootloader.file=ATmegaBOOT_168_ng.hex
130 fio.bootloader.file=ATmegaBOOT_168_atmega328_pro_8MHz.hex
151 bt328.bootloader.file=ATmegaBOOT_168_atmega328_bt.hex
172 bt.bootloader.file=ATmegaBOOT_168.hex
192 lilypad328.bootloader.file=ATmegaBOOT_168_atmega328_pro_8MHz.hex
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Perl5Target.java 63 String hex = Integer.toHexString(c | 0x10000).toUpperCase().substring(1, 5); local
65 buf.append(hex);
  /external/chromium_org/chrome/browser/metro_utils/
metro_chrome_win.cc 46 << std::showbase << std::hex << hr;
57 << std::showbase << std::hex << hr;
  /external/chromium_org/media/formats/webm/
webm_info_parser.cc 53 DVLOG(1) << "Multiple values for id " << std::hex << id << " specified";
63 DVLOG(1) << "Unexpected float for id" << std::hex << id;
  /external/chromium_org/remoting/host/win/
rdp_desktop_session.cc 53 << std::hex << result << std::dec << ".";
58 CHECK(SUCCEEDED(result)) << "OnRdpClosed() failed: 0x" << std::hex << result
  /external/chromium_org/third_party/icu/source/test/intltest/
tstnorm.h 80 static UnicodeString hex(UChar ch);
81 static UnicodeString hex(const UnicodeString& str);

Completed in 1410 milliseconds

1 23 4 5 6 7 8 91011>>