Searched refs:binary (Results 1 - 25 of 296) sorted by relevance

1234567891011>>

/external/valgrind/auxprogs/
H A Ddump_insn_ppc.sh3 objdump -b binary -m powerpc -EB -D \
/external/fonttools/Lib/fontTools/misc/
H A DtextTools.py13 """Convert a list of hex strings to binary data."""
17 """Convert a hex string to binary data."""
28 """Convert binary data to a hex string."""
39 binary = ""
42 binary = "1" + binary
44 binary = "0" + binary
47 items.append(binary)
48 binary
[all...]
/external/fonttools/Tools/fontTools/misc/
H A DtextTools.py13 """Convert a list of hex strings to binary data."""
17 """Convert a hex string to binary data."""
28 """Convert binary data to a hex string."""
39 binary = ""
42 binary = "1" + binary
44 binary = "0" + binary
47 items.append(binary)
48 binary
[all...]
/external/google-breakpad/src/tools/solaris/dump_syms/
H A Ddump_syms.cc4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
41 fprintf(stderr, "Usage: %s <binary-with-stab-symbol>\n", argv[0]);
45 const char *binary = argv[1]; local
48 if (!dumper.WriteSymbolFile(binary, fileno(stdout))) {
/external/v8/test/mjsunit/regress/
H A Dregress-145201.js2 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions in binary form must reproduce the above
36 binary(operator, 1, false);
37 binary(operator, 1, true);
38 binary(operator, '{}', false);
39 binary(operator, '{}', true);
40 binary(operator, '"x"', false);
41 binary(operator, '"x"', true);
53 function binary(op, other_side, inverted) {
/external/cmockery/cmockery_0_1_2/packages/deb/
H A Drules82 binary-indep: build install
86 binary-arch: build install
116 binary: binary-indep binary-arch
117 .PHONY: build clean binary-indep binary-arch binary install
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryClassObject.java5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
H A DBinaryIdContentPair.java5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
/external/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py51 def symbolize(self, addr, binary, offset):
52 """Symbolize the given address (pair of binary and offset).
57 binary: path to executable/shared object containing this instruction.
58 offset: instruction offset in the @binary.
95 def symbolize(self, addr, binary, offset):
101 symbolizer_input = '"%s" %s' % (binary, offset)
134 def __init__(self, binary):
136 self.binary = binary
146 cmd += ['-e', self.binary]
[all...]
H A Dsymbolize.py69 binary = match.group(4)
73 if binary.startswith('/'):
74 binary = binary[1:]
75 binary = os.path.join(binary_prefix, binary)
77 if not os.path.exists(binary):
81 load_addr = android_get_load_address(binary)
84 if not pipes.has_key(binary):
85 pipes[binary]
[all...]
/external/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_openmode/
H A Dopenmode.pass.cpp16 // static const openmode binary;
28 assert(std::ios_base::binary);
37 & std::ios_base::binary
/external/libunwind/tests/
H A Drun-coredump-unwind9 binary="$1"
16 # Extract the dynamic symbols from the main binary, there is no need to also have these
18 nm -D "$binary" --format=posix --defined-only | awk '{ print $1 }' | sort > "$dynsyms"
25 #Inject the compressed data into the .gnu_debugdata section of the original binary
28 objcopy --add-section .gnu_debugdata="$mini_debuginfo" "$binary"
31 strip "$binary" ## throw away the symbol table
/external/gptfdisk/
H A Dgdisk_test.sh367 for binary in gdisk sgdisk
370 printf "\033[0;34m**Testing $binary binary**\033[m\n"
372 create_table "$binary"
373 create_partition "$binary"
374 change_partition_name "$binary"
375 change_partition_type "$binary"
376 backup_table "$binary"
377 delete_partition "$binary"
379 change_disk_uid "$binary"
[all...]
/external/lldb/examples/customization/bin-utils/
H A Dbinutils.py5 def binary(n, width=None): function
7 Return a list of (0|1)'s for the binary representation of n where n >= 0.
27 Return a list of (0|1)'s for the binary representation of a width-bit two's
35 return binary(n, width)
41 return binary(val*2 - abs(n))
43 # print binary(0xABCD)
45 # print binary(0x1F, 8)
51 # print binary(7)
64 """Convert the unsigned integer to print its binary representation.
66 args[1] (optional) is the bit width of the binary representatio
[all...]
/external/google-breakpad/src/tools/linux/dump_syms/
H A Ddump_syms.cc4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
42 fprintf(stderr, "Usage: %s [OPTION] <binary-with-debugging-info> "
71 const char* binary; local
73 binary = argv[arg_index];
82 if (!WriteSymbolFile(binary, debug_dirs, options, std::cout)) {
/external/strace/debian/
H A Drules68 binary: binary-indep binary-arch
70 binary-indep:
72 binary-arch: build
/external/v8/tools/testrunner/server/
H A Dwork_handler.py2 # Redistribution and use in source and binary forms, with or without
8 # * Redistributions in binary form must reproduce the above
62 for binary in packet.binaries:
63 if not self._UnpackBinary(binary, packet.pubkey_fingerprint):
89 def _UnpackBinary(self, binary, pubkey_fingerprint):
90 binary_name = binary["name"]
98 if not signatures.VerifySignature(target, binary["blob"],
99 binary["sign"], pubkeyfile):
/external/clang/tools/clang-format/
H A Dclang-format.py2 # - Change 'binary' if clang-format is not on the path (see below).
28 binary = 'clang-format' variable
30 binary = vim.eval('g:clang_format_path') variable
62 command = [binary, '-lines', lines, '-style', style, '-cursor', str(cursor)]
H A Dclang-format-sublime.py2 # - Change 'binary' if clang-format is not on the path (see below).
21 binary = 'clang-format' variable
35 command = [binary, '-style', style]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBase64.java6 import org.apache.commons.codec.binary.Base64;
/external/vboot_reference/tests/
H A Dgen_test_cases.sh24 openssl dgst -${hashalgo} -binary ${TEST_FILE} > \
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
H A Dresource.py14 def __init__(self, toplevel_dir, absolute_path, binary=False):
18 self._binary = binary
H A Dresource_loader.py37 def FindResource(self, some_path, binary=False):
47 return self.FindResourceGivenAbsolutePath(some_path, binary)
49 return self.FindResourceGivenRelativePath(some_path, binary)
51 def FindResourceGivenAbsolutePath(self, absolute_path, binary=False):
63 return resource_module.Resource(longest_candidate, absolute_path, binary)
65 def FindResourceGivenRelativePath(self, relative_path, binary=False):
71 return resource_module.Resource(script_path, absolute_path, binary)
188 res = self.FindResourceGivenAbsolutePath(abs_path, binary=True)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoy.ml6 (* Install standard binary operators.
/external/protobuf/examples/
H A Dadd_person.cc70 fstream input(argv[1], ios::in | ios::binary);
84 fstream output(argv[1], ios::out | ios::trunc | ios::binary);

Completed in 2221 milliseconds

1234567891011>>