Home
last modified time | relevance | path

Searched refs:_fp (Results 1 – 6 of 6) sorted by relevance

/glibc-2.36/libio/
Dlibio.h163 #define _IO_getc_unlocked(_fp) __getc_unlocked_body (_fp) argument
164 #define _IO_peekc_unlocked(_fp) \ argument
165 (__glibc_unlikely ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end) \
166 && __underflow (_fp) == EOF \
168 : *(unsigned char *) (_fp)->_IO_read_ptr)
169 #define _IO_putc_unlocked(_ch, _fp) __putc_unlocked_body (_ch, _fp) argument
171 # define _IO_getwc_unlocked(_fp) \ argument
172 (__glibc_unlikely ((_fp)->_wide_data == NULL \
173 || ((_fp)->_wide_data->_IO_read_ptr \
174 >= (_fp)->_wide_data->_IO_read_end)) \
[all …]
DlibioP.h517 #define _IO_in_put_mode(_fp) ((_fp)->_flags & _IO_CURRENTLY_PUTTING) argument
888 # define _IO_acquire_lock(_fp) \ argument
890 # define _IO_release_lock(_fp) \ argument
/glibc-2.36/libio/bits/types/
Dstruct_FILE.h102 #define __getc_unlocked_body(_fp) \ argument
103 (__glibc_unlikely ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end) \
104 ? __uflow (_fp) : *(unsigned char *) (_fp)->_IO_read_ptr++)
106 #define __putc_unlocked_body(_ch, _fp) \ argument
107 (__glibc_unlikely ((_fp)->_IO_write_ptr >= (_fp)->_IO_write_end) \
108 ? __overflow (_fp, (unsigned char) (_ch)) \
109 : (unsigned char) (*(_fp)->_IO_write_ptr++ = (_ch)))
112 #define __feof_unlocked_body(_fp) (((_fp)->_flags & _IO_EOF_SEEN) != 0) argument
115 #define __ferror_unlocked_body(_fp) (((_fp)->_flags & _IO_ERR_SEEN) != 0) argument
/glibc-2.36/sysdeps/htl/
Dstdio-lock.h37 #define _IO_cleanup_region_start(_fct, _fp) \ argument
38 __libc_cleanup_region_start (((_fp)->_flags & _IO_USER_LOCK) == 0, _fct, _fp)
46 # define _IO_acquire_lock(_fp) \ argument
48 _IO_cleanup_region_start((void (*) (void *)) &_IO_funlockfile, _fp); \
49 _IO_flockfile (_fp);
50 # define _IO_release_lock(_fp) \ argument
51 _IO_funlockfile (_fp); \
/glibc-2.36/sysdeps/generic/
Dstdio-lock.h41 #define _IO_cleanup_region_start(_fct, _fp) \ argument
42 __libc_cleanup_region_start (((_fp)->_flags & _IO_USER_LOCK) == 0, _fct, _fp)
51 # define _IO_acquire_lock(_fp) \ argument
55 = (_fp); \
58 # define _IO_acquire_lock(_fp) _IO_acquire_lock_needs_exceptions_enabled
60 # define _IO_release_lock(_fp) ; } while (0) argument
/glibc-2.36/sysdeps/nptl/
Dstdio-lock.h78 #define _IO_cleanup_region_start(_fct, _fp) \ argument
79 __libc_cleanup_region_start (((_fp)->_flags & _IO_USER_LOCK) == 0, _fct, _fp)
88 # define _IO_acquire_lock(_fp) \ argument
92 = (_fp); \
95 # define _IO_acquire_lock(_fp) _IO_acquire_lock_needs_exceptions_enabled argument
97 # define _IO_release_lock(_fp) ; } while (0) argument