Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/asn1/
Dasn1_lib.c111 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/python/cpython2/Modules/
Dselectmodule.c206 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/
Dselectmodule.c203 int imax, omax, emax, max; in select_select() local
254 if ((omax=seq2set(ofdlist, &ofdset, wfd2obj)) < 0) in select_select()
260 if (omax > max) max = omax; in select_select()
/external/libedit/src/
Dreadline.c1152 int omax; in unstifle_history() local
1155 omax = max_input_history; in unstifle_history()
1157 return omax; /* some value _must_ be returned */ in unstifle_history()
/external/boringssl/src/include/openssl/
Dasn1.h757 …RT int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass, long omax);
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_test.py1684 omin, omax = math_ops.minimum(inx, iny), math_ops.maximum(inx, iny)
1685 tf_min, tf_max = sess.run([omin, omax])