Lines Matching refs:length
71 int DynChunk::Emit(const uint8_t *data, size_t length)
73 if (UNLIKELY((size_ + length) > allocatedSize_)) {
74 if (Expand(size_ + length) != 0) {
80 length, data, length) != EOK) {
83 size_ += length;
92 int DynChunk::EmitSelf(size_t offset, size_t length)
94 if (UNLIKELY((size_ + length) > allocatedSize_)) {
95 if (Expand(size_ + length) != 0) {
101 length,
103 length) != EOK) {
106 size_ += length;