Searched refs:nmax (Results 1 - 17 of 17) sorted by relevance

/external/valgrind/coregrind/m_gdbserver/
H A Dserver.h141 #define strncmp(s1,s2,nmax) VG_(strncmp) ((s1),(s2),nmax)
144 #define strncpy(s1,s2,nmax) VG_(strncpy) ((s1),(s2),nmax)
/external/valgrind/exp-sgcheck/
H A Dh_intercepts.c158 ( const char* s1, const char* s2, SizeT nmax ); \
160 ( const char* s1, const char* s2, SizeT nmax ) \
164 if (n >= nmax) return 0; \
/external/eigen/bench/
H A Dbench_norm.cpp95 static int nmax = 0;
99 if(nmax <= 0)
131 if (Scalar(nbig)>abig) nmax = abig; // largest safe n
132 else nmax = nbig;
/external/libvncserver/x11vnc/
H A Dutil.h40 extern int nmax(int n, int m);
H A Dutil.c53 int nmax(int n, int m);
108 int nmax(int n, int m) { function
H A Dunixpw.c1667 int x, y, i, rc, nmax = 100; local
1681 for (i=0; i < nmax; i++) {
1700 for (i=0; i<nmax; i++) {
1914 for (i=0; i < nmax; i++) {
1917 for (i=0; i < nmax; i++) {
1946 if (u_cnt >= nmax - 1) {
1949 for (i=0; i<nmax; i++) {
1961 for (i=0; i < nmax; i++) {
2015 for (i=0; i<nmax; i++) {
2027 if (p_cnt >= nmax
[all...]
H A Dconnections.c1735 int nmax = 0; local
1748 nmax = ipv6_listen_fd;
1752 if (ipv6_http_fd > nmax) {
1753 nmax = ipv6_http_fd;
1760 nfds = select(nmax+1, &fds, NULL, NULL, &tv);
1846 int nmax = 0; local
1856 nmax = unix_sock_fd;
1862 nfds = select(nmax+1, &fds, NULL, NULL, &tv);
H A Dsslhelper.c2619 int nfds, nmax = openssl_sock; local
2650 nmax = openssl_sock6;
2657 nfds = select(nmax+1, &fds, NULL, NULL, &tv);
2676 int nfds, nmax = https_sock; local
2697 nmax = https_sock6;
2704 nfds = select(nmax+1, &fds, NULL, NULL, &tv);
H A Duserinput.c5073 x2 = nmax(box_x + box_w, orig_x + orig_w) + f;
5074 y2 = nmax(box_y + box_h, orig_y + orig_h) + f;
/external/valgrind/include/
H A Dpub_tool_libcbase.h90 extern Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
91 extern Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
/external/valgrind/shared/
H A Dvg_replace_strmem.c562 ( const char* s1, const char* s2, SizeT nmax ); \
564 ( const char* s1, const char* s2, SizeT nmax ) \
568 if (n >= nmax) return 0; \
637 ( const char* s1, const char* s2, SizeT nmax ); \
639 ( const char* s1, const char* s2, SizeT nmax ) \
644 if (n >= nmax) return 0; \
712 ( const char* s1, const char* s2, SizeT nmax, void* locale ); \
714 ( const char* s1, const char* s2, SizeT nmax, void* locale ) \
719 if (n >= nmax) return 0; \
/external/valgrind/coregrind/
H A Dm_libcbase.c350 Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax )
354 if (n >= nmax) return 0;
365 Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax )
371 if (n >= nmax) return 0;
/external/aac/libSBRenc/src/
H A Dfram_gen.cpp1598 INT i, r, a, n, p, b, aL, aR, ntot, nmax, nR; local
1685 nmax = 2; /* n: {0,1,2} */
1686 if (ntot > nmax) {
1687 nL = nmax;
1688 nR = ntot - nmax;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Deloop.c204 int nmax = eloop.count + 1 + 50; local
205 n = os_realloc_array(eloop.pollfds, nmax,
210 eloop.max_poll_fds = nmax;
/external/wpa_supplicant_8/src/utils/
H A Deloop.c204 int nmax = eloop.count + 1 + 50; local
205 n = os_realloc_array(eloop.pollfds, nmax,
210 eloop.max_poll_fds = nmax;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Deloop.c204 int nmax = eloop.count + 1 + 50; local
205 n = os_realloc_array(eloop.pollfds, nmax,
210 eloop.max_poll_fds = nmax;
/external/v8/src/
H A Druntime.cc9641 { const int nmax = 80;
9643 if (n <= nmax)
9646 PrintF("%4d:%*s", n, nmax, "...");

Completed in 753 milliseconds