/external/cmockery/cmockery_0_1_2/packages/deb/ |
rules | 82 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/deqp-deps/SPIRV-Tools/source/ |
binary.h | 23 // Grabs the header from the SPIR-V module given in the binary parameter. The 24 // endian parameter specifies the endianness of the binary module. On success, 26 spv_result_t spvBinaryHeaderGet(const spv_const_binary binary,
|
disassemble.h | 24 // Decodes the given SPIR-V instruction binary representation to its assembly 25 // text. The context is inferred from the provided module binary. The options 32 const uint32_t* binary,
|
libspirv.cpp | 72 std::vector<uint32_t>* binary, 74 return Assemble(text.data(), text.size(), binary, options); 78 std::vector<uint32_t>* binary, 84 binary->assign(spvbinary->code, spvbinary->code + spvbinary->wordCount); 90 bool SpirvTools::Disassemble(const std::vector<uint32_t>& binary, 92 return Disassemble(binary.data(), binary.size(), text, options); 95 bool SpirvTools::Disassemble(const uint32_t* binary, const size_t binary_size, 98 spv_result_t status = spvBinaryToText(impl_->context, binary, binary_size, 107 bool SpirvTools::Validate(const std::vector<uint32_t>& binary) const [all...] |
/external/swiftshader/third_party/SPIRV-Tools/source/ |
binary.h | 23 // Grabs the header from the SPIR-V module given in the binary parameter. The 24 // endian parameter specifies the endianness of the binary module. On success, 26 spv_result_t spvBinaryHeaderGet(const spv_const_binary binary,
|
disassemble.h | 24 // Decodes the given SPIR-V instruction binary representation to its assembly 25 // text. The context is inferred from the provided module binary. The options 32 const uint32_t* binary,
|
libspirv.cpp | 72 std::vector<uint32_t>* binary, 74 return Assemble(text.data(), text.size(), binary, options); 78 std::vector<uint32_t>* binary, 84 binary->assign(spvbinary->code, spvbinary->code + spvbinary->wordCount); 90 bool SpirvTools::Disassemble(const std::vector<uint32_t>& binary, 92 return Disassemble(binary.data(), binary.size(), text, options); 95 bool SpirvTools::Disassemble(const uint32_t* binary, const size_t binary_size, 98 spv_result_t status = spvBinaryToText(impl_->context, binary, binary_size, 107 bool SpirvTools::Validate(const std::vector<uint32_t>& binary) const [all...] |
/external/toolchain-utils/go/ |
go_target_exec | 6 # 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/u-boot/board/freescale/mx7ulp_evk/ |
Makefile | 8 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
|
/external/u-boot/board/h2200/ |
Makefile | 12 $(OBJCOPY) -O binary $< $@
|
/external/compiler-rt/lib/asan/scripts/ |
symbolize.py | 51 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...] |
/external/deqp/external/vulkancts/framework/vulkan/ |
vkSpirVAsm.hpp | 23 * \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, const SpirvValidatorOptions&);
|
vkSpirVAsm.cpp | 21 * \brief SPIR-V assembly to binary. 75 spv_binary binary = DE_NULL; local 85 const spv_result_t compileOk = spvTextToBinary(context, spvSource.c_str(), spvSource.size(), &binary, &diagnostic); 94 DE_ASSERT(binary->wordCount > 0); 95 dst->resize(binary->wordCount); 96 std::copy(&binary->code[0], &binary->code[0] + binary->wordCount, dst->begin()); 99 spvBinaryDestroy(binary); 107 spvBinaryDestroy(binary); [all...] |
/external/flatbuffers/.travis/ |
check-generate-code.sh | 33 git diff --binary --exit-code
|
/external/mesa3d/src/mesa/main/ |
program_binary.h | 45 GLenum *binary_format, GLvoid *binary); 49 GLenum binary_format, const GLvoid *binary,
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
optimizer_test.cpp | 73 std::vector<uint32_t> binary; local 74 tools.Assemble("OpName %foo \"foo\"\n%foo = OpTypeVoid", &binary); 78 opt.Run(binary.data(), binary.size(), &binary); // This is the key. 81 tools.Disassemble(binary.data(), binary.size(), &disassembly); 87 std::vector<uint32_t> binary; local 88 tools.Assemble(Header() + "OpName %foo \"foo\"\n%foo = OpTypeVoid", &binary); 92 auto orig_size = binary.size() 109 std::vector<uint32_t> binary; local [all...] |
compact_ids_test.cpp | 116 std::vector<uint32_t> binary; local 120 input, &binary, SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS); 129 optimizer.Run(binary.data(), binary.size(), &binary); 132 tools.Disassemble(binary, &disassembly, SPV_BINARY_TO_TEXT_OPTION_NO_HEADER); 160 std::vector<uint32_t> binary; local 164 input, &binary, SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS); 173 optimizer.Run(binary.data(), binary.size(), &binary) 241 std::vector<uint32_t> binary; local [all...] |
/external/grpc-grpc/test/cpp/qps/ |
parse_json.cc | 36 grpc::string binary; local 38 type_resolver.get(), "type.googleapis.com/" + type, json, &binary); 41 gpr_log(GPR_ERROR, "Failed to convert json to binary: errcode=%d msg=%s", 46 GPR_ASSERT(msg->ParseFromString(binary)); 55 grpc::string binary; local 57 msg.SerializeToString(&binary); 59 BinaryToJsonString(type_resolver.get(), type, binary, &json_string);
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
optimizer_test.cpp | 73 std::vector<uint32_t> binary; local 74 tools.Assemble("OpName %foo \"foo\"\n%foo = OpTypeVoid", &binary); 78 opt.Run(binary.data(), binary.size(), &binary); // This is the key. 81 tools.Disassemble(binary.data(), binary.size(), &disassembly); 87 std::vector<uint32_t> binary; local 88 tools.Assemble(Header() + "OpName %foo \"foo\"\n%foo = OpTypeVoid", &binary); 92 auto orig_size = binary.size() 109 std::vector<uint32_t> binary; local [all...] |
compact_ids_test.cpp | 116 std::vector<uint32_t> binary; local 120 input, &binary, SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS); 129 optimizer.Run(binary.data(), binary.size(), &binary); 132 tools.Disassemble(binary, &disassembly, SPV_BINARY_TO_TEXT_OPTION_NO_HEADER); 160 std::vector<uint32_t> binary; local 164 input, &binary, SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS); 173 optimizer.Run(binary.data(), binary.size(), &binary) 241 std::vector<uint32_t> binary; local [all...] |
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
DataChannel.java | 5 * 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) { 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); [all...] |
/bionic/libc/upstream-netbsd/lib/libc/inet/ |
nsap_addr.c | 58 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) { 63 _DIAGASSERT(binary != NULL); 82 *binary++ = (nib << 4) | xtob(c); 97 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) { 103 _DIAGASSERT(binary != NULL); 119 nib = (u_int32_t)*binary >> 4; 121 nib = *binary++ & 0x0f;
|
/external/deqp-deps/SPIRV-Tools/test/ |
test_fixture.h | 44 TextToBinaryTestBase() : diagnostic(nullptr), text(), binary(nullptr) { 66 &binary, &diagnostic); 70 code_copy = SpirvVector(binary->code, binary->code + binary->wordCount); 84 txt.size(), &binary, &diagnostic)) 90 // Encodes SPIR-V text into binary and then decodes the binary using 100 txt.size(), &binary, &diagnostic); 106 if (!binary) return "" 176 spv_binary binary; member in class:spvtest::TextToBinaryTestBase [all...] |
/external/swiftshader/third_party/SPIRV-Tools/test/ |
test_fixture.h | 44 TextToBinaryTestBase() : diagnostic(nullptr), text(), binary(nullptr) { 68 &binary, &diagnostic); 72 code_copy = SpirvVector(binary->code, binary->code + binary->wordCount); 88 txt.size(), &binary, &diagnostic)) 94 // Encodes SPIR-V text into binary and then decodes the binary using 105 txt.size(), &binary, &diagnostic); 111 if (!binary) return "" 189 spv_binary binary; member in class:spvtest::TextToBinaryTestBase [all...] |
/external/fonttools/Lib/fontTools/misc/ |
textTools.py | 15 """Convert a list of hex strings to binary data.""" 20 """Convert a hex string to binary data.""" 31 """Convert binary data to a hex string.""" 42 binary = "" 45 binary = "1" + binary 47 binary = "0" + binary 50 items.append(binary) 51 binary = " [all...] |