Home
last modified time | relevance | path

Searched refs:mSize (Results 1 – 2 of 2) sorted by relevance

/trusty/user/base/experimental/lib/tidl/include/lib/tidl/
Dtidl.h140 Payload() : mData(nullptr), mSize(0) {} in Payload()
141 Payload(uint8_t* data, uint32_t size) : mData(data), mSize(size) {} in Payload()
145 Payload(Payload&& other) : mData(other.mData), mSize(other.mSize) { in Payload()
151 mSize = other.mSize;
160 uint32_t size() const { return mSize; } in size()
162 void resize(uint32_t size) { mSize = size; } in resize()
166 uint32_t mSize; variable
170 mSize = 0; in reset()
176 static const uint32_t mSize = S; variable
200 uint32_t size() const { return mSize; } in size()
/trusty/user/base/lib/apploader_package/include/apploader/
Dcbor.h248 size_t size() const { return mSize; } in size()
260 if (mSize == 0 && !mArr) { in resize()
263 mSize = mArr ? /* success */ count : /* fail */ 0; in resize()
264 } else if (count <= mSize) { in resize()
265 mSize = count; in resize()
274 assert(count <= mSize); in resize()
275 mSize = count; in resize()
282 size_t mSize = 0; variable