/external/grpc-grpc/test/distrib/python/ |
run_binary_distrib_test.sh | 18 "$(dirname "$0")/test_packages.sh" binary
|
/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...] |
/external/deqp-deps/SPIRV-Tools/test/opt/ |
module_utils.h | 24 std::vector<uint32_t> binary; local 25 m.ToBinary(&binary, false); 27 EXPECT_LE(5u, binary.size()); 29 return binary[3];
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
module_utils.h | 24 std::vector<uint32_t> binary; local 25 m.ToBinary(&binary, false); 27 EXPECT_LE(5u, binary.size()); 29 return binary[3];
|
/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/deqp-deps/SPIRV-Tools/test/ |
c_interface_test.cpp | 39 spv_binary binary = nullptr; local 41 sizeof(input_text), &binary, nullptr)); 44 // Sadly the compiler don't allow me to feed binary directly to 46 spv_const_binary_t b{binary->code, binary->wordCount}; 51 EXPECT_EQ(SPV_SUCCESS, spvBinaryToText(context, binary->code, 52 binary->wordCount, 0, &text, nullptr)); 55 spvBinaryDestroy(binary); 64 spv_binary binary = nullptr; local 66 spvTextToBinary(context, input_text, sizeof(input_text), &binary, 77 spv_binary binary = nullptr; local 98 spv_binary binary = nullptr; local 128 spv_binary binary = nullptr; local 157 spv_binary binary = nullptr; local 199 spv_binary binary = nullptr; local 225 spv_binary binary = nullptr; local 248 spv_binary binary = nullptr; local 279 spv_binary binary = nullptr; local [all...] |
text_destroy_test.cpp | 46 spv_binary binary = nullptr; local 49 &binary, &diagnostic)); 50 EXPECT_NE(nullptr, binary); 51 EXPECT_NE(nullptr, binary->code); 52 EXPECT_NE(0u, binary->wordCount); 60 spvBinaryToText(context, binary->code, binary->wordCount, 0, 62 spvBinaryDestroy(binary);
|
cpp_interface_test.cpp | 47 std::vector<uint32_t> binary; local 48 EXPECT_TRUE(t.Assemble(input_text, &binary)); 49 EXPECT_TRUE(binary.size() > 5u); 50 EXPECT_EQ(SpvMagicNumber, binary[0]); 51 EXPECT_EQ(kExpectedSpvVersion, binary[1]); 64 EXPECT_FALSE(t.Validate(binary)); 67 EXPECT_TRUE(t.Disassemble(binary, &output_text)); 72 std::vector<uint32_t> binary(10, 42); 74 EXPECT_TRUE(t.Assemble("", &binary)); 76 EXPECT_EQ(5u, binary.size()) 85 std::vector<uint32_t> binary; local 92 std::vector<uint32_t> binary; local 99 std::vector<uint32_t> binary; local 131 std::vector<uint32_t> binary; local 154 std::vector<uint32_t> binary; local 162 std::vector<uint32_t> binary; local 200 std::vector<uint32_t> binary; local 209 std::vector<uint32_t> binary; local 244 std::vector<uint32_t> binary; local 313 std::vector<uint32_t> binary; local [all...] |
binary_endianness_test.cpp | 22 spv_const_binary_t binary = {invalidMagicNumber, 1}; local 24 ASSERT_EQ(SPV_ERROR_INVALID_BINARY, spvBinaryEndianness(&binary, &endian)); 34 spv_const_binary_t binary = {&magicNumber, 1}; local 36 ASSERT_EQ(SPV_SUCCESS, spvBinaryEndianness(&binary, &endian)); 47 spv_const_binary_t binary = {&magicNumber, 1}; local 49 ASSERT_EQ(SPV_SUCCESS, spvBinaryEndianness(&binary, &endian));
|
ext_inst.glsl_test.cpp | 33 /// The following fields are used to check the SPIR-V binary representation 64 spv_binary binary; local 67 &binary, &diagnostic); 77 // Check we do have the extended instruction's corresponding binary code in 78 // the generated SPIR-V binary. 85 EXPECT_NE(binary->code + binary->wordCount, 86 std::search(binary->code, binary->code + binary->wordCount [all...] |
/external/swiftshader/third_party/SPIRV-Tools/test/ |
c_interface_test.cpp | 39 spv_binary binary = nullptr; local 41 sizeof(input_text), &binary, nullptr)); 44 // Sadly the compiler don't allow me to feed binary directly to 46 spv_const_binary_t b{binary->code, binary->wordCount}; 51 EXPECT_EQ(SPV_SUCCESS, spvBinaryToText(context, binary->code, 52 binary->wordCount, 0, &text, nullptr)); 55 spvBinaryDestroy(binary); 64 spv_binary binary = nullptr; local 66 spvTextToBinary(context, input_text, sizeof(input_text), &binary, 77 spv_binary binary = nullptr; local 98 spv_binary binary = nullptr; local 128 spv_binary binary = nullptr; local 157 spv_binary binary = nullptr; local 199 spv_binary binary = nullptr; local 225 spv_binary binary = nullptr; local 248 spv_binary binary = nullptr; local 279 spv_binary binary = nullptr; local [all...] |
text_destroy_test.cpp | 46 spv_binary binary = nullptr; local 49 &binary, &diagnostic)); 50 EXPECT_NE(nullptr, binary); 51 EXPECT_NE(nullptr, binary->code); 52 EXPECT_NE(0u, binary->wordCount); 60 spvBinaryToText(context, binary->code, binary->wordCount, 0, 62 spvBinaryDestroy(binary);
|
cpp_interface_test.cpp | 47 std::vector<uint32_t> binary; local 48 EXPECT_TRUE(t.Assemble(input_text, &binary)); 49 EXPECT_TRUE(binary.size() > 5u); 50 EXPECT_EQ(SpvMagicNumber, binary[0]); 51 EXPECT_EQ(kExpectedSpvVersion, binary[1]); 64 EXPECT_FALSE(t.Validate(binary)); 67 EXPECT_TRUE(t.Disassemble(binary, &output_text)); 72 std::vector<uint32_t> binary(10, 42); 74 EXPECT_TRUE(t.Assemble("", &binary)); 76 EXPECT_EQ(5u, binary.size()) 85 std::vector<uint32_t> binary; local 92 std::vector<uint32_t> binary; local 99 std::vector<uint32_t> binary; local 131 std::vector<uint32_t> binary; local 154 std::vector<uint32_t> binary; local 162 std::vector<uint32_t> binary; local 200 std::vector<uint32_t> binary; local 209 std::vector<uint32_t> binary; local 244 std::vector<uint32_t> binary; local 313 std::vector<uint32_t> binary; local [all...] |
binary_endianness_test.cpp | 22 spv_const_binary_t binary = {invalidMagicNumber, 1}; local 24 ASSERT_EQ(SPV_ERROR_INVALID_BINARY, spvBinaryEndianness(&binary, &endian)); 34 spv_const_binary_t binary = {&magicNumber, 1}; local 36 ASSERT_EQ(SPV_SUCCESS, spvBinaryEndianness(&binary, &endian)); 47 spv_const_binary_t binary = {&magicNumber, 1}; local 49 ASSERT_EQ(SPV_SUCCESS, spvBinaryEndianness(&binary, &endian));
|
ext_inst.glsl_test.cpp | 33 /// The following fields are used to check the SPIR-V binary representation 64 spv_binary binary = nullptr; local 67 &binary, &diagnostic); 77 // Check we do have the extended instruction's corresponding binary code in 78 // the generated SPIR-V binary. 85 EXPECT_NE(binary->code + binary->wordCount, 86 std::search(binary->code, binary->code + binary->wordCount [all...] |
/external/mesa3d/src/amd/common/ |
ac_binary.c | 40 struct ac_shader_binary *binary) 54 binary->global_symbol_offsets = CALLOC(symbol_count, sizeof(uint64_t)); 63 binary->global_symbol_offsets[binary->global_symbol_count] = 68 for (i = binary->global_symbol_count; i > 0; --i) { 69 uint64_t lhs = binary->global_symbol_offsets[i - 1]; 70 uint64_t rhs = binary->global_symbol_offsets[i]; 74 binary->global_symbol_offsets[i] = lhs; 75 binary->global_symbol_offsets[i - 1] = rhs; 77 ++binary->global_symbol_count [all...] |
ac_binary.h | 81 * Parse the elf binary stored in \p elf_data and create a 85 struct ac_shader_binary *binary); 89 * the function starting at \p symbol_offset of the binary. 92 const struct ac_shader_binary *binary, 95 void ac_shader_binary_read_config(struct ac_shader_binary *binary,
|
/external/google-fruit/extras/packaging/ |
debian.rules | 40 binary-indep: build install 44 binary-arch: build install 73 binary: binary-indep binary-arch 74 .PHONY: build clean binary-indep binary-arch binary instal
|
/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))) {
|
/external/python/pyasn1/tests/compat/ |
test_binary.py | 16 from pyasn1.compat import binary 22 assert '0b0' == binary.bin(0) 27 binary.bin() 37 assert '0b1111111111111111111111111111111111111111111111111111111111111111' == binary.bin(0xffffffffffffffff) 41 assert '0b0' == binary.bin(0x0000000) 46 assert '0b1000000010000000100000001' == binary.bin(0x01010101) 50 assert '-0b1000000010000000100000001' == binary.bin(-0x01010101)
|
/build/soong/cc/ |
binary.go | 41 // install symlinks to the binary. Symlink names will have the suffix and the binary 50 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed 60 // cc_binary produces a binary that is runnable on a device. 66 // cc_binary_host produces a binary that is runnable on a host. 85 // Location of the linked, unstripped binary 102 func (binary *binaryDecorator) linkerProps() []interface{} { 103 return append(binary.baseLinker.linkerProps(), 104 &binary.Properties, 105 &binary.stripper.StripProperties [all...] |
/external/autotest/client/deps/camera_hal3/ |
camera_hal3.py | 13 binary = 'cros_camera_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 \
|
/art/tools/dexanalyze/ |
dexanalyze_test.cc | 29 std::string binary = GetDexAnalyzePath(); local 30 CHECK(OS::FileExists(binary.c_str())) << binary << " should be a valid file path"; 32 argv.push_back(binary);
|