Home
last modified time | relevance | path

Searched refs:resid (Results 1 - 14 of 14) sorted by relevance

/third_party/mesa3d/src/microsoft/clc/
H A Dcompute_test.h76 unsigned resid) in add()
83 ranges.back().BaseShaderRegister + ranges.back().NumDescriptors == resid) { in add()
92 range.BaseShaderRegister = resid; in add()
147 add_uav_resource(Resources &resources, unsigned spaceid, unsigned resid,
152 add_cbv_resource(Resources &resources, unsigned spaceid, unsigned resid,
H A Dcompute_test.cpp420 unsigned spaceid, unsigned resid, in add_uav_resource()
440 resources.add(res, D3D12_DESCRIPTOR_RANGE_TYPE_UAV, spaceid, resid); in add_uav_resource()
446 unsigned spaceid, unsigned resid, in add_cbv_resource()
460 resources.add(res, D3D12_DESCRIPTOR_RANGE_TYPE_CBV, spaceid, resid); in add_cbv_resource()
419 add_uav_resource(ComputeTest::Resources &resources, unsigned spaceid, unsigned resid, const void *data, size_t num_elems, size_t elem_size) add_uav_resource() argument
445 add_cbv_resource(ComputeTest::Resources &resources, unsigned spaceid, unsigned resid, const void *data, size_t size) add_cbv_resource() argument
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_resource.cpp936 get_subresource_id(struct d3d12_resource *res, unsigned resid, in get_subresource_id() argument
952 return resid * resource_stride + z * layer_stride + in get_subresource_id()
958 struct d3d12_transfer *trans, unsigned resid, unsigned z) in fill_texture_location()
961 int subres = get_subresource_id(res, resid, z, trans->base.b.level); in fill_texture_location()
975 unsigned resid, unsigned z) in fill_buffer_location()
984 unsigned sub_resid = get_subresource_id(res, resid, z, trans->base.b.level); in fill_buffer_location()
1043 int resid) in transfer_buf_to_image_part()
1056 copy_info.src_loc = fill_buffer_location(ctx, res, staging_res, trans, depth, resid, z); in transfer_buf_to_image_part()
1060 copy_info.dst_loc = fill_texture_location(res, trans, resid, z); in transfer_buf_to_image_part()
1079 struct d3d12_transfer *trans, int resid) in transfer_buf_to_image()
957 fill_texture_location(struct d3d12_resource *res, struct d3d12_transfer *trans, unsigned resid, unsigned z) fill_texture_location() argument
970 fill_buffer_location(struct d3d12_context *ctx, struct d3d12_resource *res, struct d3d12_resource *staging_res, struct d3d12_transfer *trans, unsigned depth, unsigned resid, unsigned z) fill_buffer_location() argument
1038 transfer_buf_to_image_part(struct d3d12_context *ctx, struct d3d12_resource *res, struct d3d12_resource *staging_res, struct d3d12_transfer *trans, int z, int depth, int start_z, int dest_z, int resid) transfer_buf_to_image_part() argument
1076 transfer_buf_to_image(struct d3d12_context *ctx, struct d3d12_resource *res, struct d3d12_resource *staging_res, struct d3d12_transfer *trans, int resid) transfer_buf_to_image() argument
1099 transfer_image_part_to_buf(struct d3d12_context *ctx, struct d3d12_resource *res, struct d3d12_resource *staging_res, struct d3d12_transfer *trans, unsigned resid, int z, int start_layer, int start_box_z, int depth) transfer_image_part_to_buf() argument
1140 transfer_image_to_buf(struct d3d12_context *ctx, struct d3d12_resource *res, struct d3d12_resource *staging_res, struct d3d12_transfer *trans, unsigned resid) transfer_image_to_buf() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_fetch.h159 QueryBufferSizeInstr(const RegisterVec4& dst, const RegisterVec4::Swizzle& swizzle, uint32_t resid);
167 uint32_t resid, PRegister res_offset, EVTXDataFormat data_format);
H A Dsfn_instr_fetch.cpp508 uint32_t resid): in QueryBufferSizeInstr()
517 resid, in QueryBufferSizeInstr()
546 uint32_t resid, PRegister res_offset, EVTXDataFormat data_format): in LoadFromBuffer()
548 data_format, vtx_nf_scaled, vtx_es_none, resid, res_offset) in LoadFromBuffer()
506 QueryBufferSizeInstr(const RegisterVec4& dst, const RegisterVec4::Swizzle& dst_swz, uint32_t resid) QueryBufferSizeInstr() argument
544 LoadFromBuffer(const RegisterVec4& dst, const RegisterVec4::Swizzle& dst_swizzle, PRegister addr, uint32_t addr_offset, uint32_t resid, PRegister res_offset, EVTXDataFormat data_format) LoadFromBuffer() argument
/third_party/FreeBSD/sys/dev/usb/
H A Dusb_dev.c1152 int resid; in usb_read() local
1167 resid = buflen; in usb_read()
1186 while (resid > 0) { in usb_read()
1211 io_len = MIN(m->cur_data_len, resid); in usb_read()
1242 resid -= io_len; in usb_read()
1260 int resid; in usb_write() local
1277 resid = buflen; in usb_write()
1317 if (io_len > resid) in usb_write()
1318 io_len = resid; in usb_write()
1323 if (io_len > resid) in usb_write()
[all...]
/third_party/musl/porting/liteos_m_iccarm/kernel/include/scsi/
H A Dsg.h84 int resid; member
/third_party/musl/porting/uniproton/kernel/include/scsi/
H A Dsg.h84 int resid; member
/third_party/musl/porting/liteos_m/kernel/include/scsi/
H A Dsg.h84 int resid; member
/third_party/musl/include/scsi/
H A Dsg.h84 int resid; member
/third_party/FreeBSD/sys/dev/usb/storage/
H A Dumass.c244 uint32_t resid; /* Transfer residual length: 2's comp */ member
2148 umass_ccb->csio.resid = residue; in umass_cam_cb()
2818 if (!LOS_IsUserAddressRange((vaddr_t)buf, blocksize * nsectors - sc->data_ccb->csio.resid)) { in umass_read10()
2819 ret = memcpy_s(buf, nsectors * blocksize, data_buf, blocksize * nsectors - sc->data_ccb->csio.resid); in umass_read10()
2821 ret = ((nsectors * blocksize >= blocksize * nsectors - sc->data_ccb->csio.resid) ? in umass_read10()
2822 LOS_ArchCopyToUser(buf, data_buf, blocksize * nsectors - sc->data_ccb->csio.resid) : ERANGE_AND_RESET); in umass_read10()
2877 if (!LOS_IsUserAddressRange((vaddr_t)buf, blocksize * nsectors - sc->data_ccb->csio.resid)) { in umass_read16()
2878 ret = memcpy_s(buf, nsectors * blocksize, data_buf, blocksize * nsectors - sc->data_ccb->csio.resid); in umass_read16()
2880 ret = ((nsectors * blocksize >= blocksize * nsectors - sc->data_ccb->csio.resid) ? in umass_read16()
2881 LOS_ArchCopyToUser(buf, data_buf, blocksize * nsectors - sc->data_ccb->csio.resid) in umass_read16()
[all...]
/third_party/ltp/testcases/kernel/fs/scsi/ltpscsi/
H A Dscsimain.c258 int resid; member
2083 sum_of_resids += io_hdr.resid; in sg_read()
6196 sum_of_resids += io_hdr.resid; in sg_read2()
7041 if (rep->dio_incomplete || rep->resid) { in sg_in_operation()
7046 clp->sum_of_resids += rep->resid; in sg_in_operation()
7109 if (rep->dio_incomplete || rep->resid) { in sg_out_operation()
7114 clp->sum_of_resids += rep->resid; in sg_out_operation()
7246 rep->resid = hp->resid; in sg_finish_io()
/third_party/backends/sanei/
H A Dsanei_scsi.c2438 /* Sometimes the Linux SCSI system reports bogus resid values. in sanei_scsi_req_wait()
2446 *req->dst_len -= req->sgdata.sg3.hdr.resid; in sanei_scsi_req_wait()
2450 if (req->sgdata.sg3.hdr.resid) in sanei_scsi_req_wait()
2453 "sanei_scsi_req_wait: SG driver returned resid %i\n", in sanei_scsi_req_wait()
2454 req->sgdata.sg3.hdr.resid); in sanei_scsi_req_wait()
4809 *dst_size = scmd.size - scmd.resid; in scsi_cmd()
/third_party/skia/third_party/skcms/
H A Dskcms.cc2067 float resid = rg_nonlinear(x,curve,tf, dfdP);
2073 rhs.vals[r] += dfdP[r] * resid;

Completed in 30 milliseconds