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

1 23 4 5 6 7 8 91011>>

  /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/chromium_org/net/quic/test_tools/
quic_test_utils.cc 349 string hex; local
356 hex += mark ? '*' : ' ';
357 hex += kHexChars[(*p & 0xf0) >> 4];
358 hex += kHexChars[*p & 0x0f];
359 hex += mark ? '*' : ' ';
361 hex += " ";
364 hex = hex + " ";
367 hex += (*p >= 0x20 && *p <= 0x7f) ? (*p) : '.';
369 hex = hex + '\n'
    [all...]
  /external/tcpdump/
print-esp.c 103 static u_int hexdigit(netdissect_options *ndo, char hex)
105 if (hex >= '0' && hex <= '9')
106 return (hex - '0');
107 else if (hex >= 'A' && hex <= 'F')
108 return (hex - 'A' + 10);
109 else if (hex >= 'a' && hex <= 'f')
110 return (hex - 'a' + 10)
    [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/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);
  /external/icu4c/test/intltest/
tstnorm.h 80 static UnicodeString hex(UChar ch);
81 static UnicodeString hex(const UnicodeString& str);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_float.pass.cpp 77 hex(ios);
89 hex(ios);
101 hex(ios);
113 hex(ios);
125 hex(ios);
137 hex(ios);
149 hex(ios);
161 hex(ios);
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509_obj.c 75 static const char hex[17]="0123456789ABCDEF"; local
190 *(p++)=hex[(n>>4)&0x0f];
191 *(p++)=hex[n&0x0f];
202 *(p++)=hex[(n>>4)&0x0f];
203 *(p++)=hex[n&0x0f];
  /external/openssl/crypto/x509/
x509_obj.c 75 static const char hex[17]="0123456789ABCDEF"; local
190 *(p++)=hex[(n>>4)&0x0f];
191 *(p++)=hex[n&0x0f];
202 *(p++)=hex[(n>>4)&0x0f];
203 *(p++)=hex[n&0x0f];
  /external/chromium/net/http/
http_auth_sspi_win.cc 23 VLOG(1) << "AcquireCredentialsHandle returned 0x" << std::hex << status;
32 << std::hex << status;
44 << std::hex << status;
107 VLOG(1) << "InitializeSecurityContext returned 0x" << std::hex << status;
122 << std::hex << status;
145 << std::hex << status;
151 VLOG(1) << "QuerySecurityPackageInfo returned 0x" << std::hex << status;
162 << std::hex << status;
168 VLOG(1) << "FreeContextBuffer returned 0x" << std::hex << status;
180 << std::hex << status
    [all...]
  /external/chromium_org/net/http/
http_auth_sspi_win.cc 23 VLOG(1) << "AcquireCredentialsHandle returned 0x" << std::hex << status;
32 << std::hex << status;
44 << std::hex << status;
107 VLOG(1) << "InitializeSecurityContext returned 0x" << std::hex << status;
122 << std::hex << status;
145 << std::hex << status;
151 VLOG(1) << "QuerySecurityPackageInfo returned 0x" << std::hex << status;
162 << std::hex << status;
168 VLOG(1) << "FreeContextBuffer returned 0x" << std::hex << status;
180 << std::hex << status
    [all...]
  /external/chromium_org/third_party/yasm/source/config/android/
Makefile 714 modules/arch/x86/tests/addbyte.hex \
717 modules/arch/x86/tests/addrop.hex \
720 modules/arch/x86/tests/aes.asm modules/arch/x86/tests/aes.hex \
722 modules/arch/x86/tests/amd200707.hex \
725 modules/arch/x86/tests/arithsmall.hex \
726 modules/arch/x86/tests/avx.asm modules/arch/x86/tests/avx.hex \
728 modules/arch/x86/tests/avxcc.hex \
730 modules/arch/x86/tests/bittest.hex \
732 modules/arch/x86/tests/bswap64.hex \
734 modules/arch/x86/tests/clmul.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/ios/
Makefile 714 modules/arch/x86/tests/addbyte.hex \
717 modules/arch/x86/tests/addrop.hex \
720 modules/arch/x86/tests/aes.asm modules/arch/x86/tests/aes.hex \
722 modules/arch/x86/tests/amd200707.hex \
725 modules/arch/x86/tests/arithsmall.hex \
726 modules/arch/x86/tests/avx.asm modules/arch/x86/tests/avx.hex \
728 modules/arch/x86/tests/avxcc.hex \
730 modules/arch/x86/tests/bittest.hex \
732 modules/arch/x86/tests/bswap64.hex \
734 modules/arch/x86/tests/clmul.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/linux/
Makefile 714 modules/arch/x86/tests/addbyte.hex \
717 modules/arch/x86/tests/addrop.hex \
720 modules/arch/x86/tests/aes.asm modules/arch/x86/tests/aes.hex \
722 modules/arch/x86/tests/amd200707.hex \
725 modules/arch/x86/tests/arithsmall.hex \
726 modules/arch/x86/tests/avx.asm modules/arch/x86/tests/avx.hex \
728 modules/arch/x86/tests/avxcc.hex \
730 modules/arch/x86/tests/bittest.hex \
732 modules/arch/x86/tests/bswap64.hex \
734 modules/arch/x86/tests/clmul.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/mac/
Makefile 714 modules/arch/x86/tests/addbyte.hex \
717 modules/arch/x86/tests/addrop.hex \
720 modules/arch/x86/tests/aes.asm modules/arch/x86/tests/aes.hex \
722 modules/arch/x86/tests/amd200707.hex \
725 modules/arch/x86/tests/arithsmall.hex \
726 modules/arch/x86/tests/avx.asm modules/arch/x86/tests/avx.hex \
728 modules/arch/x86/tests/avxcc.hex \
730 modules/arch/x86/tests/bittest.hex \
732 modules/arch/x86/tests/bswap64.hex \
734 modules/arch/x86/tests/clmul.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/openbsd/
Makefile 714 modules/arch/x86/tests/addbyte.hex \
717 modules/arch/x86/tests/addrop.hex \
720 modules/arch/x86/tests/aes.asm modules/arch/x86/tests/aes.hex \
722 modules/arch/x86/tests/amd200707.hex \
725 modules/arch/x86/tests/arithsmall.hex \
726 modules/arch/x86/tests/avx.asm modules/arch/x86/tests/avx.hex \
728 modules/arch/x86/tests/avxcc.hex \
730 modules/arch/x86/tests/bittest.hex \
732 modules/arch/x86/tests/bswap64.hex \
734 modules/arch/x86/tests/clmul.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/win/
Makefile 714 modules/arch/x86/tests/addbyte.hex \
717 modules/arch/x86/tests/addrop.hex \
720 modules/arch/x86/tests/aes.asm modules/arch/x86/tests/aes.hex \
722 modules/arch/x86/tests/amd200707.hex \
725 modules/arch/x86/tests/arithsmall.hex \
726 modules/arch/x86/tests/avx.asm modules/arch/x86/tests/avx.hex \
728 modules/arch/x86/tests/avxcc.hex \
730 modules/arch/x86/tests/bittest.hex \
732 modules/arch/x86/tests/bswap64.hex \
734 modules/arch/x86/tests/clmul.hex \
    [all...]

Completed in 1131 milliseconds

1 23 4 5 6 7 8 91011>>