Home
last modified time | relevance | path

Searched refs:m_bytes (Results 1 – 17 of 17) sorted by relevance

/external/pdfium/xfa/src/fxbarcode/common/
DBC_CommonByteArray.cpp28 m_bytes = NULL; in CBC_CommonByteArray()
34 m_bytes = FX_Alloc(uint8_t, size); in CBC_CommonByteArray()
35 FXSYS_memset(m_bytes, 0, size); in CBC_CommonByteArray()
40 m_bytes = FX_Alloc(uint8_t, size); in CBC_CommonByteArray()
41 FXSYS_memcpy(m_bytes, byteArray, size); in CBC_CommonByteArray()
45 if (m_bytes != NULL) { in ~CBC_CommonByteArray()
46 FX_Free(m_bytes); in ~CBC_CommonByteArray()
47 m_bytes = NULL; in ~CBC_CommonByteArray()
53 return m_bytes[index] & 0xff; in At()
56 m_bytes[index] = (uint8_t)value; in Set()
[all …]
DBC_CommonByteMatrix.cpp28 m_bytes = NULL; in CBC_CommonByteMatrix()
31 m_bytes = FX_Alloc2D(uint8_t, m_height, m_width); in Init()
32 FXSYS_memset(m_bytes, 0xff, m_height * m_width); in Init()
35 if (m_bytes != NULL) { in ~CBC_CommonByteMatrix()
36 FX_Free(m_bytes); in ~CBC_CommonByteMatrix()
37 m_bytes = NULL; in ~CBC_CommonByteMatrix()
47 return m_bytes[y * m_width + x]; in Get()
50 m_bytes[y * m_width + x] = (uint8_t)value; in Set()
53 m_bytes[y * m_width + x] = value; in Set()
60 m_bytes[y * m_width + x] = value; in clear()
[all …]
DBC_CommonBitSource.cpp26 m_bytes.Copy((*bytes)); in CBC_CommonBitSource()
42 result = (m_bytes[m_byteOffset] & mask) >> bitsToNotRead; in ReadBits()
52 result = (result << 8) | (m_bytes[m_byteOffset] & 0xff); in ReadBits()
60 ((m_bytes[m_byteOffset] & mask) >> bitsToNotRead); in ReadBits()
67 return 8 * (m_bytes.GetSize() - m_byteOffset) - m_bitOffset; in Available()
DBC_CommonBitSource.h18 CFX_ByteArray m_bytes;
DBC_CommonByteMatrix.h24 uint8_t* m_bytes;
DBC_CommonByteArray.h13 uint8_t* m_bytes; variable
/external/lldb/source/Core/
DEvent.cpp107 m_bytes() in EventDataBytes()
112 m_bytes() in EventDataBytes()
118 m_bytes() in EventDataBytes()
143 size_t num_printable_chars = std::count_if (m_bytes.begin(), m_bytes.end(), isprint); in Dump()
144 if (num_printable_chars == m_bytes.size()) in Dump()
146 s->Printf("\"%s\"", m_bytes.c_str()); in Dump()
148 else if (m_bytes.size() > 0) in Dump()
151 data.SetData(&m_bytes[0], m_bytes.size(), lldb::endian::InlHostByteOrder()); in Dump()
152 data.Dump(s, 0, eFormatBytes, 1, m_bytes.size(), 32, LLDB_INVALID_ADDRESS, 0, 0); in Dump()
159 if (m_bytes.empty()) in GetBytes()
[all …]
DCommunication.cpp41 m_bytes(), in Communication()
277 if (m_bytes.size() > 0) in GetCachedBytes()
282 return m_bytes.size(); in GetCachedBytes()
284 const size_t len = std::min<size_t>(dst_len, m_bytes.size()); in GetCachedBytes()
286 ::memcpy (dst, m_bytes.c_str(), len); in GetCachedBytes()
287 m_bytes.erase(m_bytes.begin(), m_bytes.begin() + len); in GetCachedBytes()
311 m_bytes.append ((const char *)bytes, len); in AppendBytesToCache()
/external/emma/core/java12/com/vladium/jcd/parser/
DClassDefParser.java95 m_bytes = bytes; in classParser()
137 final long magic = m_bytes.readU4 (); in magic()
146 final int minor_version = m_bytes.readU2 (); in version()
147 final int major_version = m_bytes.readU2 (); in version()
161 final int constant_pool_count = m_bytes.readU2 (); in constant_pool()
168 final CONSTANT_info cp_info = CONSTANT_info.new_CONSTANT_info (m_bytes); in constant_pool()
181 final int _access_flags = m_bytes.readU2 (); in access_flags()
189 final int _class_index = m_bytes.readU2 (); in this_class()
198 final int _class_index = m_bytes.readU2 (); in super_class()
207 final int _interfaces_count = m_bytes.readU2 (); in interfaces()
[all …]
/external/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunication.cpp356 m_bytes.append ((const char *)src, src_len); in CheckForPacket()
360 if (!m_bytes.empty()) in CheckForPacket()
370 switch (m_bytes[0]) in CheckForPacket()
381 size_t hash_pos = m_bytes.find('#'); in CheckForPacket()
384 if (hash_pos + 2 < m_bytes.size()) in CheckForPacket()
410 const size_t bytes_len = m_bytes.size(); in CheckForPacket()
415 switch (m_bytes[idx]) in CheckForPacket()
430 __FUNCTION__, idx, idx, m_bytes.c_str()); in CheckForPacket()
431 m_bytes.erase(0, idx); in CheckForPacket()
445 assert (content_length <= m_bytes.size()); in CheckForPacket()
[all …]
/external/emma/core/java12/com/vladium/emma/rt/
DClassPathCacheEntry.java24 public final byte [] m_bytes; field in ClassPathCacheEntry
36 m_bytes = bytes; in ClassPathCacheEntry()
DInstrClassLoader.java213 bytes = entry.m_bytes; in findClass()
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DCommunicationKDP.cpp302 m_bytes.append ((const char *)src, src_len); in CheckForPacket()
306 const size_t bytes_available = m_bytes.size(); in CheckForPacket()
309 packet.SetData (&m_bytes[0], bytes_available, m_byte_order); in CheckForPacket()
367 packet.SetData (DataBufferSP (new DataBufferHeap (&m_bytes[0], length))); in CheckForPacket()
368 m_bytes.erase (0, length); in CheckForPacket()
387 (uint8_t)m_bytes[0]); in CheckForPacket()
388 m_bytes.erase(0, 1); in CheckForPacket()
/external/lldb/include/lldb/Core/
DEvent.h113 std::string m_bytes;
DCommunication.h353 std::string m_bytes; ///< A buffer to cache bytes read in the ReadThread function. variable
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryMappingTests.cpp117 , m_bytes (size, 0xDEu) in ReferenceMemory()
126 m_bytes[pos] = value; in write()
134 || m_bytes[pos] == value; in read()
136 m_bytes[pos] = value; in read()
145 || m_bytes[pos] == value; in modifyXor()
147 m_bytes[pos] = value ^ mask; in modifyXor()
181 vector<deUint8> m_bytes; member in vkt::memory::__anon76caf2550111::ReferenceMemory
/external/lldb/source/Plugins/Disassembler/llvm/
DDisassemblerLLVMC.cpp500 const uint8_t *m_bytes; member in __anon3d056e540111::LLDBDisasmMemoryObject
505 m_bytes(bytes), m_size(size), m_base_PC(basePC) {} in LLDBDisasmMemoryObject()
513 *byte = m_bytes[addr - m_base_PC]; in readByte()