HomeSort by: relevance | last modified time | path
    Searched defs:gws (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/dev/pci/
agp_sis.c 154 int gws; local in function:agp_sis_get_aperture
157 * The aperture size is equal to 4M<<gws.
159 gws = (pci_conf_read(sc->as_pc, sc->as_tag, AGP_SIS_WINCTRL)&0x70) >> 4;
160 return (4*1024*1024) << gws;
166 int gws; local in function:agp_sis_set_aperture
178 gws = ffs(aperture / 4*1024*1024) - 1;
182 reg |= gws << 4;
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_gds.h 42 uint32_t gws; member in struct:amdgpu_gds_reg_offset
amdgpu_cs.c 526 struct amdgpu_bo *gws; local in function:amdgpu_cs_parser_bos
626 gws = p->bo_list->gws_obj;
642 if (gws) {
643 p->job->gws_base = amdgpu_bo_gpu_offset(gws) >> PAGE_SHIFT;
644 p->job->gws_size = amdgpu_bo_size(gws) >> PAGE_SHIFT;
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_priv.h 171 * Whether MEC FW support GWS barriers
307 /* Global GWS resource shared b/t processes*/
308 void *gws; member in struct:kfd_dev
482 * @gws: Pointing to gws kgd_mem if this is a gws control queue; NULL
506 void *gws; member in struct:queue
914 void *gws);

Completed in 16 milliseconds