OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:colorpopulation
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/com/android/internal/graphics/palette/
ColorCutQuantizer.java
401
final int
colorPopulation
= hist[color];
403
totalPopulation +=
colorPopulation
;
404
redSum +=
colorPopulation
* quantizedRed(color);
405
greenSum +=
colorPopulation
* quantizedGreen(color);
406
blueSum +=
colorPopulation
* quantizedBlue(color);
/frameworks/support/palette/src/main/java/androidx/palette/graphics/
ColorCutQuantizer.java
384
final int
colorPopulation
= hist[color];
386
totalPopulation +=
colorPopulation
;
387
redSum +=
colorPopulation
* quantizedRed(color);
388
greenSum +=
colorPopulation
* quantizedGreen(color);
389
blueSum +=
colorPopulation
* quantizedBlue(color);
Completed in 69 milliseconds