Lines Matching defs:read
16 * 07/19/99 stephen Fixed read() and gets()
422 /* Don't read from stdin too many times. There is still some data. */
439 /* Read in the data to convert */
441 /* Special case. Read from stdin one line at a time. */
675 /* Remember, read them back on in the reverse order. */
696 int32_t read = 0;
709 /* Make sure that we don't read too much */
710 if (dataSize > (count - read)) {
711 dataSize = count - read;
715 memcpy(chars + read, str->fPos, dataSize * sizeof(UChar));
717 /* update number of items read */
718 read += dataSize;
723 while (dataSize != 0 && read < count);
725 return read;