Lines Matching refs:data
26 * (2) can now write system exclusive data with
27 * mf_write_midi_event(delta_time, system_exclusive, 0, data, size)
710 /* visible data/routines are msginit(), msgadd(), msg(), msgleng(). */
886 so the position of the track length data is kept so that it can
946 * data - A pointer to a block of chars containing the META EVENT,
947 * data.
948 * size - The length of the meta-event data.
951 mf_write_midi_event (delta_time, type, chan, data, size)
955 char *data;
981 /* write out the data bytes */
983 eputc (data[i]);
998 * data - A pointer to a block of chars containing the META EVENT,
999 * data.
1000 * size - The length of the meta-event data.
1003 mf_write_meta_event (delta_time, type, data, size)
1005 unsigned char *data, type;
1018 /* The length of the data bytes to follow */
1023 if (eputc (data[i]) != data[i])
1128 * the various data types remains constant between machines. This
1136 write32bit (data)
1137 unsigned long data;
1139 eputc ((unsigned) ((data >> 24) & 0xff));
1140 eputc ((unsigned) ((data >> 16) & 0xff));
1141 eputc ((unsigned) ((data >> 8) & 0xff));
1142 eputc ((unsigned) (data & 0xff));
1146 write16bit (data)
1147 int data;
1149 eputc ((unsigned) ((data & 0xff00) >> 8));
1150 eputc ((unsigned) (data & 0xff));