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

1 2 3 4 5 6 7 891011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
ScopedPrinter.h 91 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } function in class:llvm::ScopedPrinter
107 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
109 startLine() << Label << ": " << hex(Value) << "\n";
141 startLine() << Label << " [ (" << hex(Value) << ")\n";
143 startLine() << " " << Flag.Name << " (" << hex(Flag.Value) << ")\n";
149 startLine() << Label << " [ (" << hex(Value) << ")\n";
154 startLine() << " " << hex(Flag) << "\n";
238 OS << hex(Item);
245 startLine() << Label << ": " << hex(Value) << "\n";
249 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n"
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
ScopedPrinter.h 91 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } function in class:llvm::ScopedPrinter
107 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
109 startLine() << Label << ": " << hex(Value) << "\n";
141 startLine() << Label << " [ (" << hex(Value) << ")\n";
143 startLine() << " " << Flag.Name << " (" << hex(Flag.Value) << ")\n";
149 startLine() << Label << " [ (" << hex(Value) << ")\n";
154 startLine() << " " << hex(Flag) << "\n";
238 OS << hex(Item);
245 startLine() << Label << ": " << hex(Value) << "\n";
249 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n"
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
ScopedPrinter.h 91 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } function in class:llvm::ScopedPrinter
107 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
109 startLine() << Label << ": " << hex(Value) << "\n";
141 startLine() << Label << " [ (" << hex(Value) << ")\n";
143 startLine() << " " << Flag.Name << " (" << hex(Flag.Value) << ")\n";
149 startLine() << Label << " [ (" << hex(Value) << ")\n";
154 startLine() << " " << hex(Flag) << "\n";
238 OS << hex(Item);
245 startLine() << Label << ": " << hex(Value) << "\n";
249 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n"
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
ScopedPrinter.h 91 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } function in class:llvm::ScopedPrinter
107 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
109 startLine() << Label << ": " << hex(Value) << "\n";
141 startLine() << Label << " [ (" << hex(Value) << ")\n";
143 startLine() << " " << Flag.Name << " (" << hex(Flag.Value) << ")\n";
149 startLine() << Label << " [ (" << hex(Value) << ")\n";
154 startLine() << " " << hex(Flag) << "\n";
238 OS << hex(Item);
245 startLine() << Label << ": " << hex(Value) << "\n";
249 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n"
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
ScopedPrinter.h 91 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } function in class:llvm::ScopedPrinter
107 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
109 startLine() << Label << ": " << hex(Value) << "\n";
141 startLine() << Label << " [ (" << hex(Value) << ")\n";
143 startLine() << " " << Flag.Name << " (" << hex(Flag.Value) << ")\n";
149 startLine() << Label << " [ (" << hex(Value) << ")\n";
154 startLine() << " " << hex(Flag) << "\n";
238 OS << hex(Item);
245 startLine() << Label << ": " << hex(Value) << "\n";
249 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n"
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
ConformanceTest.java 337 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
343 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
350 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
357 errln("cross test failed s1: " + Utility.hex(s1) + " s2: "
358 +Utility.hex(s2));
432 errln((" " + msg + ": " + op + op2 + '(' + s + ")=" + hex(got) +
433 ", exp. " + hex(exp)))
487 int hex = Integer.parseInt(strToHex,16); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
ConformanceTest.java 334 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
340 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
347 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
354 errln("cross test failed s1: " + Utility.hex(s1) + " s2: "
355 +Utility.hex(s2));
429 errln((" " + msg + ": " + op + op2 + '(' + s + ")=" + hex(got) +
430 ", exp. " + hex(exp)))
484 int hex = Integer.parseInt(strToHex,16); local
    [all...]
  /external/tcpdump/
print-esp.c 280 static u_int hexdigit(netdissect_options *ndo, char hex)
282 if (hex >= '0' && hex <= '9')
283 return (hex - '0');
284 else if (hex >= 'A' && hex <= 'F')
285 return (hex - 'A' + 10);
286 else if (hex >= 'a' && hex <= 'f')
287 return (hex - 'a' + 10)
    [all...]
addrtoname.c 334 static const char hex[16] = "0123456789abcdef"; variable
518 *cp++ = hex[*ep >> 4 ];
519 *cp++ = hex[*ep++ & 0xf];
522 *cp++ = hex[*ep >> 4 ];
523 *cp++ = hex[*ep++ & 0xf];
552 *cp++ = hex[*(ep + i - 1) >> 4];
553 *cp++ = hex[*(ep + i - 1) & 0xf];
591 *cp++ = hex[*ep >> 4];
592 *cp++ = hex[*ep++ & 0xf];
595 *cp++ = hex[*ep >> 4]
    [all...]
  /external/autotest/server/cros/ap_configurators/
linksyse1000_ap_configurator.py 25 hex(mode), self.name)
linksyse1500_ap_configurator.py 23 hex(mode), self.name)
  /external/capstone/bindings/java/
TestMips.java 12 // from http://stackoverflow.com/questions/140131/convert-a-string-representation-of-a-hex-dump-to-a-byte-array-using-java
27 private static String hex(int i) { method in class:TestMips
31 private static String hex(long i) { method in class:TestMips
44 String imm = hex(i.value.imm);
55 System.out.printf("\t\t\toperands[%d].mem.disp: %s\n", c, hex(i.value.mem.disp));
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ScriptRunModuleWriter.java 36 output.print(Utility.hex(scriptData.getRecord(record).startChar(), 6));
38 output.print(Utility.hex(scriptData.getRecord(record).endChar(), 6));
53 output.print(Utility.hex(power, 4));
58 output.print(Utility.hex(extra, 4));
  /external/iproute2/include/
json_print.h 64 _PRINT_FUNC(hex, unsigned int);
  /external/python/cpython2/Lib/
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
90 hex the UUID as a 32-character hexadecimal string
103 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
111 argument. When a string of hex digits is given, curly braces,
124 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
127 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
130 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
131 raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
132 if hex is not None
270 hex = property(get_hex) variable in class:UUID
    [all...]
  /external/python/cpython3/Lib/
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
93 hex the UUID as a 32-character hexadecimal string
106 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
114 argument. When a string of hex digits is given, curly braces,
127 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
130 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
133 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
134 raise TypeError('one of the hex, bytes, bytes_le, fields, '
136 if hex is not None
281 def hex(self): member in class:UUID
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
numeric_lex.h 31 return std::ios::hex;
  /external/toybox/kconfig/
zconf.hash.c_shipped 98 char kconf_id_strings_str13[sizeof("hex")];
134 "hex",
  /external/zlib/src/test/
infcover.c 239 decodes liberally, in that hex digits can be adjacent, in which case two in
240 a row writes a byte. Or they can be delimited by any non-hex character,
241 where the delimiters are ignored except when a single hex digit is followed
245 local unsigned char *h2b(const char *hex, unsigned *len)
250 in = malloc((strlen(hex) + 1) >> 1);
256 if (*hex >= '0' && *hex <= '9')
257 val = (val << 4) + *hex - '0';
258 else if (*hex >= 'A' && *hex <= 'F'
    [all...]
  /hardware/interfaces/graphics/composer/2.1/utils/vts/
TestCommandReader.cpp 48 GTEST_FAIL() << "unexpected return command " << std::hex
  /packages/apps/Dialer/java/com/android/incallui/
Log.java 129 StringBuffer hex = new StringBuffer(bytes.length * 2); local
134 hex.append("0");
136 hex.append(Integer.toString(byteIntValue, 16));
139 return hex.toString();
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
decode_test.go 9 "encoding/hex"
39 code, err := hex.DecodeString(f[0][:i] + f[0][i+1:])
  /prebuilts/go/darwin-x86/src/crypto/x509/
sec1_test.go 9 "encoding/hex"
30 derBytes, _ := hex.DecodeString(test.derHex)
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprog/
badtraceback.go 22 // exercise the stack bounds logic in the hex dump.
45 // bad return PC and a hex dump.
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
decode_test.go 9 "encoding/hex"
39 code, err := hex.DecodeString(f[0][:i] + f[0][i+1:])

Completed in 966 milliseconds

1 2 3 4 5 6 7 891011>>