Home
last modified time | relevance | path

Searched refs:data_ofs (Results 1 - 17 of 17) sorted by relevance

/third_party/libcoap/src/
H A 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()
/kernel/linux/linux-5.10/drivers/crypto/
H A Domap-aes.h51 #define AES_REG_DATA_N(dd, x) ((dd)->pdata->data_ofs + ((x) * 0x04))
141 u32 data_ofs; member
H A Domap-aes.c798 .data_ofs = 0x34,
829 .data_ofs = 0x34,
849 .data_ofs = 0x60,
H A Domap-des.c61 #define DES_REG_DATA_N(dd, x) ((dd)->pdata->data_ofs + ((x) * 0x04))
116 u32 data_ofs; member
823 .data_ofs = 0x28,
/kernel/linux/linux-6.6/drivers/crypto/
H A Domap-aes.h50 #define AES_REG_DATA_N(dd, x) ((dd)->pdata->data_ofs + ((x) * 0x04))
139 u32 data_ofs; member
H A Domap-aes.c798 .data_ofs = 0x34,
829 .data_ofs = 0x34,
849 .data_ofs = 0x60,
H A Domap-des.c57 #define DES_REG_DATA_N(dd, x) ((dd)->pdata->data_ofs + ((x) * 0x04))
111 u32 data_ofs; member
814 .data_ofs = 0x28,
/third_party/ffmpeg/libavformat/
H A 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
918 data_ofs = avio_tell(pb); in w64_read_header()
965 if (!data_ofs) in w64_read_header()
974 avio_seek(pb, data_ofs, SEEK_SET); in w64_read_header()
/third_party/libcoap/include/coap3/
H A Dcoap_ws_internal.h56 size_t data_ofs; /**< Offset into user provided buffer */ member
/kernel/linux/linux-5.10/include/xen/interface/io/
H A Ddisplif.h464 * | data_ofs | 44
509 * data_ofs - uint32_t, offset of the data in the buffer, octets
522 uint32_t data_ofs; member
/kernel/linux/linux-6.6/include/xen/interface/io/
H A Ddisplif.h447 * | data_ofs | 44
492 * data_ofs - uint32_t, offset of the data in the buffer, octets
505 uint32_t data_ofs; member
/kernel/linux/linux-5.10/fs/f2fs/
H A Dfile.c407 loff_t data_ofs = offset; in f2fs_seek_block() local
420 data_ofs = isize; in f2fs_seek_block()
423 data_ofs = offset; in f2fs_seek_block()
430 for (; data_ofs < isize; data_ofs = (loff_t)pgofs << PAGE_SHIFT) { in f2fs_seek_block()
450 data_ofs = (loff_t)pgofs << PAGE_SHIFT) { in f2fs_seek_block()
474 if (whence == SEEK_HOLE && data_ofs > isize) in f2fs_seek_block()
475 data_ofs = isize; in f2fs_seek_block()
477 return vfs_setpos(file, data_ofs, maxbytes); in f2fs_seek_block()
/kernel/linux/linux-6.6/fs/f2fs/
H A Dfile.c417 loff_t data_ofs = offset; in f2fs_seek_block() local
430 data_ofs = isize; in f2fs_seek_block()
433 data_ofs = offset; in f2fs_seek_block()
440 for (; data_ofs < isize; data_ofs = (loff_t)pgofs << PAGE_SHIFT) { in f2fs_seek_block()
460 data_ofs = (loff_t)pgofs << PAGE_SHIFT) { in f2fs_seek_block()
484 if (whence == SEEK_HOLE && data_ofs > isize) in f2fs_seek_block()
485 data_ofs = isize; in f2fs_seek_block()
487 return vfs_setpos(file, data_ofs, maxbytes); in f2fs_seek_block()
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/
H A Dintel_bios.c199 size_t data_ofs = (const u8 *)data - (const u8 *)bdb; in get_lvds_fp_timing() local
206 if (ofs < data_ofs || in get_lvds_fp_timing()
207 ofs + sizeof(struct lvds_fp_timing) > data_ofs + data_size) in get_lvds_fp_timing()
/kernel/linux/linux-5.10/drivers/gpu/drm/xen/
H A Dxen_drm_front.c198 req->op.dbuf_create.data_ofs = offset; in xen_drm_front_dbuf_create()
/kernel/linux/linux-6.6/drivers/gpu/drm/xen/
H A Dxen_drm_front.c197 req->op.dbuf_create.data_ofs = offset; in xen_drm_front_dbuf_create()
/third_party/ntfs-3g/ntfsprogs/
H A 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()

Completed in 34 milliseconds