Home
last modified time | relevance | path

Searched refs:points (Results 1 – 8 of 8) sorted by relevance

/TwlSDK-5.2.1/build/libraries/prc/common/src/
Dprc.c72 strokes->points = (PRCPoint *)&prototypeList->pointArray[entry->pointIndex]; in PRC_GetEntryStrokes()
78 strokes->points = NULL; in PRC_GetEntryStrokes()
109 srcPoint = srcStrokes->points; in PRC_CopyStrokes()
110 dstPoint = dstStrokes->points; in PRC_CopyStrokes()
Dprc_resample.c41 inputPoints = strokes->points; in PRCi_TerminateStrokes()
134 if (!PRC_IsPenUpMarker(&strokes->points[size - 1])) in PRC_ResampleStrokes_None()
185 point = strokes->points; in PRC_ResampleStrokes_Distance()
308 point = strokes->points; in PRC_ResampleStrokes_Angle()
474 inputPoints = strokes->points; in PRC_ResampleStrokes_Recursive()
Dprc_algo_common.c592 point = strokes->points; in PRCi_ExtractInputPattern_Common()
715 inputPoints = strokes->points; in PRCi_ExtractInputPattern_Common()
1076 strokes->points = (PRCPoint *)data->pointArray; in PRCi_GetPatternStrokes_Common()
/TwlSDK-5.2.1/include/nitro/prc/
Dcommon.h129 static inline void PRC_InitStrokes(PRCStrokes *strokes, PRCPoint *points, u32 size) in PRC_InitStrokes() argument
131 SDK_ASSERT(strokes && points); in PRC_InitStrokes()
132 strokes->points = points; in PRC_InitStrokes()
151 strokes->points[strokes->size].x = (s16)x; in PRC_AppendPoint()
152 strokes->points[strokes->size].y = (s16)y; in PRC_AppendPoint()
Dtypes.h82 PRCPoint *points; member
/TwlSDK-5.2.1/tools/bin/
Dpdic2c.pl111 …my @points = map {/\(\s*(\d+)\s*,\s*(\d+)\s*\)/; [$1, $2]} ($strokeString =~ /\(\s*\d+\s*,\s*\d+\s…
112 next if (!@points);
113 push @strokes, \@points;
115 $pointCount += $#points + 1;
199 foreach my $points (@$strokes)
201 foreach my $point (@$points)
/TwlSDK-5.2.1/build/demos/prc/characterRecognition-1/src/
Dmain.c60 PRCPoint points[POINT_PER_INPUT_MAX]; member
82 PRCPoint points[POINT_PER_INPUT_MAX]; in NitroMain() local
100 PRC_InitStrokes(&strokes, points, POINT_PER_INPUT_MAX); in NitroMain()
106 PRC_InitStrokes(&queue[i].strokes, queue[i].points, POINT_PER_INPUT_MAX); in NitroMain()
495 point = strokes->points; in DrawStrokes()
/TwlSDK-5.2.1/build/demos/prc/characterRecognition-2/src/
Dmain.c82 PRCPoint points[POINT_PER_INPUT_MAX]; in NitroMain() local
176 PRC_InitStrokes(&strokes, points, POINT_PER_INPUT_MAX); in NitroMain()
761 point = strokes->points; in DrawStrokes()
829 point = strokes->points; in PrintStrokesAsEntryData()