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

1234567891011>>

/external/gflags/src/
H A Dgflags_completions.sh6 # Redistribution and use in source and binary forms, with or without
12 # * Redistributions in binary form must reproduce the above
58 # by binaries, don't actually execute the binary or the process
64 # places in the (N-2)nd position. binary gets the actual command from
67 binary="${!binary_index}"
75 if [ "$binary" == "time" ] || [ "$binary" == "env" ]; then
77 # binary
84 # In this case, we'll mistake the FOO="bar" portion as the binary.
93 binary
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
H A DBinaryTagTest.java23 * @see <a href="http://yaml.org/type/binary.html"></a>
33 byte[] binary = (byte[]) getMapValue("canonical: !!binary " + content, "canonical");
34 assertEquals((byte) 'G', binary[0]);
35 assertEquals((byte) 'I', binary[1]);
36 assertEquals((byte) 'F', binary[2]);
37 assertEquals((byte) '8', binary[3]);
38 assertEquals((byte) '9', binary[4]);
42 byte[] binary = (byte[]) load("!!binary \"M
[all...]
/external/mesa3d/src/amd/common/
H A Dac_binary.c44 struct ac_shader_binary *binary)
58 binary->global_symbol_offsets = CALLOC(symbol_count, sizeof(uint64_t));
67 binary->global_symbol_offsets[binary->global_symbol_count] =
72 for (i = binary->global_symbol_count; i > 0; --i) {
73 uint64_t lhs = binary->global_symbol_offsets[i - 1];
74 uint64_t rhs = binary->global_symbol_offsets[i];
78 binary->global_symbol_offsets[i] = lhs;
79 binary->global_symbol_offsets[i - 1] = rhs;
81 ++binary
42 parse_symbol_table(Elf_Data *symbol_table_data, const GElf_Shdr *symbol_table_header, struct ac_shader_binary *binary) argument
85 parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols, unsigned symbol_sh_link, struct ac_shader_binary *binary) argument
112 ac_elf_read(const char *elf_data, unsigned elf_size, struct ac_shader_binary *binary) argument
192 ac_shader_binary_config_start( const struct ac_shader_binary *binary, uint64_t symbol_offset) argument
213 ac_shader_binary_read_config(struct ac_shader_binary *binary, struct ac_shader_config *conf, unsigned symbol_offset) argument
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A Dradeon_elf_util.h36 * Parse the elf binary stored in \p elf_data and create a
40 struct radeon_shader_binary *binary);
44 * the function starting at \p symbol_offset of the binary.
47 const struct radeon_shader_binary *binary,
H A Dradeon_elf_util.c38 struct radeon_shader_binary *binary)
52 binary->global_symbol_offsets = CALLOC(symbol_count, sizeof(uint64_t));
61 binary->global_symbol_offsets[binary->global_symbol_count] =
66 for (i = binary->global_symbol_count; i > 0; --i) {
67 uint64_t lhs = binary->global_symbol_offsets[i - 1];
68 uint64_t rhs = binary->global_symbol_offsets[i];
72 binary->global_symbol_offsets[i] = lhs;
73 binary->global_symbol_offsets[i - 1] = rhs;
75 ++binary
36 parse_symbol_table(Elf_Data *symbol_table_data, const GElf_Shdr *symbol_table_header, struct radeon_shader_binary *binary) argument
79 parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols, unsigned symbol_sh_link, struct radeon_shader_binary *binary) argument
106 radeon_elf_read(const char *elf_data, unsigned elf_size, struct radeon_shader_binary *binary) argument
185 radeon_shader_binary_config_start( const struct radeon_shader_binary *binary, uint64_t symbol_offset) argument
[all...]
/external/valgrind/auxprogs/
H A Ddump_insn_ppc.sh3 objdump -b binary -m powerpc -EB -D \
/external/autotest/client/site_tests/desktopui_KillRestart/
H A Ddesktopui_KillRestart.py11 """Validate that the given binary can crash and get restarted."""
18 def run_once(self, binary = 'chrome'):
19 # Ensure the binary is running.
21 lambda: os.system('pgrep %s >/dev/null' % binary) == 0,
22 error.TestFail('%s is not running at start of test' % binary),
25 # Try to kill all running instances of the binary.
27 utils.system('pkill -KILL %s' % binary)
30 raise error.TestFail('%s is not running before kill' % binary)
32 # Check if the binary is running again (using os.system(), since it
35 lambda: os.system('pgrep %s >/dev/null' % binary)
[all...]
/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/autotest/client/cros/
H A Dasan.py13 def running_on_asan(binary="debugd"):
16 @param binary: file to test for ASan symbols.
23 scanelf_command += " -gs %s `which %s`" % (_ASAN_SYMBOL, binary)
/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/tensorflow/tensorflow/contrib/lite/toco/python/
H A Dtoco_wrapper.py15 """Wrapper for runninmg toco binary embedded in pip site-package.
31 # Pip installs the binary in aux-bin off of main site-package install.
33 # TODO(aselle): it is unfortunate to use all of tensorflow to lookup binary.
34 binary = os.path.join(tf.__path__[0], 'aux-bin/toco')
35 os.execvp(binary, sys.argv)
/external/autotest/client/cros/audio/
H A Daudio_data.py63 def __init__(self, binary, channel, sample_format):
66 @param binary: A string containing binary data. If binary is not None,
67 The samples in binary will be parsed and be filled into
75 if binary:
76 self.read_binary(binary)
79 def read_binary(self, binary):
80 """Reads samples from binary and fills channel_data.
82 Reads samples of fixed width from binary strin
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkPrograms.cpp49 ProgramBinary::ProgramBinary (ProgramFormat format, size_t binarySize, const deUint8* binary) argument
51 , m_binary (binary, binary+binarySize)
69 bool isSaneSpirVBinary (const ProgramBinary& binary) argument
76 DE_ASSERT(binary.getFormat() == PROGRAM_FORMAT_SPIRV);
78 if (binary.getSize() % sizeof(deUint32) != 0)
81 if (binary.getSize() < sizeof(deUint32))
84 if (*(const deUint32*)binary.getBinary() != spirvMagicBytes)
90 ProgramBinary* createProgramBinaryFromSpirV (const vector<deUint32>& binary) argument
92 DE_ASSERT(!binary
102 validateCompiledBinary(const vector<deUint32>& binary, glu::ShaderProgramInfo* buildInfo, const SpirvVersion spirvVersion) argument
119 vector<deUint32> binary; local
142 vector<deUint32> binary; local
165 vector<deUint32> binary; local
222 createShaderModule(const DeviceInterface& deviceInterface, VkDevice device, const ProgramBinary& binary, VkShaderModuleCreateFlags flags) argument
[all...]
H A DvkSpirVAsm.hpp23 * \brief SPIR-V assembly to binary.
37 //! Disassemble SPIR-V binary. Throws tcu::NotSupportedError if disassembler is not available
38 void disassembleSpirV (size_t binarySizeInWords, const deUint32* binary, std::ostream* dst, SpirvVersion spirvVersion);
40 //! Validate SPIR-V binary, returning true if validation succeeds. Will fail with NotSupportedError if compiler is not available.
41 bool validateSpirV (size_t binarySizeInWords, const deUint32* binary, std::ostream* infoLog, SpirvVersion spirvVersion);
H A DvkSpirVAsm.cpp21 * \brief SPIR-V assembly to binary.
61 spv_binary binary = DE_NULL; local
71 const spv_result_t compileOk = spvTextToBinary(context, spvSource.c_str(), spvSource.size(), &binary, &diagnostic);
80 DE_ASSERT(binary->wordCount > 0);
81 dst->resize(binary->wordCount);
82 std::copy(&binary->code[0], &binary->code[0] + binary->wordCount, dst->begin());
85 spvBinaryDestroy(binary);
93 spvBinaryDestroy(binary);
101 disassembleSpirV(size_t binarySizeInWords, const deUint32* binary, std::ostream* dst, SpirvVersion spirvVersion) argument
133 validateSpirV(size_t binarySizeInWords, const deUint32* binary, std::ostream* infoLog, SpirvVersion spirvVersion) argument
[all...]
/external/autotest/client/deps/camera_hal3/
H A Dcamera_hal3.py13 binary = 'arc_camera3_test'
17 utils.get_file(os.path.join(src_path, binary),
18 os.path.join(dst_path, binary))
/external/toolchain-utils/
H A Dperf-to-inst-page.sh13 # binary : the name of the binary
15 # loading_address : the loading address of the binary
22 binary=$1
27 # size of binary supported.
51 test grep -A 2 PERF_RECORD_SAMPLE $profile | grep -A 1 -B 1 "thread: $binary" | \
52 grep -B 2 "dso.*$binary$" | awk -v base=$loading_address \
/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/toolchain-utils/go/
H A Dgo_target_exec6 # Usage: go_target_exec <target> <binary> <args>...
11 # It uses "target_cp" to copy the binary to the temporary directory on the device.
12 # It uses "target_sh" to execute the binary remotely and get the output/exitcode.
17 binary="$1"
20 # Get path to temporary directory on device and copy the binary over.
22 target_cp ${binary} ${target}:${tmpdir}/a.out
24 # If current directory is inside GOROOT, then execute the binary in the
40 # Remotely execute the binary using ssh (for ChromeOS) or adb (for Android).
/external/compiler-rt/lib/asan/scripts/
H A Dsymbolize.py51 binary = match.group(4)
55 if binary.startswith('/'):
56 binary = binary[1:]
57 binary = os.path.join(binary_prefix, binary)
59 if not os.path.exists(binary):
65 if not pipes.has_key(binary):
66 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
[all...]
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
147 cmd += ['-e', self.binary]
[all...]
/external/autotest/client/site_tests/video_JpegDecodeAccelerator/
H A Dvideo_JpegDecodeAccelerator.py13 This test is a wrapper of the chrome unittest binary:
23 binary = 'jpeg_decode_accelerator_unittest' variable in class:video_JpegDecodeAccelerator
42 self.run_chrome_test_binary(self.binary, cmd_line)
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DDataChannel.java5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
67 * Indicates whether |data| contains UTF-8 text or "binary data"
70 public final boolean binary; field in class:DataChannel.Buffer
72 public Buffer(ByteBuffer data, boolean binary) { argument
74 this.binary = binary;
122 * Return the number of bytes of application data (UTF-8 text and binary data)
137 return sendNative(data, buffer.binary);
139 private native boolean sendNative(byte[] data, boolean binary); argument
[all...]
/external/flatbuffers/src/
H A Dutil.cpp26 bool LoadFileRaw(const char *name, bool binary, std::string *buf) { argument
28 std::ifstream ifs(name, binary ? std::ifstream::binary : std::ifstream::in);
30 if (binary) {
49 bool LoadFile(const char *name, bool binary, std::string *buf) { argument
51 return g_load_file_function(name, binary, buf);

Completed in 719 milliseconds

1234567891011>>