Lines Matching refs:entry
329 const PRCPrototypeEntry *entry; in PRCi_CountPrototypeList_Common() local
334 entry = prototypeList->entries; in PRCi_CountPrototypeList_Common()
335 for (i = 0; i < prototypeList->entrySize; i++, entry++) in PRCi_CountPrototypeList_Common()
337 if (!entry->enabled && ignoreDisabledEntries) in PRCi_CountPrototypeList_Common()
339 if (entry->kind & kindMask) in PRCi_CountPrototypeList_Common()
341 pointCnt += entry->pointCount; in PRCi_CountPrototypeList_Common()
342 strokeCnt += entry->strokeCount; in PRCi_CountPrototypeList_Common()
345 if (maxPointCnt < entry->pointCount) in PRCi_CountPrototypeList_Common()
347 maxPointCnt = entry->pointCount; in PRCi_CountPrototypeList_Common()
349 if (maxStrokeCnt < entry->strokeCount) in PRCi_CountPrototypeList_Common()
351 maxStrokeCnt = entry->strokeCount; in PRCi_CountPrototypeList_Common()
440 const PRCPrototypeEntry *entry; in PRCi_ExtractPrototypeList_Common() local
443 entry = protoDB->prototypeList->entries; in PRCi_ExtractPrototypeList_Common()
448 for (iEntry = 0; iEntry < entrySize; iEntry++, entry++) in PRCi_ExtractPrototypeList_Common()
450 if (!entry->enabled && ignoreDisabledEntries) in PRCi_ExtractPrototypeList_Common()
452 if (entry->kind & kindMask) in PRCi_ExtractPrototypeList_Common()
456 pattern->entry = entry; in PRCi_ExtractPrototypeList_Common()
458 data->strokeCount = entry->strokeCount; in PRCi_ExtractPrototypeList_Common()
459 data->pointCount = entry->pointCount; in PRCi_ExtractPrototypeList_Common()
460 data->pointArray = &protoDB->prototypeList->pointArray[entry->pointIndex]; in PRCi_ExtractPrototypeList_Common()
473 pointCnt += entry->pointCount; in PRCi_ExtractPrototypeList_Common()
474 strokeCnt += entry->strokeCount; in PRCi_ExtractPrototypeList_Common()