/external/rust/crates/quiche/deps/boringssl/src/crypto/asn1/ |
D | asn1_lib.c | 111 int *pclass, long omax) in ASN1_get_object() argument 117 long max = omax; in ASN1_get_object() 163 (int)p, *plength, omax, (int)*pp, (int)(p + *plength), in ASN1_get_object() 164 (int)(omax + *pp)); in ASN1_get_object() 167 if (*plength > (omax - (p - *pp))) { in ASN1_get_object()
|
/external/boringssl/src/crypto/asn1/ |
D | asn1_lib.c | 111 int *pclass, long omax) in ASN1_get_object() argument 117 long max = omax; in ASN1_get_object() 163 (int)p, *plength, omax, (int)*pp, (int)(p + *plength), in ASN1_get_object() 164 (int)(omax + *pp)); in ASN1_get_object() 167 if (*plength > (omax - (p - *pp))) { in ASN1_get_object()
|
/external/zstd/lib/common/ |
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()
|
/external/zstd/lib/legacy/ |
D | zstd_v01.c | 825 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 826 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 867 …if ( (FSE_reloadDStream(&bitD)>FSE_DStream_completed) || (op==omax) || (FSE_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 872 …if ( (FSE_reloadDStream(&bitD)>FSE_DStream_completed) || (op==omax) || (FSE_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 882 …if (op==omax) return (size_t)-FSE_ERROR_dstSize_tooSmall; /* dst buffer is full, but cSrc unfini… in FSE_decompress_usingDTable_generic() 1080 BYTE* const omax = op + maxDstSize; in HUF_decompress_usingDTable() local 1081 BYTE* const olimit = maxDstSize < 15 ? op : omax-15; in HUF_decompress_usingDTable() 1159 for ( ; (FSE_reloadDStream(&bitTail) < FSE_DStream_completed) && (op<omax) ; op++) in HUF_decompress_usingDTable() 1168 …if (op==omax) return (size_t)-FSE_ERROR_dstSize_tooSmall; /* dst buffer is full, but cSrc unfini… in HUF_decompress_usingDTable()
|
D | zstd_v03.c | 1349 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 1350 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 1391 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1396 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1406 if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ in FSE_decompress_usingDTable_generic()
|
D | zstd_v04.c | 1328 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 1329 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 1370 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1375 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1385 if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ in FSE_decompress_usingDTable_generic()
|
D | zstd_v02.c | 1348 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local 1349 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic() 1390 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1395 …if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) &&… in FSE_decompress_usingDTable_generic() 1405 if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ in FSE_decompress_usingDTable_generic()
|
D | zstd_v05.c | 1435 BYTE* const omax = op + maxDstSize; in FSEv05_decompress_usingDTable_generic() local 1436 BYTE* const olimit = omax-3; in FSEv05_decompress_usingDTable_generic() 1475 …if ( (BITv05_reloadDStream(&bitD)>BITv05_DStream_completed) || (op==omax) || (BITv05_endOfDStream(… in FSEv05_decompress_usingDTable_generic() 1480 …if ( (BITv05_reloadDStream(&bitD)>BITv05_DStream_completed) || (op==omax) || (BITv05_endOfDStream(… in FSEv05_decompress_usingDTable_generic() 1490 if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ in FSEv05_decompress_usingDTable_generic()
|
D | zstd_v06.c | 1578 BYTE* const omax = op + maxDstSize; in FSEv06_decompress_usingDTable_generic() local 1579 BYTE* const olimit = omax-3; in FSEv06_decompress_usingDTable_generic() 1617 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSEv06_decompress_usingDTable_generic() 1626 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSEv06_decompress_usingDTable_generic()
|
D | zstd_v07.c | 1598 BYTE* const omax = op + maxDstSize; in FSEv07_decompress_usingDTable_generic() local 1599 BYTE* const olimit = omax-3; in FSEv07_decompress_usingDTable_generic() 1637 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSEv07_decompress_usingDTable_generic() 1646 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSEv07_decompress_usingDTable_generic()
|
/external/deqp-deps/glslang/Test/ |
D | numeral.frag | 13 int omax = 037777777777;
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/ |
D | numeral.frag | 13 int omax = 037777777777;
|
/external/python/cpython2/Modules/ |
D | selectmodule.c | 206 int imax, omax, emax, max; in select_select() local 258 if ((omax=seq2set(ofdlist, &ofdset, wfd2obj)) < 0) in select_select() 263 if (omax > max) max = omax; in select_select()
|
/external/python/cpython3/Modules/ |
D | selectmodule.c | 285 int imax, omax, emax, max; in select_select_impl() local 331 if ((omax = seq2set(wlist, &ofdset, wfd2obj)) < 0) in select_select_impl() 337 if (omax > max) max = omax; in select_select_impl()
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | numeral.frag.out | 66 0:13 'omax' ( temp int) 475 0:13 'omax' ( temp int)
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
D | numeral.frag.out | 66 0:13 'omax' ( temp int) 475 0:13 'omax' ( temp int)
|
/external/boringssl/src/include/openssl/ |
D | asn1.h | 834 int *ptag, int *pclass, long omax);
|
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/ |
D | asn1.h | 746 …RT int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass, long omax);
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cwise_ops_test.py | 757 omin, omax = math_ops.minimum(inx, iny), math_ops.maximum(inx, iny) 758 tf_min, tf_max = self.evaluate([omin, omax])
|