| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/ |
| H A D | aco_reduce_assign.cpp | 43 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 D | teximage.c | 234 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 D | glxext.c | 1089 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 D | indirect_vertex_array.c | 623 /* 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 D | glxext.c | 1088 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 D | indirect_vertex_array.c | 625 /* 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 D | teximage.c | 989 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 D | fbobject.c | 3419 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 D | st_cb_drawpixels.c | 753 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 D | st_cb_bitmap.c | 306 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 D | st_cb_drawpixels.c | 753 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 D | st_cb_bitmap.c | 316 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 D | s3_video.c | 135 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 D | teximage.c | 972 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 D | fbobject.c | 3717 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 D | atimach64xv.c | 1597 int maxSize; local in function:ATIResizeOffscreenLinear 1599 xf86QueryLargestOffscreenLinear(pScreen, &maxSize, 16, 1602 if (maxSize < Size)
|
| H A D | atidri.c | 480 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 D | glxcmds.c | 3586 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 D | cl2.hpp | 3508 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 D | cl2.hpp | 3652 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;
|