HomeSort by relevance Sort by last modified time
    Searched refs:binary (Results 1 - 25 of 2088) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/gflags/src/
gflags_completions.sh 6 # 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=${parts[1]
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
pr19020b.d 3 #as: binary
4 #objcopy: -O binary -I binary --pad-to=10 --gap-fill=65 --reverse-bytes=8
5 #objdump: -b binary -s
pr19020a.d 3 #as: binary
4 #objcopy: -O binary -I binary --pad-to=10 --gap-fill=65 --interleave=2 --interleave-width=1 --byte=0
5 #objdump: -b binary -s
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
BinaryTagTest.java 23 * @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 \"MQ==\"")
    [all...]
  /external/mesa3d/src/amd/common/
ac_binary.c 44 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->global_symbol_count
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_elf_util.h 36 * 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,
radeon_elf_util.c 38 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->global_symbol_count
    [all...]
  /external/valgrind/auxprogs/
dump_insn_ppc.sh 3 objdump -b binary -m powerpc -EB -D \
  /external/autotest/client/site_tests/desktopui_KillRestart/
desktopui_KillRestart.py 11 """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) == 0
    [all...]
  /system/nfc/
run_unit_tests.sh 12 binary="$(basename "$0")"
13 echo "Usage: ${binary} --help"
14 echo " ${binary} [-i <iterations>] [-s <specific device>] [--all] [<test name>[.<filter>] ...] [--<arg> ...]"
92 binary="/data/nativetest/${name}/${name}"
94 push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" )
95 test_command=( "${adb[@]}" shell "${binary}" )
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/
v32-bin-1.d 3 #ld: -m criself --oformat binary --defsym ext1=0x4000 --defsym ext2=0x6000
4 #objdump: -s -b binary
6 # Test that pcrel relocs work with --oformat binary.
9 .*: file format binary
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
libspirv.cpp 42 std::vector<uint32_t>* binary,
44 return Assemble(text.data(), text.size(), binary, options);
48 std::vector<uint32_t>* binary,
54 binary->assign(spvbinary->code, spvbinary->code + spvbinary->wordCount);
60 bool SpirvTools::Disassemble(const std::vector<uint32_t>& binary,
62 return Disassemble(binary.data(), binary.size(), text, options);
65 bool SpirvTools::Disassemble(const uint32_t* binary, const size_t binary_size,
68 spv_result_t status = spvBinaryToText(impl_->context, binary, binary_size,
77 bool SpirvTools::Validate(const std::vector<uint32_t>& binary) const
    [all...]
  /external/autotest/client/cros/
asan.py 13 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/
dump_syms.cc 4 // 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))) {
  /packages/apps/Dialer/java/com/android/dialer/binary/aosp/
AospDialerApplication.java 17 package com.android.dialer.binary.aosp;
20 import com.android.dialer.binary.common.DialerApplication;
  /packages/apps/Dialer/java/com/android/dialer/binary/google/
GoogleStubDialerApplication.java 17 package com.android.dialer.binary.google;
20 import com.android.dialer.binary.common.DialerApplication;
  /external/deqp/external/vulkancts/framework/vulkan/
vkPrograms.cpp 49 ProgramBinary::ProgramBinary (ProgramFormat format, size_t binarySize, const deUint8* binary)
51 , m_binary (binary, binary+binarySize)
69 bool isSaneSpirVBinary (const ProgramBinary& binary)
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)
92 DE_ASSERT(!binary.empty())
119 vector<deUint32> binary; local
142 vector<deUint32> binary; local
165 vector<deUint32> binary; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/include/spirv-tools/
libspirv.hpp 89 // Assembles the given assembly |text| and writes the result to |binary|.
90 // Returns true on successful assembling. |binary| will be kept untouched if
92 bool Assemble(const std::string& text, std::vector<uint32_t>* binary,
97 std::vector<uint32_t>* binary,
100 // Disassembles the given SPIR-V |binary| with the given |options| and writes
103 bool Disassemble(const std::vector<uint32_t>& binary, std::string* text,
105 // |binary_size| specifies the number of words in |binary|.
106 bool Disassemble(const uint32_t* binary, size_t binary_size,
110 // Validates the given SPIR-V |binary|. Returns true if no issues are found.
113 bool Validate(const std::vector<uint32_t>& binary) const
    [all...]
  /system/bt/test/
run_unit_tests.sh 32 binary="$(basename "$0")"
33 echo "Usage: ${binary} --help"
34 echo " ${binary} [-i <iterations>] [-s <specific device>] [--all] [<test name>[.<filter>] ...] [--<arg> ...]"
116 binary="/data/nativetest64/${name}/${name}"
118 binary="/data/nativetest/${name}/${name}"
121 push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" )
122 test_command=( "${adb[@]}" shell "${binary}" )
  /external/fonttools/Lib/fontTools/misc/
textTools.py 13 """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...]
  /build/soong/cc/
binary.go 40 // install symlinks to the binary. Symlink names will have the suffix and the binary
52 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
96 func (binary *binaryDecorator) linkerProps() []interface{} {
97 return append(binary.baseLinker.linkerProps(),
98 &binary.Properties,
99 &binary.stripper.StripProperties)
103 func (binary *binaryDecorator) getStem(ctx BaseModuleContext) string {
105 if String(binary.Properties.Stem) != "" {
106 stem = String(binary.Properties.Stem
    [all...]
  /external/autotest/client/deps/camera_hal3/
camera_hal3.py 13 binary = 'arc_camera3_test'
17 utils.get_file(os.path.join(src_path, binary),
18 os.path.join(dst_path, binary))
  /external/toolchain-utils/
perf-to-inst-page.sh 13 # 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 \
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
spirv_tools_wrapper.h 28 // binary to *binary, and clears *errors. Otherwise, writes the error message
31 spv_binary* binary, std::string* errors);
33 // Disassembles the given binary. Returns true and writes the disassembled text
37 const std::vector<uint32_t>& binary,
47 // Optimizes the given binary. Passes are registered in the exact order as shown
49 // optimized binary back to *binary if successful. Otherwise, writes errors to
50 // *errors and the content of binary may be in an invalid state.
53 std::vector<uint32_t>* binary, std::string* errors)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/binary/
example_test.go 9 "encoding/binary"
17 err := binary.Write(buf, binary.LittleEndian, pi)
19 fmt.Println("binary.Write failed:", err)
33 err := binary.Write(buf, binary.LittleEndian, v)
35 fmt.Println("binary.Write failed:", err)
46 err := binary.Read(buf, binary.LittleEndian, &pi)
48 fmt.Println("binary.Read failed:", err
    [all...]

Completed in 971 milliseconds

1 2 3 4 5 6 7 8 91011>>