Lines Matching refs:boxlist
12 boxlist = NULL; in palette_creater()
52 boxlist = new BOX[requested_size]; in CreatePaletteForPixelmaps()
53 memset(boxlist, 0, requested_size * sizeof(BOX)); in CreatePaletteForPixelmaps()
72 boxlist[0].rmin = 0; in CreatePaletteForPixelmaps()
73 boxlist[0].rmax = (1 << HIST_RED_BITS) - 1; in CreatePaletteForPixelmaps()
74 boxlist[0].gmin = 0; in CreatePaletteForPixelmaps()
75 boxlist[0].gmax = (1 << HIST_GREEN_BITS) - 1; in CreatePaletteForPixelmaps()
76 boxlist[0].bmin = 0; in CreatePaletteForPixelmaps()
77 boxlist[0].bmax = (1 << HIST_BLUE_BITS) - 1; in CreatePaletteForPixelmaps()
80 UpdateBox(&boxlist[0]); in CreatePaletteForPixelmaps()
94 ComputeColor(info, &boxlist[index], index); in CreatePaletteForPixelmaps()
103 if (boxlist) in CreatePaletteForPixelmaps()
105 delete boxlist; in CreatePaletteForPixelmaps()
106 boxlist = NULL; in CreatePaletteForPixelmaps()
115 BOX *boxp = boxlist; in FindLargestColorPop()
136 BOX *boxp = boxlist; in FindLargestColorVolume()
339 b2 = &boxlist[boxes_num]; in median_cut()