Home
last modified time | relevance | path

Searched refs:maxcol (Results 1 – 10 of 10) sorted by relevance

/external/eigen/test/
Dvisitor.cpp29 Index minrow=0,mincol=0,maxrow=0,maxcol=0; in matrixVisitor() local
43 maxcol = j; in matrixVisitor()
53 VERIFY(maxcol == eigen_maxcol); in matrixVisitor()
60 eigen_maxc = (m.adjoint()*m).eval().maxCoeff(&maxrow,&maxcol); in matrixVisitor()
62 VERIFY(maxcol == eigen_maxcol); in matrixVisitor()
/external/python/cpython2/Demo/pdist/
Dmakechangelog.py60 maxcol = 72-8
61 col = maxcol
63 if col > 0 and col + len(word) >= maxcol:
/external/python/cpython2/Lib/
Dformatter.py369 def __init__(self, file=None, maxcol=72): argument
371 self.maxcol = maxcol
391 self.file.write('-'*self.maxcol)
410 maxcol = self.maxcol
414 if col + len(word) >= maxcol:
Dcmd.py342 def print_topics(self, header, cmds, cmdlen, maxcol): argument
347 self.columnize(cmds, maxcol-1)
/external/python/cpython3/Lib/
Dformatter.py372 def __init__(self, file=None, maxcol=72): argument
374 self.maxcol = maxcol
394 self.file.write('-'*self.maxcol)
413 maxcol = self.maxcol
417 if col + len(word) >= maxcol:
Dcmd.py338 def print_topics(self, header, cmds, cmdlen, maxcol): argument
343 self.columnize(cmds, maxcol-1)
/external/mesa3d/src/compiler/glsl/
Dlower_blend_equation_advanced.cpp223 ir_variable *maxcol = f->make_temp(glsl_type::float_type, "__blend_maxcol"); in set_lum() local
227 f->emit(assign(maxcol, maxv3(color))); in set_lum()
232 if_tree(greater(maxcol, imm1(1)), in set_lum()
235 sub(maxcol, llum))))))); in set_lum()
/external/python/cpython2/Doc/library/
Dformatter.rst344 .. class:: DumbWriter(file=None, maxcol=72)
348 to the number of columns specified by *maxcol*. This class is suitable for
/external/python/cpython3/Doc/library/
Dformatter.rst345 .. class:: DumbWriter(file=None, maxcol=72)
349 simply word-wrapped to the number of columns specified by *maxcol*. This
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineBlendOperationAdvancedTests.cpp463 float maxcol = maxv3(color); in clipColor() local
469 if (maxcol > 1.0) in clipColor()
471 color = lum + ((color - lum) * (1.0f - lum)) / (maxcol - lum); in clipColor()