Home
last modified time | relevance | path

Searched refs:nmax (Results 1 – 10 of 10) sorted by relevance

/external/freetype/src/base/
Dftbbox.c265 FT_Pos nmin, nmax; in BBox_Cubic_Check() local
292 nmax = *max << shift; in BBox_Cubic_Check()
301 nmax = *max >> -shift; in BBox_Cubic_Check()
304 nmax = update_cubic_max( p1, p2, p3, p4, nmax ); in BBox_Cubic_Check()
312 nmax >>= shift; in BBox_Cubic_Check()
317 nmax <<= -shift; in BBox_Cubic_Check()
322 if ( nmax > *max ) in BBox_Cubic_Check()
323 *max = nmax; in BBox_Cubic_Check()
/external/valgrind/main/coregrind/m_gdbserver/
Dserver.h143 #define strncmp(s1,s2,nmax) VG_(strncmp) ((s1),(s2),nmax) argument
146 #define strncpy(s1,s2,nmax) VG_(strncpy) ((s1),(s2),nmax) argument
/external/eigen/bench/
Dbench_norm.cpp95 static int nmax = 0; in pblueNorm()
99 if(nmax <= 0) in pblueNorm()
131 if (Scalar(nbig)>abig) nmax = abig; // largest safe n in pblueNorm()
132 else nmax = nbig; in pblueNorm()
/external/valgrind/main/exp-sgcheck/
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/valgrind/main/shared/
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/include/
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/aac/libSBRenc/src/
Dfram_gen.cpp1598 INT i, r, a, n, p, b, aL, aR, ntot, nmax, nR; in calcCtrlSignal() local
1685 nmax = 2; /* n: {0,1,2} */ in calcCtrlSignal()
1686 if (ntot > nmax) { in calcCtrlSignal()
1687 nL = nmax; in calcCtrlSignal()
1688 nR = ntot - nmax; in calcCtrlSignal()
/external/valgrind/main/coregrind/
Dm_libcbase.c331 Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax ) in VG_()
335 if (n >= nmax) return 0; in VG_()
346 Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax ) in VG_()
352 if (n >= nmax) return 0; in VG_()
/external/wpa_supplicant_8/src/utils/
Deloop.c204 int nmax = eloop.count + 1 + 50; in eloop_sock_table_add_sock() local
205 n = os_realloc_array(eloop.pollfds, nmax, in eloop_sock_table_add_sock()
210 eloop.max_poll_fds = nmax; in eloop_sock_table_add_sock()
/external/chromium_org/v8/src/
Druntime.cc9570 { const int nmax = 80; in PrintTransition() local
9572 if (n <= nmax) in PrintTransition()
9575 PrintF("%4d:%*s", n, nmax, "..."); in PrintTransition()