/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Host.cpp | 1343 unsigned MaxLevel; in getHostCPUFeatures() local 1349 if (getX86CpuIDAndInfo(0, &MaxLevel, text.u + 0, text.u + 2, text.u + 1) || in getHostCPUFeatures() 1350 MaxLevel < 1) in getHostCPUFeatures() 1419 MaxLevel >= 7 && !getX86CpuIDAndInfoEx(0x7, 0x0, &EAX, &EBX, &ECX, &EDX); in getHostCPUFeatures() 1474 MaxLevel >= 7 && !getX86CpuIDAndInfoEx(0x7, 0x1, &EAX, &EBX, &ECX, &EDX); in getHostCPUFeatures() 1477 bool HasLeafD = MaxLevel >= 0xd && in getHostCPUFeatures() 1485 bool HasLeaf14 = MaxLevel >= 0x14 && in getHostCPUFeatures()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | VPlanSLP.cpp | 223 static unsigned getLAScore(VPValue *V1, VPValue *V2, unsigned MaxLevel, in getLAScore() argument 228 if (MaxLevel == 0) in getLAScore() 236 cast<VPUser>(V2)->getOperand(J), MaxLevel - 1, IAI); in getLAScore()
|
D | SLPVectorizer.cpp | 930 int MaxLevel) { in getScoreAtLevelRec() argument 947 if (CurrLevel == MaxLevel || !(I1 && I2) || I1 == I2 || in getScoreAtLevelRec() 981 CurrLevel + 1, MaxLevel); in getScoreAtLevelRec()
|
/third_party/mesa3d/src/mesa/drivers/common/ |
D | meta_generate_mipmap.c | 153 const GLuint maxLevel = texObj->Attrib.MaxLevel; in _mesa_meta_GenerateMipmap() 154 const GLint maxLevelSave = texObj->Attrib.MaxLevel; in _mesa_meta_GenerateMipmap()
|
D | meta_blit.c | 180 fb_tex_blit.maxLevelSave = texObj->Attrib.MaxLevel; in blitframebuffer_texture() 336 if (blit->maxLevelSave != texObj->Attrib.MaxLevel) in _mesa_meta_fb_tex_blit_end()
|
D | meta.c | 3159 const GLint maxLevelSave = texObj->Attrib.MaxLevel; in decompress_texture_image()
|
/third_party/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_mipmap_tree.c | 261 minLod = MIN2(minLod, tObj->Attrib.MaxLevel); in calculate_min_max_lod() 263 maxLod = MIN2(maxLod, tObj->Attrib.MaxLevel); in calculate_min_max_lod() 372 numLevels = MIN2(texObj->Attrib.MaxLevel - texObj->Attrib.BaseLevel + 1, texImg->MaxNumLevels); in radeon_try_alloc_miptree()
|
/third_party/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_mipmap_tree.c | 261 minLod = MIN2(minLod, tObj->Attrib.MaxLevel); in calculate_min_max_lod() 263 maxLod = MIN2(maxLod, tObj->Attrib.MaxLevel); in calculate_min_max_lod() 372 numLevels = MIN2(texObj->Attrib.MaxLevel - texObj->Attrib.BaseLevel + 1, texImg->MaxNumLevels); in radeon_try_alloc_miptree()
|
/third_party/mesa3d/src/mesa/main/ |
D | genmipmap.c | 120 if (texObj->Attrib.BaseLevel >= texObj->Attrib.MaxLevel) { in generate_texture_mipmap()
|
D | texobj.c | 327 obj->Attrib.MaxLevel = 1000; in _mesa_initialize_texture_object() 671 if (t->Attrib.MaxLevel < baseLevel) { in _mesa_test_texobj_completeness() 673 t->Attrib.MaxLevel, baseLevel); in _mesa_test_texobj_completeness() 715 t->_MaxLevel = MIN3(t->Attrib.MaxLevel, in _mesa_test_texobj_completeness() 1141 if (level < 0 || level > t->Attrib.MaxLevel) { in invalidate_tex_image_error_check()
|
D | texparam.c | 427 if (texObj->Attrib.MaxLevel == params[0]) in set_tex_parameteri() 446 texObj->Attrib.MaxLevel = CLAMP(params[0], texObj->Attrib.BaseLevel, in set_tex_parameteri() 449 texObj->Attrib.MaxLevel = params[0]; in set_tex_parameteri() 2274 *params = (GLfloat) obj->Attrib.MaxLevel; in get_tex_parameterfv() 2536 *params = obj->Attrib.MaxLevel; in get_tex_parameteriv()
|
D | mipmap.c | 63 numLevels = MIN2(numLevels, (GLuint) texObj->Attrib.MaxLevel + 1); in _mesa_compute_num_levels() 2251 maxLevel = MIN2(maxLevel, texObj->Attrib.MaxLevel); in _mesa_generate_mipmap()
|
D | mtypes.h | 934 GLint MaxLevel; /**< max mipmap level (max=1000), OpenGL 1.2 */ member
|
D | teximage.c | 2769 level < texObj->Attrib.MaxLevel) { in check_gen_mipmap()
|
D | dlist.c | 1050 atlas->texObj->Attrib.MaxLevel = 0; in build_bitmap_atlas()
|
/third_party/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_texture.c | 305 return MIN2(t->Attrib.BaseLevel + base->MaxNumLevels - 1, t->Attrib.MaxLevel); in get_last_level()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_cb_texture.c | 864 if (stObj->base.Attrib.MaxLevel < MAX_TEXTURE_LEVELS && in allocate_full_mipmap() 865 stObj->base.Attrib.MaxLevel - stObj->base.Attrib.BaseLevel > 0) in allocate_full_mipmap() 873 if (stObj->base.Attrib.BaseLevel == 0 && stObj->base.Attrib.MaxLevel == 0) in allocate_full_mipmap()
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.0.0.rst | 1978 - st/mesa: Allocate full miplevels if MaxLevel is explicitly set
|