/freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
H A D | fse_decompress.c | 173 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 174 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 211 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic() 218 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic()
|
/freebsd/crypto/openssl/crypto/asn1/ |
H A D | asn1_lib.c | 47 int *pclass, long omax) in ASN1_get_object() argument 53 long max = omax; in ASN1_get_object() 55 if (omax <= 0) { in ASN1_get_object() 94 if (*plength > (omax - (p - *pp))) { in ASN1_get_object()
|
/freebsd/sys/contrib/zstd/lib/common/ |
H A D | fse_decompress.c | 238 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 239 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 276 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic() 283 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic()
|
/freebsd/sys/contrib/zstd/lib/legacy/ |
H A D | zstd_v01.c | 821 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 822 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 863 …if ( (FSE_reloadDStream(&bitD)>FSE_DStream_completed) || (op==omax) || (FSE_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 868 …if ( (FSE_reloadDStream(&bitD)>FSE_DStream_completed) || (op==omax) || (FSE_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 878 …if (op==omax) return (size_t)-FSE_ERROR_dstSize_tooSmall; /* dst buffer is full, but cSrc unfini… in FSE_decompress_usingDTable_generic() 1076 BYTE* const omax = op + maxDstSize; in HUF_decompress_usingDTable() local 1077 BYTE* const olimit = maxDstSize < 15 ? op : omax-15; in HUF_decompress_usingDTable() 1155 for ( ; (FSE_reloadDStream(&bitTail) < FSE_DStream_completed) && (op<omax) ; op++) in HUF_decompress_usingDTable() 1164 …if (op==omax) return (size_t)-FSE_ERROR_dstSize_tooSmall; /* dst buffer is full, but cSrc unfini… in HUF_decompress_usingDTable()
|
H A D | zstd_v03.c | 1345 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 1346 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 1387 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1392 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1402 if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ in FSE_decompress_usingDTable_generic()
|
H A D | zstd_v02.c | 1344 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 1345 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 1386 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1391 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1401 if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ in FSE_decompress_usingDTable_generic()
|
H A D | zstd_v04.c | 1324 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 1325 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 1366 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1371 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1381 if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ in FSE_decompress_usingDTable_generic()
|
H A D | zstd_v05.c | 1431 BYTE* const omax = op + maxDstSize; in FSEv05_decompress_usingDTable_generic() local 1432 BYTE* const olimit = omax-3; in FSEv05_decompress_usingDTable_generic() 1471 …if ( (BITv05_reloadDStream(&bitD)>BITv05_DStream_completed) || (op==omax) || (BITv05_endOfDStream(… in FSEv05_decompress_usingDTable_generic() 1476 …if ( (BITv05_reloadDStream(&bitD)>BITv05_DStream_completed) || (op==omax) || (BITv05_endOfDStream(… in FSEv05_decompress_usingDTable_generic() 1486 if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ in FSEv05_decompress_usingDTable_generic()
|
H A D | zstd_v06.c | 1574 BYTE* const omax = op + maxDstSize; in FSEv06_decompress_usingDTable_generic() local 1575 BYTE* const olimit = omax-3; in FSEv06_decompress_usingDTable_generic() 1613 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSEv06_decompress_usingDTable_generic() 1622 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSEv06_decompress_usingDTable_generic()
|
H A D | zstd_v07.c | 1594 BYTE* const omax = op + maxDstSize; in FSEv07_decompress_usingDTable_generic() local 1595 BYTE* const olimit = omax-3; in FSEv07_decompress_usingDTable_generic() 1633 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSEv07_decompress_usingDTable_generic() 1642 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSEv07_decompress_usingDTable_generic()
|
/freebsd/contrib/sendmail/src/ |
H A D | headers.c | 2107 int opos, omax, spaces; local 2166 omax = mci->mci_mailer->m_linelimit - 2; 2167 if (omax < 0 || omax > 78) 2168 omax = 78; 2279 if (opos > omax && !firstone)
|
/freebsd/sys/sys/ |
H A D | libkern.h | 110 static __inline off_t omax(off_t a, off_t b) { return (a > b ? a : b); } in omax() function
|
/freebsd/contrib/libedit/ |
H A D | readline.c | 1261 int omax; in unstifle_history() local 1264 omax = max_input_history; in unstifle_history() 1266 return omax; /* some value _must_ be returned */ in unstifle_history()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | asn1.h | 895 int *pclass, long omax);
|
H A D | asn1.h.in | 728 int *pclass, long omax);
|