Home
last modified time | relevance | path

Searched refs:data_ofs (Results 1 – 4 of 4) sorted by relevance

/third_party/libcoap/src/
Dcoap_ws.c721 session->ws->data_ofs = ret; in coap_ws_read()
745 session->ws->data_ofs = bytes_size; in coap_ws_read()
759 session->ws->data_ofs = 0; in coap_ws_read()
765 &data[session->ws->data_ofs], in coap_ws_read()
766 session->ws->data_size - session->ws->data_ofs); in coap_ws_read()
769 session->ws->data_ofs += ret; in coap_ws_read()
770 if (session->ws->data_ofs == session->ws->data_size) { in coap_ws_read()
777 session->ws->data_ofs = 0; in coap_ws_read()
784 session->ws->data_size, session->ws->data_ofs); in coap_ws_read()
/third_party/ffmpeg/libavformat/
Dwavdec.c351 int64_t next_tag_ofs, data_ofs = -1; in wav_read_header() local
458 data_ofs = avio_tell(pb); in wav_read_header()
603 if (data_ofs < 0) { in wav_read_header()
608 avio_seek(pb, data_ofs, SEEK_SET); in wav_read_header()
867 int64_t size, data_ofs = 0; in w64_read_header() local
919 data_ofs = avio_tell(pb); in w64_read_header()
966 if (!data_ofs) in w64_read_header()
975 avio_seek(pb, data_ofs, SEEK_SET); in w64_read_header()
/third_party/libcoap/include/coap3/
Dcoap_ws_internal.h56 size_t data_ofs; /**< Offset into user provided buffer */ member
/third_party/ntfs-3g/ntfsprogs/
Dmkntfs.c3376 int data_ofs, idx_size, err; in index_obj_id_insert() local
3386 data_ofs = (sizeof(INDEX_ENTRY_HEADER) + sizeof(GUID) + 7) & ~7; in index_obj_id_insert()
3387 idx_size = (data_ofs + sizeof(OBJ_ID_INDEX_DATA) + 7) & ~7; in index_obj_id_insert()
3391 idx_entry_new->data_offset = cpu_to_le16(data_ofs); in index_obj_id_insert()
3397 oi = (OBJ_ID_INDEX_DATA*)((u8*)idx_entry_new + data_ofs); in index_obj_id_insert()