MCPcopy Create free account
hub / github.com/apache/qpid-proton / pn_encoder_writef128

Function pn_encoder_writef128

c/src/core/encoder.c:198–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198static inline void pn_encoder_writef128(pn_encoder_t *encoder, char *value) {
199 if (pn_encoder_remaining(encoder) >= 16) {
200 char* position = encoder->output+encoder->position;
201 memmove(position, value, 16);
202 }
203 encoder->position += 16;
204}
205
206static inline void pn_encoder_writev8(pn_encoder_t *encoder, const pn_bytes_t *value)
207{

Callers 1

pni_encoder_enterFunction · 0.85

Calls 1

pn_encoder_remainingFunction · 0.85

Tested by

no test coverage detected