Lines Matching defs:r_length
490 * @param r_length Remaining length after fixed header
495 u8_t fqos, u8_t fretain, u16_t r_length)
501 mqtt_output_append_u8(rb, (r_length & 0x7f) | (r_length >= 128 ? 0x80 : 0));
502 r_length >>= 7;
503 } while (r_length > 0);
510 * @param r_length Remaining length after fixed header
514 mqtt_output_check_space(struct mqtt_ringbuf_t *rb, u16_t r_length)
517 u16_t total_len = 1 + r_length;
524 r_length >>= 7;
525 } while (r_length > 0);