Lines Matching refs:adFn
1568 AddressFn adFn = sAddressingTable[imageSampler]; in get_integer_coords_offset() local
1681 outX = adFn(floorf(x), width); in get_integer_coords_offset()
1692 outY = adFn(floorf(y), height); in get_integer_coords_offset()
1697 if (height != 0) outY = adFn(floorf(y), height); in get_integer_coords_offset()
1698 if (depth != 0) outZ = adFn(floorf(z), depth); in get_integer_coords_offset()
1866 AddressFn adFn = sAddressingTable[imageSampler]; in sample_image_pixel_float_offset() local
1971 ix = adFn(floorf(x), width_lod); in sample_image_pixel_float_offset()
1985 iy = adFn(floorf(y), height_lod); in sample_image_pixel_float_offset()
1994 iy = adFn(floorf(y), height_lod); in sample_image_pixel_float_offset()
1996 iz = adFn(floorf(z), depth_lod); in sample_image_pixel_float_offset()
2050 int x1 = adFn(floorf(x - 0.5f), width); in sample_image_pixel_float_offset()
2052 int x2 = adFn(floorf(x - 0.5f) + 1, width); in sample_image_pixel_float_offset()
2058 y1 = adFn(floorf(y - 0.5f), height); in sample_image_pixel_float_offset()
2059 y2 = adFn(floorf(y - 0.5f) + 1, height); in sample_image_pixel_float_offset()
2150 int x1 = adFn(floorf(x - 0.5f), width_lod); in sample_image_pixel_float_offset()
2151 int y1 = adFn(floorf(y - 0.5f), height_lod); in sample_image_pixel_float_offset()
2152 int z1 = adFn(floorf(z - 0.5f), depth_lod); in sample_image_pixel_float_offset()
2153 int x2 = adFn(floorf(x - 0.5f) + 1, width_lod); in sample_image_pixel_float_offset()
2154 int y2 = adFn(floorf(y - 0.5f) + 1, height_lod); in sample_image_pixel_float_offset()
2155 int z2 = adFn(floorf(z - 0.5f) + 1, depth_lod); in sample_image_pixel_float_offset()