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

/external/freetype/src/base/
H A Dftbbox.c265 FT_Pos nmin, nmax; local
292 nmax = *max << shift;
301 nmax = *max >> -shift;
304 nmax = update_cubic_max( p1, p2, p3, p4, nmax );
312 nmax >>= shift;
317 nmax <<= -shift;
322 if ( nmax > *max )
323 *max = nmax;
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h143 #define strncmp(s1,s2,nmax) VG_(strncmp) ((s1),(s2),nmax)
146 #define strncpy(s1,s2,nmax) VG_(strncpy) ((s1),(s2),nmax)
/external/valgrind/main/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/valgrind/main/include/
H A Dpub_tool_libcbase.h95 extern Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
96 extern Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
/external/valgrind/main/shared/
H A Dvg_replace_strmem.c550 ( const char* s1, const char* s2, SizeT nmax ); \
552 ( const char* s1, const char* s2, SizeT nmax ) \
556 if (n >= nmax) return 0; \
622 ( const char* s1, const char* s2, SizeT nmax ); \
624 ( const char* s1, const char* s2, SizeT nmax ) \
629 if (n >= nmax) return 0; \
695 ( const char* s1, const char* s2, SizeT nmax, void* locale ); \
697 ( const char* s1, const char* s2, SizeT nmax, void* locale ) \
702 if (n >= nmax) return 0; \
/external/valgrind/main/coregrind/
H A Dm_libcbase.c331 Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax )
335 if (n >= nmax) return 0;
346 Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax )
352 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/chromium_org/v8/src/
H A Druntime.cc9641 { const int nmax = 80;
9643 if (n <= nmax)
9646 PrintF("%4d:%*s", n, nmax, "...");

Completed in 278 milliseconds