Lines Matching refs:array
40 const uint16_t* array = gUniqueGlyphIDs;
41 while (*array != gUniqueGlyphIDs_Sentinel) {
42 int count = count_glyphs(array);
44 paint.measureText(array, count * sizeof(uint16_t));
46 array += count + 1; // skip the sentinel
78 static int count_collisions(const uint16_t array[], int count, HasherProc proc,
85 int index = proc(array[i]) & hashMask;
92 static void dump_array(const uint16_t array[], int count) {
94 SkDebugf(" %d,", array[i]);
124 const uint16_t* array = gUniqueGlyphIDs;
125 while (*array != gUniqueGlyphIDs_Sentinel) {
126 int count = SkMin32(count_glyphs(array), limit);
127 collisions += count_collisions(array, count, gRec[i].fHasher, hashMask);
129 array += count + 1; // skip the sentinel