Lines Matching defs:num

263 remote_fileio_seek_flag_to_host (long num, int *flag)
267 switch (num)
358 remote_fileio_to_be (LONGEST num, char *buf, int bytes)
363 buf[i] = (num >> (8 * (bytes - i - 1))) & 0xff;
367 remote_fileio_to_fio_uint (long num, fio_uint_t fnum)
369 remote_fileio_to_be ((LONGEST) num, (char *) fnum, 4);
373 remote_fileio_to_fio_mode (mode_t num, fio_mode_t fnum)
375 remote_fileio_to_be (remote_fileio_mode_to_target(num), (char *) fnum, 4);
379 remote_fileio_to_fio_time (time_t num, fio_time_t fnum)
381 remote_fileio_to_be ((LONGEST) num, (char *) fnum, 4);
385 remote_fileio_to_fio_long (LONGEST num, fio_long_t fnum)
387 remote_fileio_to_be (num, (char *) fnum, 8);
391 remote_fileio_to_fio_ulong (LONGEST num, fio_ulong_t fnum)
393 remote_fileio_to_be (num, (char *) fnum, 8);
564 long num;
577 if (remote_fileio_extract_int (&buf, &num))
582 flags = remote_fileio_oflags_to_host (num);
584 if (remote_fileio_extract_int (&buf, &num))
589 mode = remote_fileio_mode_to_host (num, 1);
633 long num;
637 if (remote_fileio_extract_int (&buf, &num))
642 fd = remote_fileio_map_fd ((int) num);
652 remote_fileio_close_target_fd ((int) num);
659 long target_fd, num;
687 if (remote_fileio_extract_int (&buf, &num))
692 length = (size_t) num;
777 long target_fd, num;
804 if (remote_fileio_extract_int (&buf, &num))
809 length = (size_t) num;
850 long num;
856 if (remote_fileio_extract_int (&buf, &num))
861 fd = remote_fileio_map_fd ((int) num);
881 if (remote_fileio_extract_int (&buf, &num))
886 if (remote_fileio_seek_flag_to_host (num, &flag))