Home
last modified time | relevance | path

Searched refs:cpy_len (Results 1 – 3 of 3) sorted by relevance

/minix/minix/lib/liblwip/dist/src/apps/mqtt/
H A Dmqtt.c812 u16_t cpy_len, cpy_start, buffer_space; in mqtt_parse_incoming() local
817 cpy_len = (u16_t)LWIP_MIN((u16_t)(p->tot_len - in_offset), msg_rem_len); in mqtt_parse_incoming()
821 if (cpy_len > buffer_space) { in mqtt_parse_incoming()
822 cpy_len = buffer_space; in mqtt_parse_incoming()
824 pbuf_copy_partial(p, client->rx_buffer+cpy_start, cpy_len, in_offset); in mqtt_parse_incoming()
827 client->msg_idx += cpy_len; in mqtt_parse_incoming()
828 in_offset += cpy_len; in mqtt_parse_incoming()
829 msg_rem_len -= cpy_len; in mqtt_parse_incoming()
831 …parse_incoming: msg_idx: %d, cpy_len: %d, remaining %d\n", client->msg_idx, cpy_len, msg_rem_len)); in mqtt_parse_incoming()
832 if (msg_rem_len == 0 || cpy_len == buffer_space) { in mqtt_parse_incoming()
[all …]
/minix/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn1_gen.c161 int cpy_len; in generate_v3() local
197 cpy_len = i2d_ASN1_TYPE(ret, &orig_der); in generate_v3()
208 cpy_len); in generate_v3()
212 cpy_len -= cpy_start - orig_der; in generate_v3()
230 len = cpy_len; in generate_v3()
275 memcpy(p, cpy_start, cpy_len); in generate_v3()
/minix/sys/fs/udf/
H A Dudf_subr.c1284 int ext, minext, extlen, cnt, cpy_len, dscr_type; in udf_loose_lvint_history() local
1336 cpy_len = MIN(in_len - in_pos, out_len - out_wpos); in udf_loose_lvint_history()
1337 cpy_len = MIN(cpy_len, in_len - in_trace->pos); in udf_loose_lvint_history()
1338 if (cpy_len == 0) in udf_loose_lvint_history()
1342 DPRINTF(VOLUMES, ("\treading %d lvid descriptors\n", cpy_len)); in udf_loose_lvint_history()
1343 for (cnt = 0; cnt < cpy_len; cnt++) { in udf_loose_lvint_history()
1375 for (cnt = 0; cnt < cpy_len; cnt++) in udf_loose_lvint_history()
1386 for (cnt = 0; cnt < cpy_len; cnt++) { in udf_loose_lvint_history()
1411 for (cnt = 0; cnt < cpy_len; cnt++) { in udf_loose_lvint_history()
1418 in_pos += cpy_len; in udf_loose_lvint_history()
[all …]