Home
last modified time | relevance | path

Searched refs:binary (Results 1 – 25 of 2425) sorted by relevance

12345678910>>...97

/external/mesa3d/src/gallium/drivers/radeon/
Dradeon_elf_util.c38 struct radeon_shader_binary *binary) in parse_symbol_table() argument
52 binary->global_symbol_offsets = CALLOC(symbol_count, sizeof(uint64_t)); in parse_symbol_table()
61 binary->global_symbol_offsets[binary->global_symbol_count] = in parse_symbol_table()
66 for (i = binary->global_symbol_count; i > 0; --i) { in parse_symbol_table()
67 uint64_t lhs = binary->global_symbol_offsets[i - 1]; in parse_symbol_table()
68 uint64_t rhs = binary->global_symbol_offsets[i]; in parse_symbol_table()
72 binary->global_symbol_offsets[i] = lhs; in parse_symbol_table()
73 binary->global_symbol_offsets[i - 1] = rhs; in parse_symbol_table()
75 ++binary->global_symbol_count; in parse_symbol_table()
81 struct radeon_shader_binary *binary) in parse_relocs() argument
[all …]
/external/mesa3d/src/amd/common/
Dac_binary.c44 struct ac_shader_binary *binary) in parse_symbol_table() argument
58 binary->global_symbol_offsets = CALLOC(symbol_count, sizeof(uint64_t)); in parse_symbol_table()
67 binary->global_symbol_offsets[binary->global_symbol_count] = in parse_symbol_table()
72 for (i = binary->global_symbol_count; i > 0; --i) { in parse_symbol_table()
73 uint64_t lhs = binary->global_symbol_offsets[i - 1]; in parse_symbol_table()
74 uint64_t rhs = binary->global_symbol_offsets[i]; in parse_symbol_table()
78 binary->global_symbol_offsets[i] = lhs; in parse_symbol_table()
79 binary->global_symbol_offsets[i - 1] = rhs; in parse_symbol_table()
81 ++binary->global_symbol_count; in parse_symbol_table()
87 struct ac_shader_binary *binary) in parse_relocs() argument
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkPrograms.cpp49 ProgramBinary::ProgramBinary (ProgramFormat format, size_t binarySize, const deUint8* binary) in ProgramBinary() argument
51 , m_binary (binary, binary+binarySize) in ProgramBinary()
69 bool isSaneSpirVBinary (const ProgramBinary& binary) in isSaneSpirVBinary() argument
76 DE_ASSERT(binary.getFormat() == PROGRAM_FORMAT_SPIRV); in isSaneSpirVBinary()
78 if (binary.getSize() % sizeof(deUint32) != 0) in isSaneSpirVBinary()
81 if (binary.getSize() < sizeof(deUint32)) in isSaneSpirVBinary()
84 if (*(const deUint32*)binary.getBinary() != spirvMagicBytes) in isSaneSpirVBinary()
90 ProgramBinary* createProgramBinaryFromSpirV (const vector<deUint32>& binary) in createProgramBinaryFromSpirV() argument
92 DE_ASSERT(!binary.empty()); in createProgramBinaryFromSpirV()
95 …return new ProgramBinary(PROGRAM_FORMAT_SPIRV, binary.size()*sizeof(deUint32), (const deUint8*)&bi… in createProgramBinaryFromSpirV()
[all …]
DvkSpirVAsm.cpp47 spv_binary binary = DE_NULL; in assembleSpirV() local
57 … compileOk = spvTextToBinary(context, spvSource.c_str(), spvSource.size(), &binary, &diagnostic); in assembleSpirV()
66 DE_ASSERT(binary->wordCount > 0); in assembleSpirV()
67 dst->resize(binary->wordCount); in assembleSpirV()
68 std::copy(&binary->code[0], &binary->code[0] + binary->wordCount, dst->begin()); in assembleSpirV()
71 spvBinaryDestroy(binary); in assembleSpirV()
79 spvBinaryDestroy(binary); in assembleSpirV()
87 void disassembleSpirV (size_t binarySizeInWords, const deUint32* binary, std::ostream* dst) in disassembleSpirV() argument
98 …const spv_result_t result = spvBinaryToText(context, binary, binarySizeInWords, 0, &text, &diagnos… in disassembleSpirV()
119 bool validateSpirV (size_t binarySizeInWords, const deUint32* binary, std::ostream* infoLog) in validateSpirV() argument
[all …]
DvkBinaryRegistry.cpp109 void writeBinary (const ProgramBinary& binary, const std::string& dstPath) in writeBinary() argument
117 std::ofstream out (dstPath.c_str(), std::ios_base::binary); in writeBinary()
122 out.write((const char*)binary.getBinary(), binary.getSize()); in writeBinary()
127 void writeBinary (const std::string& dstDir, deUint32 index, const ProgramBinary& binary) in writeBinary() argument
129 writeBinary(binary, getProgramPath(dstDir, index)); in writeBinary()
134 std::ifstream in (srcPath.c_str(), std::ios::binary | std::ios::ate); in readBinary()
155 deUint32 binaryHash (const ProgramBinary* binary) in binaryHash() argument
157 return deMemoryHash(binary->getBinary(), binary->getSize()); in binaryHash()
404 deUint32* BinaryIndexHash::find (const ProgramBinary* binary) const in find()
406 return BinaryIndexHashImpl_find(m_hash, binary); in find()
[all …]
DvkBinaryRegistry.hpp210 deUint32* find (const ProgramBinary* binary) const;
211 void insert (const ProgramBinary* binary, deUint32 index);
227 void addProgram (const ProgramIdentifier& id, const ProgramBinary& binary);
234 deUint32* findBinary (const ProgramBinary& binary) const;
236 void addBinary (deUint32 index, const ProgramBinary& binary);
240 ProgramBinary* binary; member
244 : binary (binary_) in BinarySlot()
249 : binary (DE_NULL) in BinarySlot()
/external/compiler-rt/lib/asan/scripts/
Dasan_symbolize.py51 def symbolize(self, addr, binary, offset): argument
95 def symbolize(self, addr, binary, offset): argument
101 symbolizer_input = '"%s" %s' % (binary, offset)
134 def __init__(self, binary): argument
136 self.binary = binary
147 cmd += ['-e', self.binary]
153 def symbolize(self, addr, binary, offset): argument
155 if self.binary != binary:
209 def __init__(self, addr, binary): argument
211 self.binary = binary
[all …]
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],
68 p = pipes[binary]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
DBinaryTagTest.java33 byte[] binary = (byte[]) getMapValue("canonical: !!binary " + content, "canonical"); in testBinary()
34 assertEquals((byte) 'G', binary[0]); in testBinary()
35 assertEquals((byte) 'I', binary[1]); in testBinary()
36 assertEquals((byte) 'F', binary[2]); in testBinary()
37 assertEquals((byte) '8', binary[3]); in testBinary()
38 assertEquals((byte) '9', binary[4]); in testBinary()
42 byte[] binary = (byte[]) load("!!binary \"MQ==\""); in testBinary2()
43 assertEquals(1, binary.length); in testBinary2()
44 assertEquals((byte) '1', binary[0]); in testBinary2()
48 byte[] binary = (byte[]) getMapValue("canonical: !<tag:yaml.org,2002:binary> " + content, in testBinaryTag()
[all …]
/external/boringssl/src/ssl/test/runner/poly1305/
Dsum_ref.go20 r0 = uint64(binary.LittleEndian.Uint32(key[0:]) & 0x3ffffff)
21 r1 = uint64((binary.LittleEndian.Uint32(key[3:]) >> 2) & 0x3ffff03)
22 r2 = uint64((binary.LittleEndian.Uint32(key[6:]) >> 4) & 0x3ffc0ff)
23 r3 = uint64((binary.LittleEndian.Uint32(key[9:]) >> 6) & 0x3f03fff)
24 r4 = uint64((binary.LittleEndian.Uint32(key[12:]) >> 8) & 0x00fffff)
30 h0 += binary.LittleEndian.Uint32(msg[0:]) & 0x3ffffff
31 h1 += (binary.LittleEndian.Uint32(msg[3:]) >> 2) & 0x3ffffff
32 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff
33 h3 += (binary.LittleEndian.Uint32(msg[9:]) >> 6) & 0x3ffffff
34 h4 += (binary.LittleEndian.Uint32(msg[12:]) >> 8) | (1 << 24)
[all …]
/external/fonttools/Lib/fontTools/misc/
DtextTools.py39 binary = ""
42 binary = "1" + binary
44 binary = "0" + binary
47 items.append(binary)
48 binary = ""
49 if binary:
50 items.append(binary)
/external/autotest/client/site_tests/desktopui_KillRestart/
Ddesktopui_KillRestart.py18 def run_once(self, binary = 'chrome'): argument
21 lambda: os.system('pgrep %s >/dev/null' % binary) == 0,
22 error.TestFail('%s is not running at start of test' % binary),
27 utils.system('pkill -KILL %s' % binary)
30 raise error.TestFail('%s is not running before kill' % binary)
35 lambda: os.system('pgrep %s >/dev/null' % binary) == 0,
36 error.TestFail('%s is not running after kill' % binary),
/external/gptfdisk/
Dgdisk_test.sh367 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"
380 wipe_table "$binary"
/external/python/cpython2/Doc/library/
Dbinascii.rst2 :mod:`binascii` --- Convert between binary and ASCII
6 :synopsis: Tools for converting between binary and various ASCII-encoded binary
16 binary and various ASCII-encoded binary representations. Normally, you will not
27 Convert a single line of uuencoded data back to binary and return the binary
28 data. Lines normally contain 45 (binary) bytes, except for the last line. Line
34 Convert binary data to a line of ASCII characters, the return value is the
41 Convert a block of base64 data back to binary and return the binary data. More
47 Convert binary data to a line of ASCII characters in base64 coding. The return
56 Convert a block of quoted-printable data back to binary and return the binary
63 Convert binary data to a line(s) of ASCII characters in quoted-printable
[all …]
/external/cmockery/cmockery_0_1_2/packages/deb/
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/ltp/testcases/network/stress/ns-tools/
D00_Descriptions.txt58 ns-udpserver (binary)
62 ns-udpclient (binary)
66 ns-tcpserver (binary)
70 ns-tcpclient (binary)
74 ns-icmp_redirector (binary)
80 ns-icmpv4_sender (binary)
84 ns-icmpv6_sender (binary)
88 ns-igmp_querier (binary)
91 ns-mcast_join (binary)
94 ns-mcast_receiver (binary)
[all …]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DDataChannel.java70 public final boolean binary; field in DataChannel.Buffer
72 public Buffer(ByteBuffer data, boolean binary) { in Buffer() argument
74 this.binary = binary; in Buffer()
137 return sendNative(data, buffer.binary); in send()
139 private native boolean sendNative(byte[] data, boolean binary); in sendNative() argument
/external/flatbuffers/src/
Dutil.cpp26 bool LoadFileRaw(const char *name, bool binary, std::string *buf) { in LoadFileRaw() argument
28 std::ifstream ifs(name, binary ? std::ifstream::binary : std::ifstream::in); in LoadFileRaw()
30 if (binary) { in LoadFileRaw()
49 bool LoadFile(const char *name, bool binary, std::string *buf) { in LoadFile() argument
51 return g_load_file_function(name, binary, buf); in LoadFile()
/external/autotest/client/cros/audio/
Daudio_data.py63 def __init__(self, binary, channel, sample_format): argument
75 if binary:
76 self.read_binary(binary)
79 def read_binary(self, binary): argument
95 np_array = np.fromstring(binary, dtype=np_dtype)
/external/boringssl/src/ssl/test/runner/
Dchacha20_poly1305.go60 binary.LittleEndian.PutUint32(out[i*4:i*4+4], workingState[i]+state[i])
86 state[4+i] = binary.LittleEndian.Uint32(key[i*4 : i*4+4])
91 state[14] = binary.LittleEndian.Uint32(nonce[0:4])
92 state[15] = binary.LittleEndian.Uint32(nonce[4:8])
94 state[13] = binary.LittleEndian.Uint32(nonce[0:4])
95 state[14] = binary.LittleEndian.Uint32(nonce[4:8])
96 state[15] = binary.LittleEndian.Uint32(nonce[8:12])
151 binary.LittleEndian.PutUint64(out, uint64(len(additionalData)))
153 binary.LittleEndian.PutUint64(out, uint64(len(ciphertext)))
/external/curl/tests/data/
Dtest356 --data-binary
26 HTTP POST binary data with embedded NUL
29 http://%HOSTIP:%HTTPPORT/we/want/35 --data-binary @log/test35.txt
32 This� is binary data with an embedded NUL byte
48 This� is binary data with an embedded NUL byte
/external/webrtc/talk/app/webrtc/
Ddatachannelinterface.h70 DataBuffer(const rtc::Buffer& data, bool binary) in DataBuffer()
72 binary(binary) { in DataBuffer()
77 binary(false) { in DataBuffer()
85 bool binary; member
/external/libexif/
DREADME-Win32.txt1 If this is a combined source/binary distribution tree, then you can find
3 * the binary DLL in the subdirectory binary/bin/
4 * the include files in the subdirectory binary/include/
29 If you want to build a combined source/binary distribution tarball/zipfile,
/external/syslinux/gnu-efi/gnu-efi-3.0/debian/
Drules89 binary-indep: build install
93 binary-arch: build install
108 binary: binary-indep binary-arch target
109 .PHONY: build clean binary-indep binary-arch binary install configure
/external/llvm/docs/tutorial/
DLangImpl06.rst51 binary operators. An example of this is:
63 def binary> 10 (LHS RHS)
67 def binary| 5 (LHS RHS)
76 def binary= 9 (LHS RHS)
84 implementing support for user-defined binary operators and adding unary
90 Adding support for user-defined binary operators is pretty simple with
91 our current framework. We'll first add support for the unary/binary
109 if (IdentifierStr == "binary")
115 This just adds lexer support for the unary and binary keywords, like we
117 about our current AST, is that we represent binary operators with full
[all …]

12345678910>>...97