/external/libunwind/tests/ |
run-coredump-unwind | 9 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/swiftshader/third_party/SPIRV-Tools/source/ |
spirv_endian.cpp | 49 spv_result_t spvBinaryEndianness(spv_const_binary binary, 51 if (!binary->code || !binary->wordCount) return SPV_ERROR_INVALID_BINARY; 55 memcpy(bytes, binary->code, sizeof(uint32_t));
|
spirv_endian.h | 28 // Gets the endianness of the SPIR-V module given in the binary parameter. 31 spv_result_t spvBinaryEndianness(const spv_const_binary binary,
|
/external/swiftshader/third_party/SPIRV-Tools/test/ |
assembly_format_test.cpp | 27 &binary, &diagnostic));
|
/external/u-boot/board/imgtec/boston/ |
config.mk | 5 $< -binary \ 6 -fill 0x00 -within $< -binary -range-pad 16 \
|
/external/deqp-deps/SPIRV-Tools/include/spirv-tools/ |
libspirv.hpp | 207 // Assembles the given assembly |text| and writes the result to |binary|. 208 // Returns true on successful assembling. |binary| will be kept untouched if 210 bool Assemble(const std::string& text, std::vector<uint32_t>* binary, 215 std::vector<uint32_t>* binary, 218 // Disassembles the given SPIR-V |binary| with the given |options| and writes 221 bool Disassemble(const std::vector<uint32_t>& binary, std::string* text, 223 // |binary_size| specifies the number of words in |binary|. 224 bool Disassemble(const uint32_t* binary, size_t binary_size, 228 // Validates the given SPIR-V |binary|. Returns true if no issues are found. 231 bool Validate(const std::vector<uint32_t>& binary) const [all...] |
/external/swiftshader/third_party/SPIRV-Tools/include/spirv-tools/ |
libspirv.hpp | 207 // Assembles the given assembly |text| and writes the result to |binary|. 208 // Returns true on successful assembling. |binary| will be kept untouched if 210 bool Assemble(const std::string& text, std::vector<uint32_t>* binary, 215 std::vector<uint32_t>* binary, 218 // Disassembles the given SPIR-V |binary| with the given |options| and writes 221 bool Disassemble(const std::vector<uint32_t>& binary, std::string* text, 223 // |binary_size| specifies the number of words in |binary|. 224 bool Disassemble(const uint32_t* binary, size_t binary_size, 228 // Validates the given SPIR-V |binary|. Returns true if no issues are found. 231 bool Validate(const std::vector<uint32_t>& binary) const [all...] |
/build/soong/python/ |
binary.go | 17 // This file contains the module types for building Python binary. 36 // set the name of the output binary. 39 // append to the name of the output binary. 82 func (binary *binaryDecorator) autorun() bool { 83 return BoolDefault(binary.binaryProperties.Autorun, true) 86 func (binary *binaryDecorator) bootstrapperProps() []interface{} { 87 return []interface{}{&binary.binaryProperties} 90 func (binary *binaryDecorator) bootstrap(ctx android.ModuleContext, actualVersion string, 95 if binary.autorun() { 96 main = binary.getPyMainFile(ctx, srcsPathMappings [all...] |
/external/gptfdisk/ |
gdisk_test.sh | 367 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/deqp/external/vulkancts/framework/vulkan/ |
vkPrograms.cpp | 62 ProgramBinary::ProgramBinary (ProgramFormat format, size_t binarySize, const deUint8* binary) 64 , m_binary (binary, binary+binarySize) 82 bool isSaneSpirVBinary (const ProgramBinary& binary) 89 DE_ASSERT(binary.getFormat() == PROGRAM_FORMAT_SPIRV); 91 if (binary.getSize() % sizeof(deUint32) != 0) 94 if (binary.getSize() < sizeof(deUint32)) 97 if (*(const deUint32*)binary.getBinary() != spirvMagicBytes) 105 void optimizeCompiledBinary (vector<deUint32>& binary, int optimizationRecipe, const SpirvVersion spirvVersion) 320 const bool ok = optimizer.Run(binary.data(), binary.size(), &binary, optimizer_options) 557 vector<deUint32> binary; local 642 vector<deUint32> binary; local 727 vector<deUint32> binary; local [all...] |
/external/u-boot/arch/powerpc/cpu/mpc8xx/ |
immap.c | 92 static void binary(char *label, uint value, int nbits) function 138 binary("PA_DIR", in_be16(l++), PA_NBITS); 139 binary("PB_DIR", in_be32(R++), PB_NBITS); 140 binary("PA_PAR", in_be16(l++), PA_NBITS); 141 binary("PB_PAR", in_be32(R++), PB_NBITS); 142 binary("PA_ODR", in_be16(l++), PA_NB_ODR); 143 binary("PB_ODR", in_be32(R++), PB_NB_ODR); 144 binary("PA_DAT", in_be16(l++), PA_NBITS); 145 binary("PB_DAT", in_be32(R++), PB_NBITS); 155 binary("PC_DIR", in_be16(l++), PC_NBITS) [all...] |
/external/deqp-deps/SPIRV-Tools/test/link/ |
global_values_amount_test.cpp | 80 spvtest::Binary binary = { variable 98 binary.push_back(4u << SpvWordCountShift | SpvOpVariable); 99 binary.push_back(2u); // NOTE: Type ID 100 binary.push_back(j + 3u); // NOTE: Result ID 101 binary.push_back(SpvStorageClassInput); 103 binaries.push_back(binary); 112 spvtest::Binary linked_binary; 144 spvtest::Binary linked_binary;
|
/external/swiftshader/third_party/SPIRV-Tools/test/link/ |
global_values_amount_test.cpp | 80 spvtest::Binary binary = { variable 98 binary.push_back(4u << SpvWordCountShift | SpvOpVariable); 99 binary.push_back(2u); // NOTE: Type ID 100 binary.push_back(j + 3u); // NOTE: Result ID 101 binary.push_back(SpvStorageClassInput); 103 binaries.push_back(binary); 112 spvtest::Binary linked_binary; 144 spvtest::Binary linked_binary;
|
/external/vulkan-validation-layers/tests/ |
vktestframeworkandroid.cpp | 110 spv_binary binary; local 113 spv_result_t error = spvTextToBinaryWithOptions(context, pasm, strlen(pasm), options, &binary, &diagnostic); 120 spv.insert(spv.end(), binary->code, binary->code + binary->wordCount); 121 spvBinaryDestroy(binary);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_disk_cache.c | 64 write_blob_program_data(struct blob *binary, gl_shader_stage stage, 69 blob_write_bytes(binary, prog_data, brw_prog_data_size(stage)); 72 blob_write_bytes(binary, program, prog_data->program_size); 75 blob_write_bytes(binary, prog_data->param, 79 blob_write_bytes(binary, prog_data->pull_param, 84 read_blob_program_data(struct blob_reader *binary, struct gl_program *prog, 89 blob_copy_bytes(binary, prog_data, brw_prog_data_size(stage)); 90 if (binary->overrun) 94 *program = blob_read_bytes(binary, prog_data->program_size); 98 blob_copy_bytes(binary, prog_data->param 172 struct blob_reader binary; local 298 struct blob binary; local [all...] |
/development/testrunner/test_defs/ |
native_test.py | 128 is no binary corresponding to the source file. We need to filter 139 binary = os.path.basename(f) 140 binary = os.path.splitext(binary)[0] 141 found = self._FindFileRecursively(path, binary) 143 binary = os.path.relpath(os.path.abspath(found), 145 binaries.append(binary) 149 """Finds the first executable binary in a given path that matches the name. 153 binary: Which binary to search for [all...] |
/device/google/cuttlefish_common/host/libs/vm_manager/ |
cf_qemu.sh | 20 binary=$1; shift 22 printf %s "${binary}" 33 binary=$1; shift 35 print_command "${binary}" "${binary_args[@]}" 36 exec "${binary}" "${binary_args[@]}" 40 binary=$1; shift 42 print_command "${binary}" "${binary_args[@]}" 43 "${binary}" "${binary_args[@]}"
|
/external/autotest/client/site_tests/video_JpegEncodeAccelerator/ |
video_JpegEncodeAccelerator.py | 19 This test is a wrapper of the chrome unittest binary: 24 binary = 'jpeg_encode_accelerator_unittest' variable in class:video_JpegEncodeAccelerator 44 self.run_chrome_test_binary(self.binary, cmd_line)
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue137/ |
SupplementaryCharactersTest.java | 43 * Supplementary Characters are dumped as binary 49 assertEquals("!!binary |-\n 8J+ZiA==\n", output); 50 byte[] binary = (byte[]) yaml.load(output); 51 String binString = new String(binary, "UTF-8");
|
/build/make/core/ |
header_library_internal.mk | 14 include $(BUILD_SYSTEM)/binary.mk
|
host_static_library_internal.mk | 21 include $(BUILD_SYSTEM)/binary.mk
|
/development/ide/emacs/ |
android-common.el | 135 (defun android-find-host-bin (binary) 136 "Return the full path to the host BINARY. 138 Try first to locate BINARY in the out/host tree. Fallback using 142 (android-host) "/bin/" binary))) 145 (error (concat binary " is missing.")))) 146 (executable-find binary)))
|
/external/bcc/examples/cpp/ |
FollyRequestContextSwitch.cc | 2 * FollyRequestContextSwitch Monitor RequestContext switch events for any binary 68 std::string binary; local 76 if (strncmp(argv[i], "--binary", 8) == 0) { 77 binary = argv[i + 1]; 83 if (pid <= 0 && binary.empty()) { 84 std::cout << "Must specify at least one of binary or PID:" << std::endl 85 << "FollyRequestContextSwitch [--pid PID] [--binary BINARY]" 90 ebpf::USDT u(binary, pid, "folly", "request_context_switch_before",
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
build_module.h | 28 // |binary|. |size| specifies number of words in |binary|. The |binary| will be 33 const uint32_t* binary,
|
/external/deqp-deps/glslang/hlsl/ |
hlslOpMap.h | 6 // Redistribution and use in source and binary forms, with or without 13 // Redistributions in binary form must reproduce the above 61 static TOperator binary(EHlslTokenClass op);
|