Searched refs:maxSize (Results 1 - 20 of 20) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/amd/compiler/
H A Daco_reduce_assign.cpp43 unsigned maxSize = 0; local in function:aco::setup_reduce_temp
51 maxSize = MAX2(maxSize, instr->operands[0].size());
56 if (maxSize == 0)
59 assert(maxSize == 1 || maxSize == 2);
60 Temp reduceTmp(0, RegClass(RegType::vgpr, maxSize).as_linear());
61 Temp vtmp(0, RegClass(RegType::vgpr, maxSize).as_linear());
/xsrc/external/mit/mesa-demos/dist/src/perf/
H A Dteximage.c234 GLint maxSize; local in function:PerfDraw
238 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxSize);
266 if (TexSize <= maxSize) {
/xsrc/external/mit/MesaLib.old/dist/src/glx/
H A Dglxext.c1089 GLint maxSize; local in function:__glXSendLargeCommand
1097 maxSize = (ctx->bufSize + sz_xGLXRenderReq) - sz_xGLXRenderLargeReq;
1098 totalRequests = 1 + (dataLen / maxSize);
1099 if (dataLen % maxSize)
1105 assert(headerLen <= maxSize);
1113 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, maxSize);
1114 data = (const GLvoid *) (((const GLubyte *) data) + maxSize);
1115 dataLen -= maxSize;
1119 assert(dataLen <= maxSize);
H A Dindirect_vertex_array.c623 /* maxSize is the maximum amount of data can be stuffed into a single
627 const size_t maxSize = (gc->bufSize + sz_xGLXRenderReq) local in function:emit_DrawArrays_header_old
642 elements_per_request[0] = maxSize / single_vertex_size;
/xsrc/external/mit/MesaLib/dist/src/glx/
H A Dglxext.c1088 GLint maxSize; local in function:__glXSendLargeCommand
1096 maxSize = (ctx->bufSize + sz_xGLXRenderReq) - sz_xGLXRenderLargeReq;
1097 totalRequests = 1 + (dataLen / maxSize);
1098 if (dataLen % maxSize)
1104 assert(headerLen <= maxSize);
1112 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, maxSize);
1113 data = (const GLvoid *) (((const GLubyte *) data) + maxSize);
1114 dataLen -= maxSize;
1118 assert(dataLen <= maxSize);
H A Dindirect_vertex_array.c625 /* maxSize is the maximum amount of data can be stuffed into a single
629 const size_t maxSize = (gc->bufSize + sz_xGLXRenderReq) local in function:emit_DrawArrays_header_old
644 elements_per_request[0] = maxSize / single_vertex_size;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dteximage.c989 GLint maxSize; local in function:_mesa_legal_texture_dimensions
994 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1); /* level zero size */
995 maxSize >>= level; /* level size */
996 if (width < 2 * border || width > 2 * border + maxSize)
1008 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1);
1009 maxSize >>= level;
1010 if (width < 2 * border || width > 2 * border + maxSize)
1012 if (height < 2 * border || height > 2 * border + maxSize)
1024 maxSize = 1 << (ctx->Const.Max3DTextureLevels - 1);
1025 maxSize >>
[all...]
H A Dfbobject.c3419 const GLuint maxSize = 1 << (ctx->Const.Max3DTextureLevels - 1); local in function:check_layer
3420 if (layer >= maxSize) {
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c753 GLsizei MAYBE_UNUSED maxSize; local in function:draw_textured_quad
763 maxSize = 1 << (pipe->screen->get_param(pipe->screen,
765 assert(width <= maxSize);
766 assert(height <= maxSize);
1186 const int maxSize = local in function:clamp_size
1190 if (*width > maxSize) {
1193 *width = maxSize;
1195 if (*height > maxSize) {
1196 *height = maxSize;
H A Dst_cb_bitmap.c306 GLuint MAYBE_UNUSED maxSize = local in function:draw_bitmap_quad
309 assert(width <= (GLsizei) maxSize);
310 assert(height <= (GLsizei) maxSize);
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c753 ASSERTED GLsizei maxSize; local in function:draw_textured_quad
763 maxSize = st->screen->get_param(st->screen,
765 assert(width <= maxSize);
766 assert(height <= maxSize);
1200 const int maxSize = st->screen->get_param(st->screen, local in function:clamp_size
1203 if (*width > maxSize) {
1206 *width = maxSize;
1208 if (*height > maxSize) {
1209 *height = maxSize;
H A Dst_cb_bitmap.c316 ASSERTED GLuint maxSize = local in function:draw_bitmap_quad
318 assert(width <= (GLsizei) maxSize);
319 assert(height <= (GLsizei) maxSize);
/xsrc/external/mit/xf86-video-s3/dist/src/
H A Ds3_video.c135 int maxSize; local in function:S3XVMemAlloc
137 xf86QueryLargestOffscreenLinear(pScreen, &maxSize, 16,
139 if (maxSize < size)
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dteximage.c972 GLint maxSize; local in function:_mesa_legal_texture_dimensions
977 maxSize = ctx->Const.MaxTextureSize >> level;
978 if (width < 2 * border || width > 2 * border + maxSize)
990 maxSize = ctx->Const.MaxTextureSize >> level;
991 if (width < 2 * border || width > 2 * border + maxSize)
993 if (height < 2 * border || height > 2 * border + maxSize)
1005 maxSize = 1 << (ctx->Const.Max3DTextureLevels - 1);
1006 maxSize >>= level;
1007 if (width < 2 * border || width > 2 * border + maxSize)
1009 if (height < 2 * border || height > 2 * border + maxSize)
[all...]
H A Dfbobject.c3717 const GLuint maxSize = 1 << (ctx->Const.Max3DTextureLevels - 1); local in function:check_layer
3718 if (layer >= maxSize) {
/xsrc/external/mit/xf86-video-mach64/dist/src/
H A Datimach64xv.c1597 int maxSize; local in function:ATIResizeOffscreenLinear
1599 xf86QueryLargestOffscreenLinear(pScreen, &maxSize, 16,
1602 if (maxSize < Size)
H A Datidri.c480 static Bool ATIDRISetBufSize( ScreenPtr pScreen, unsigned int maxSize ) argument
487 if (pATI->OptionBufferSize < 1 || pATI->OptionBufferSize > maxSize ) {
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/glxProxy/
H A Dglxcmds.c3586 GLint maxSize, amount; local in function:__glXSendLargeCommand
3594 maxSize = cl->largeCmdMaxReqDataSize - (GLint)sizeof(xGLXRenderLargeReq);
3596 totalRequests = (dataLen / maxSize);
3597 if (dataLen % maxSize) totalRequests++;
3620 if (amount > maxSize) {
3621 amount = maxSize;
/xsrc/external/mit/MesaLib.old/dist/include/CL/
H A Dcl2.hpp3508 size_type maxSize = std::numeric_limits<size_type>::max() / sizeof(T); local in function:cl::SVMAllocator::max_size
3511 maxSize = std::min(
3512 maxSize,
3516 return maxSize;
/xsrc/external/mit/MesaLib/dist/include/CL/
H A Dcl2.hpp3652 size_type maxSize = std::numeric_limits<size_type>::max() / sizeof(T); local in function:cl::SVMAllocator::max_size
3655 maxSize = std::min(
3656 maxSize,
3660 return maxSize;

Completed in 116 milliseconds