HomeSort by: relevance | last modified time | path
    Searched refs:num_axes (Results 1 - 21 of 21) sorted by relevancy

  /xsrc/external/mit/freetype/dist/src/cff/
cffparse.h 70 FT_UShort num_axes; /* a copy of `CFF_FontRecDict->num_axes' */ member in struct:CFF_ParserRec_
86 FT_UShort num_axes );
cffparse.c 47 FT_UShort num_axes )
62 parser->num_axes = num_axes;
905 dict->num_axes = (FT_UShort)( parser->top - parser->stack - 4 );
908 parser->num_axes = dict->num_axes;
1292 cff_rec.top_font.font_dict.num_axes = parser->num_axes;
cffload.c 1923 top->num_axes ) )
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/drivers/inputtest/
xf86-input-inputtest.c 297 int num_axes = 0; local
310 axislabels[num_axes++] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_X);
311 axislabels[num_axes++] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_Y);
312 axislabels[num_axes++] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_HSCROLL);
313 axislabels[num_axes++] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_VSCROLL);
315 axislabels[num_axes++] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_PRESSURE);
323 num_axes,
351 int num_axes = 0; local
364 axislabels[num_axes++] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_X);
365 axislabels[num_axes++] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_Y)
433 int num_axes = 0; local
    [all...]
  /xsrc/external/mit/libXi/dist/src/
XListDev.c 98 (v->num_axes * sizeof(XAxisInfo)));
153 (v->num_axes * sizeof(XAxisInfo)));
154 V->num_axes = v->num_axes;
160 for (k = 0; k < (int)v->num_axes; k++, a++, A++) {
  /xsrc/external/mit/freetype/dist/src/sfnt/
sfobjs.c 584 FT_UShort num_axes; local
603 FT_READ_USHORT( num_axes ) ||
610 num_axes = 0;
619 num_axes == 0 ||
620 /* `num_axes' limit implied by 16-bit `instance_size' */
621 num_axes > 0x3FFE ||
622 !( instance_size == 4 + 4 * num_axes ||
623 instance_size == 6 + 4 * num_axes ) ||
627 axis_size * num_axes +
646 !( FT_ALLOC( default_values, num_axes * 4 ) |
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/test/
input.c 55 const int num_axes = 2; local
64 g_assert(InitValuatorClassDeviceStruct(&dev, num_axes, atoms, 0, Absolute));
68 g_assert(val->numAxes == num_axes);
72 for (i = 0; i < num_axes; i++)
80 g_assert(dev.last.numValuators == num_axes);
1158 const int num_axes = MAX_VALUATORS; local
1166 g_assert(InitValuatorClassDeviceStruct(&dev, num_axes, atoms, 0, Absolute));
1168 for (i = 0; i < num_axes; i++)
1177 for (i = 0; i < num_axes; i++)
1181 for (i = 0; i < num_axes; i++
1208 int num_axes = 0; local
    [all...]
  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
glut_input.c 368 if (v->num_axes < NUM_SPACEBALL_AXIS)
402 if (v->num_axes < NUM_DIALS_AXIS)
404 dials = v->num_axes;
438 if (v->num_axes != NUM_TABLET_AXIS)
  /xsrc/external/mit/xinput/dist/src/
list.c 109 printf("\tNum_axes is %d\n", v->num_axes);
112 for (j=0; j<v->num_axes; j++, a++) {
  /xsrc/external/mit/xorg-server/dist/test/
input.c 63 const int num_axes = 2; local
71 assert(InitValuatorClassDeviceStruct(&dev, num_axes, atoms, 0, Absolute));
75 assert(val->numAxes == num_axes);
79 for (i = 0; i < num_axes; i++) {
86 assert(dev.last.numValuators == num_axes);
1340 const int num_axes = MAX_VALUATORS; local
1348 assert(InitValuatorClassDeviceStruct(&dev, num_axes, atoms, 0, Absolute));
1350 for (i = 0; i < num_axes; i++) {
1358 for (i = 0; i < num_axes; i++)
1362 for (i = 0; i < num_axes; i++
1452 int num_axes = 0; local
    [all...]
  /xsrc/external/mit/freetype/dist/src/truetype/
ttgxvar.c 2055 FT_UInt num_axes; local
2150 num_axes = fvar_head.axisCount;
2151 face->blend->num_axis = num_axes;
2154 num_axes = face->blend->num_axis;
2175 axis_flags_size = ALIGN_SIZE( num_axes *
2177 axis_size = ALIGN_SIZE( num_axes *
2182 num_axes *
2184 next_name_size = num_axes * 5;
2203 num_axes;
2224 next_coords += num_axes;
4266 FT_UInt i, num_axes; local
    [all...]
ttinterp.c 7612 FT_UInt num_axes = exc->face->blend->num_axis; local
7618 if ( BOUNDS( num_axes, exc->stackSize + 1 - exc->top ) )
7626 for ( i = 0; i < num_axes; i++ )
7631 for ( i = 0; i < num_axes; i++ )
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/input/
dmxcommon.c 416 info->numAbsAxes = vi->num_axes;
418 info->numRelAxes = vi->num_axes;
419 for (k = 0; k < vi->num_axes; k++) {
  /xsrc/external/mit/freetype/dist/include/freetype/internal/
cfftypes.h 231 FT_UShort num_axes; member in struct:CFF_FontRecDictRec_
  /xsrc/external/mit/xorg-server/dist/Xi/
listdev.c 219 * defined to be sizeof(ValuatorClassInfo) + num_axes * sizeof (xAxisInfo).
243 v2->num_axes = t_axes;
  /xsrc/external/mit/xorg-server.old/dist/Xi/
listdev.c 225 * defined to be sizeof(ValuatorClassInfo) + num_axes * sizeof (xAxisInfo).
250 v2->num_axes = t_axes;
  /xsrc/external/mit/freetype/dist/src/psaux/
cffdecode.c 512 FT_UShort num_axes = local
513 decoder->cff->top_font.font_dict.num_axes;
1929 count >= 0 && count <= num_axes )
  /xsrc/external/mit/xorg-server/dist/dix/
devices.c 1655 * @num_axes The number of touch valuator axes.
1659 unsigned int mode, unsigned int num_axes)
1670 BUG_RETURN_VAL(num_axes < 2, FALSE);
1672 if (num_axes > MAX_VALUATORS) {
1675 device->name, num_axes, MAX_VALUATORS);
1676 num_axes = MAX_VALUATORS;
  /xsrc/external/mit/libXi/dist/include/X11/extensions/
XInput.h 824 unsigned char num_axes; member in struct:_XValuatorInfo
  /xsrc/external/mit/xf86-input-synaptics/dist/src/
synaptics.c 1159 int num_axes = 2; local
1164 num_axes += 2;
1166 num_axes += priv->num_mt_axes;
1168 axes_labels = calloc(num_axes, sizeof(Atom));
1174 InitAxesLabels(axes_labels, num_axes, priv);
1188 GetMotionHistorySize(), num_axes, axes_labels);
  /xsrc/external/mit/xorgproto/dist/include/X11/extensions/
XIproto.h 283 CARD8 num_axes; member in struct:_xValuatorInfo

Completed in 133 milliseconds