HomeSort by relevance Sort by last modified time
    Searched defs:arc (Results 51 - 75 of 96) sorted by null

1 23 4

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
vector-fst.h 36 class VectorFstBaseImpl : public FstImpl<typename State::Arc> {
38 typedef typename State::Arc Arc;
39 typedef typename Arc::Weight Weight;
40 typedef typename Arc::StateId StateId;
71 void AddArc(StateId s, const Arc &arc) {
72 states_[s]->arcs.push_back(arc);
92 vector<Arc> &arcs = states_[s]->arcs;
138 void InitStateIterator(StateIteratorData<Arc> *data) const
339 const A &arc = aiter.Value(); local
371 A arc; local
435 const A &arc = state->arcs[a]; local
    [all...]
compose.h 427 // Generates arc for composition state s from matched input Fst arcs.
430 A arc; local
432 arc.ilabel = arcb.ilabel;
433 arc.olabel = arca.olabel;
434 arc.weight = Times(arcb.weight, arca.weight);
436 arc.nextstate = FindState(tuple);
438 arc.ilabel = arca.ilabel;
439 arc.olabel = arcb.olabel;
440 arc.weight = Times(arca.weight, arcb.weight);
442 arc.nextstate = FindState(tuple)
    [all...]
  /frameworks/base/core/jni/android/graphics/
SkiaCanvas.cpp 537 SkRect arc = SkRect::MakeLTRB(left, top, right, bottom); local
538 mCanvas->drawArc(arc, startAngle, sweepAngle, useCenter, paint);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
path.c 35 #include "arc.h"
579 struct arc arc; local
591 debug_printf("------- ARC (%f, %f), (%f, %f) %f, %f, %f\n",
594 arc_init(&arc, command, x0, y0, x1, y1,
596 arc_add_to_polygon(&arc, current,
791 debug_printf("------- ARC (%f, %f), (%f, %f) %f, %f, %f\n",
871 struct arc arc; local
874 arc_init(&arc, segment
1495 struct arc arc; local
1767 struct arc arc; local
1850 struct arc arc; local
1942 struct arc arc; local
2049 struct arc arc; local
    [all...]
stroker.c 32 #include "arc.h"
619 struct arc arc; local
626 arc_init(&arc, VG_SCCWARC_TO,
628 arc_stroker_emit(&arc, stroker, &matrix);
1095 struct arc arc; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
path.c 35 #include "arc.h"
579 struct arc arc; local
591 debug_printf("------- ARC (%f, %f), (%f, %f) %f, %f, %f\n",
594 arc_init(&arc, command, x0, y0, x1, y1,
596 arc_add_to_polygon(&arc, current,
791 debug_printf("------- ARC (%f, %f), (%f, %f) %f, %f, %f\n",
871 struct arc arc; local
874 arc_init(&arc, segment
1495 struct arc arc; local
1767 struct arc arc; local
1850 struct arc arc; local
1942 struct arc arc; local
2049 struct arc arc; local
    [all...]
stroker.c 32 #include "arc.h"
619 struct arc arc; local
626 arc_init(&arc, VG_SCCWARC_TO,
628 arc_stroker_emit(&arc, stroker, &matrix);
1095 struct arc arc; local
    [all...]
  /external/srec/srec/crec/
srec.c 420 /* we should build in here a check that this arc has reasonable weight */
862 M outgoing arcs can share, cuz this is the same arriving arc@frame */
1240 FSMarc* arc; local
    [all...]
srec_context.c 105 int sprintf_arc(char* buf, srec_context* fst, FSMarc* arc);
106 int printf_arc1(srec_context* fst, char* msg, FSMarc* arc);
113 int fst_push_arc_olabel(srec_context* fst, FSMarc* arc);
114 int fst_push_arc_cost(srec_context* fst, FSMarc* arc);
115 int fst_pull_arc_olabel(srec_context* fst, FSMarc* arc);
116 int fst_free_arc(srec_context* fst, FSMarc* arc);
118 int fst_free_arc_net(srec_context* fst, FSMarc* arc);
985 /* setup the arc freelist */
1254 FSMarc* arc; local
1519 FSMarc *arc = NULL, *arc2; local
1545 FSMarc *arc = NULL, *arc2; local
1578 FSMarc_t *arc, *arc2, *arc3; local
3061 FSMarc* arc; local
3613 FSMarc* arc; local
3646 FSMarc* arc; local
3763 FSMarc* arc; local
    [all...]
  /external/srec/tools/grxmlcompile/
grxmlcompile.cpp 26 #include "fst/lib/arc.h"
366 fst::StdArc arc = aiter.Value(); local
367 if( arc.ilabel >= max_ilabels ||
368 (float)arc.ilabel + ((float)max_ilabels)*arc.olabel > INT_MAX) {
372 arc.ilabel = arc.ilabel + max_ilabels * arc.olabel;
373 arc.olabel = 0;
374 aiter.SetValue( arc);
406 fst::StdArc arc = aiter.Value(); local
429 fst::StdArc arc = aiter.Value(); local
461 fst::StdArc arc = aiter.Value(); local
498 fst::StdArc arc = aiter.Value(); local
555 fst::StdArc arc = aiter.Value(); local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 712 * Append the specified arc to the path as a new contour. If the start of
715 * start of the arc. However, if the path is empty, then we call moveTo()
716 * with the first point of the arc. The sweep angle is tread mod 360.
718 * @param left The left of oval defining shape and size of the arc
719 * @param top The top of oval defining shape and size of the arc
720 * @param right The right of oval defining shape and size of the arc
721 * @param bottom The bottom of oval defining shape and size of the arc
722 * @param startAngle Starting angle (in degrees) where the arc begins
725 * @param forceMoveTo If true, always begin a new contour with the arc
730 Arc2D arc = new Arc2D.Float(left, top, right - left, bottom - top, -startAngle local
    [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/chromium_org/third_party/freetype/src/base/
ftstroke.c 579 /* add cubic arc */
584 /* process the rest of the arc ?? */
874 /* create a circular arc at a corner or cap */
1358 FT_Vector* arc; local
1554 FT_Vector* arc; local
    [all...]
  /external/chromium_org/third_party/freetype/src/smooth/
ftgrays.c 921 FT_Vector* arc; local
926 arc = ras.bez_stack;
927 arc[0].x = UPSCALE( to->x );
928 arc[0].y = UPSCALE( to->y );
929 arc[1].x = UPSCALE( control->x );
930 arc[1].y = UPSCALE( control->y );
931 arc[2].x = ras.x;
932 arc[2].y = ras.y;
935 dx = FT_ABS( arc[2].x + arc[0].x - 2 * arc[1].x )
1020 FT_Vector* arc; local
    [all...]
  /external/freetype/src/base/
ftstroke.c 579 /* add cubic arc */
584 /* process the rest of the arc ?? */
874 /* create a circular arc at a corner or cap */
1358 FT_Vector* arc; local
1554 FT_Vector* arc; local
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 943 FT_Vector* arc; local
948 arc = ras.bez_stack;
949 arc[0].x = UPSCALE( to->x );
950 arc[0].y = UPSCALE( to->y );
951 arc[1].x = UPSCALE( control->x );
952 arc[1].y = UPSCALE( control->y );
953 arc[2].x = ras.x;
954 arc[2].y = ras.y;
957 dx = FT_ABS( arc[2].x + arc[0].x - 2 * arc[1].x )
1042 FT_Vector* arc; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftstroke.c 579 /* add cubic arc */
584 /* process the rest of the arc ?? */
874 /* create a circular arc at a corner or cap */
1358 FT_Vector* arc; local
1554 FT_Vector* arc; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/smooth/
ftgrays.c 933 FT_Vector* arc; local
938 arc = ras.bez_stack;
939 arc[0].x = UPSCALE( to->x );
940 arc[0].y = UPSCALE( to->y );
941 arc[1].x = UPSCALE( control->x );
942 arc[1].y = UPSCALE( control->y );
943 arc[2].x = ras.x;
944 arc[2].y = ras.y;
947 dx = FT_ABS( arc[2].x + arc[0].x - 2 * arc[1].x )
1032 FT_Vector* arc; local
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 22 #include <asm/fw/arc/types.h>
61 Arc, Cpu, Fpu,
127 enum arc_memtypes arc; member in union:linux_memtypes
  /external/chromium_org/third_party/freetype/src/raster/
ftraster.c 342 /* States of each line, arc, and profile */
484 TPoint* arc; /* current Bezier arc pointer */ member in struct:black_TWorker_
497 Bool joint; /* signals that the last arc ended */
674 * given y-monotonous Bezier arc that crosses a scanline before
1282 TPoint* arc; local
1412 TPoint* arc = ras.arc; local
    [all...]
  /external/freetype/src/raster/
ftraster.c 342 /* States of each line, arc, and profile */
486 TPoint* arc; /* current Bezier arc pointer */ member in struct:black_TWorker_
499 Bool joint; /* signals that the last arc ended */
676 * given y-monotonous Bezier arc that crosses a scanline before
1284 TPoint* arc; local
1414 TPoint* arc = ras.arc; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
ftraster.c 342 /* States of each line, arc, and profile */
486 TPoint* arc; /* current Bezier arc pointer */ member in struct:black_TWorker_
499 Bool joint; /* signals that the last arc ended */
676 * given y-monotonous Bezier arc that crosses a scanline before
1284 TPoint* arc; local
1414 TPoint* arc = ras.arc; local
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
sgiarcs.h 22 #include <asm/fw/arc/types.h>
61 Arc, Cpu, Fpu,
127 enum arc_memtypes arc; member in union:linux_memtypes
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
sgiarcs.h 22 #include <asm/fw/arc/types.h>
61 Arc, Cpu, Fpu,
127 enum arc_memtypes arc; member in union:linux_memtypes

Completed in 1950 milliseconds

1 23 4