Home
last modified time | relevance | path

Searched refs:__DIAGNOSE_PREDICT_FALSE (Results 1 – 2 of 2) sorted by relevance

/third_party/musl/porting/linux/user/src/fortify/
Dfortify.c97 if (__DIAGNOSE_PREDICT_FALSE(pollfd_array_length < fd_count)) { in __diagnose_pollfd_array()
121 if (__DIAGNOSE_PREDICT_FALSE(claim > actual)) { in __diagnose_buffer_access()
154 if (__DIAGNOSE_PREDICT_FALSE((mode & FILE_MODE_ALL) != mode)) { in __umask_diagnose()
164 if (__DIAGNOSE_PREDICT_FALSE(value > LONG_MAX)) { in __diagnose_count()
172 if (__DIAGNOSE_PREDICT_FALSE(ret >= s_len)) { in __strlen_chk()
250 if (__DIAGNOSE_PREDICT_FALSE(s_copy_len >= src_len)) { in __strncpy_chk()
357 if (__DIAGNOSE_PREDICT_FALSE(__DIAGNOSE__SIZE_MUL_OVERFLOW(size, count, &total))) { in __fread_chk()
368 if (__DIAGNOSE_PREDICT_FALSE(__DIAGNOSE__SIZE_MUL_OVERFLOW(size, count, &total))) { in __fwrite_chk()
/third_party/musl/porting/linux/user/include/fortify/
Dfortify.h62 #define __DIAGNOSE_PREDICT_FALSE(exp) __builtin_expect((exp) != 0, 0) macro