Lines Matching refs:strokeCount
46 static u32 PRCi_GetInputPatternBufferSize_Common(int pointCount, int strokeCount);
50 void *buffer, int pointCount, int strokeCount);
267 OS_TPrintf(" strokeCount: %d\n", data->strokeCount); in PRCi_PrintPatternData_Common()
271 for (iStroke = 0; iStroke < data->strokeCount; iStroke++) in PRCi_PrintPatternData_Common()
342 strokeCnt += entry->strokeCount; in PRCi_CountPrototypeList_Common()
349 if (maxStrokeCnt < entry->strokeCount) in PRCi_CountPrototypeList_Common()
351 maxStrokeCnt = entry->strokeCount; in PRCi_CountPrototypeList_Common()
458 data->strokeCount = entry->strokeCount; in PRCi_ExtractPrototypeList_Common()
474 strokeCnt += entry->strokeCount; in PRCi_ExtractPrototypeList_Common()
484 static u32 PRCi_GetInputPatternBufferSize_Common(int pointCount, int strokeCount) in PRCi_GetInputPatternBufferSize_Common() argument
492 addr += PRCi_ARRAY_SIZE(int, strokeCount,); in PRCi_GetInputPatternBufferSize_Common()
494 addr += PRCi_ARRAY_SIZE(int, strokeCount,); in PRCi_GetInputPatternBufferSize_Common()
498 addr += PRCi_ARRAY_SIZE(fx32, strokeCount,); in PRCi_GetInputPatternBufferSize_Common()
500 addr += PRCi_ARRAY_SIZE(PRCBoundingBox, strokeCount,); in PRCi_GetInputPatternBufferSize_Common()
510 addr += PRCi_ARRAY_SIZE(fx16, strokeCount,); in PRCi_GetInputPatternBufferSize_Common()
517 void *buffer, int pointCount, int strokeCount) in PRCi_SetPatternBufferInfo_Common() argument
527 PRCi_ALLOC_ARRAY(WAInfo->strokes, int, strokeCount, buffer, addr); in PRCi_SetPatternBufferInfo_Common()
529 PRCi_ALLOC_ARRAY(WAInfo->strokeSizes, int, strokeCount, buffer, addr); in PRCi_SetPatternBufferInfo_Common()
533 PRCi_ALLOC_ARRAY(WAInfo->strokeLengths, fx32, strokeCount, buffer, addr); in PRCi_SetPatternBufferInfo_Common()
535 PRCi_ALLOC_ARRAY(WAInfo->strokeBoundingBoxes, PRCBoundingBox, strokeCount, buffer, addr); in PRCi_SetPatternBufferInfo_Common()
545 PRCi_ALLOC_ARRAY(WAInfo->strokeRatios, fx16, strokeCount, buffer, addr); in PRCi_SetPatternBufferInfo_Common()
557 u16 iPoint, strokeCount, wholePointCount; in PRCi_ExtractInputPattern_Common() local
703 strokeCount = 0; in PRCi_ExtractInputPattern_Common()
743 strokeCount++; in PRCi_ExtractInputPattern_Common()
797 strokeCount++; in PRCi_ExtractInputPattern_Common()
833 data->strokeCount = strokeCount; in PRCi_ExtractInputPattern_Common()
910 SDK_ASSERT(iStroke < data->strokeCount); in PRCi_CalcExtraValues_Common()