Searched refs:m_bytes (Results 1 – 8 of 8) sorted by relevance
/external/emma/core/java12/com/vladium/jcd/parser/ |
D | ClassDefParser.java | 95 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/pdfium/fxbarcode/common/ |
D | BC_CommonByteMatrix.cpp | 30 m_bytes = pdfium::Vector2D<uint8_t>(m_height, m_width); in CBC_CommonByteMatrix() 37 return m_bytes[y * m_width + x]; in Get() 41 m_bytes[y * m_width + x] = (uint8_t)value; in Set() 45 m_bytes[y * m_width + x] = value; in Set() 49 std::fill(std::begin(m_bytes), std::end(m_bytes), value); in clear()
|
D | BC_CommonByteMatrix.h | 24 pdfium::span<const uint8_t> GetArray() const { return m_bytes; } in GetArray() 34 std::vector<uint8_t> m_bytes; variable
|
/external/capstone/bindings/vb6/ |
D | CInstruction.cls | 51 Private m_bytes() As Byte 65 For i = 0 To UBound(m_bytes) 66 b = b & hhex(m_bytes(i)) & " " 112 m_bytes() = inst.bytes 113 ReDim Preserve m_bytes(size - 1)
|
/external/emma/core/java12/com/vladium/emma/rt/ |
D | ClassPathCacheEntry.java | 24 public final byte [] m_bytes; field in ClassPathCacheEntry 36 m_bytes = bytes; in ClassPathCacheEntry()
|
D | InstrClassLoader.java | 213 bytes = entry.m_bytes; in findClass()
|
/external/boringssl/src/crypto/hrss/ |
D | hrss.c | 2052 uint8_t m_bytes[HRSS_POLY3_BYTES], r_bytes[HRSS_POLY3_BYTES]; in HRSS_encap() local 2053 poly_marshal_mod3(m_bytes, &m); in HRSS_encap() 2059 SHA256_Update(&hash_ctx, m_bytes, sizeof(m_bytes)); in HRSS_encap() 2164 uint8_t m_bytes[HRSS_POLY3_BYTES]; in HRSS_decap() local 2166 poly_marshal_mod3(m_bytes, &m); in HRSS_decap() 2175 SHA256_Update(&hash_ctx, m_bytes, sizeof(m_bytes)); in HRSS_decap()
|
/external/deqp/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryMappingTests.cpp | 191 , m_bytes (size, 0xDEu) in ReferenceMemory() 200 m_bytes[pos] = value; in write() 208 || m_bytes[pos] == value; in read() 210 m_bytes[pos] = value; in read() 219 || m_bytes[pos] == value; in modifyXor() 221 m_bytes[pos] = value ^ mask; in modifyXor() 258 vector<deUint8> m_bytes; member in vkt::memory::__anonccaf675f0111::ReferenceMemory
|