Lines Matching defs:value
225 int value;
226 value = read_byte();
227 value |= read_byte() << 8;
228 value |= read_byte() << 16;
229 value |= read_byte() << 24;
230 return !feof(file) ? value : -1;
243 int c, value = 0;
249 value = (value << 8) | c;
251 return value;
257 int value, c;
260 value = c & 0x7f;
263 value = (value << 7) | (c & 0x7f);
266 value = (value << 7) | (c & 0x7f);
269 value = (value << 7) | c;
275 return !feof(file) ? value : -1;
664 ev->data.control.value = event->data.d[2];
670 ev->data.control.value = event->data.d[1];
675 ev->data.control.value = ((event->data.d[1]) |
827 ev.data.queue.param.value = event->data.tempo;