Home
last modified time | relevance | path

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

/external/pdfium/fxbarcode/common/
DBC_CommonByteArray.cpp29 m_bytes = nullptr; in CBC_CommonByteArray()
35 m_bytes = FX_Alloc(uint8_t, size); in CBC_CommonByteArray()
36 memset(m_bytes, 0, size); in CBC_CommonByteArray()
41 m_bytes = FX_Alloc(uint8_t, size); in CBC_CommonByteArray()
42 memcpy(m_bytes, byteArray, size); in CBC_CommonByteArray()
46 FX_Free(m_bytes); in ~CBC_CommonByteArray()
49 return m_bytes[index] & 0xff; in At()
52 m_bytes[index] = (uint8_t)value; in Set()
65 m_bytes[m_index] = (uint8_t)value; in AppendByte()
69 if (!m_bytes || m_size < capacity) { in Reserve()
[all …]
DBC_CommonByteMatrix.cpp29 m_bytes = nullptr; in CBC_CommonByteMatrix()
32 m_bytes = FX_Alloc2D(uint8_t, m_height, m_width); in Init()
33 memset(m_bytes, 0xff, m_height * m_width); in Init()
36 FX_Free(m_bytes); in ~CBC_CommonByteMatrix()
45 return m_bytes[y * m_width + x]; in Get()
48 m_bytes[y * m_width + x] = (uint8_t)value; in Set()
51 m_bytes[y * m_width + x] = value; in Set()
58 m_bytes[y * m_width + x] = value; in clear()
63 return m_bytes; in GetArray()
DBC_CommonByteMatrix.h30 uint8_t* m_bytes;
DBC_CommonByteArray.h35 uint8_t* m_bytes; variable
/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/capstone/bindings/vb6/
DCInstruction.cls51 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/
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/boringssl/src/crypto/hrss/
Dhrss.c2052 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/
DvktMemoryMappingTests.cpp191 , 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::__anond26d821d0111::ReferenceMemory