Home
last modified time | relevance | path

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

/external/valgrind/coregrind/m_gdbserver/
Dserver.h149 #define strncmp(s1,s2,nmax) VG_(strncmp) ((s1),(s2),nmax) argument
152 #define strncpy(s1,s2,nmax) VG_(strncpy) ((s1),(s2),nmax) argument
/external/eigen/bench/
Dbench_norm.cpp105 static int nmax = 0; in pblueNorm()
109 if(nmax <= 0) in pblueNorm()
141 if (Scalar(nbig)>abig) nmax = abig; // largest safe n in pblueNorm()
142 else nmax = nbig; in pblueNorm()
/external/valgrind/exp-sgcheck/
Dh_intercepts.c166 ( const char* s1, const char* s2, SizeT nmax ); \
168 ( const char* s1, const char* s2, SizeT nmax ) \
172 if (n >= nmax) return 0; \
/external/valgrind/shared/
Dvg_replace_strmem.c627 ( const char* s1, const char* s2, SizeT nmax ); \
629 ( const char* s1, const char* s2, SizeT nmax ) \
633 if (n >= nmax) return 0; \
708 ( const char* s1, const char* s2, SizeT nmax ); \
710 ( const char* s1, const char* s2, SizeT nmax ) \
715 if (n >= nmax) return 0; \
788 ( const char* s1, const char* s2, SizeT nmax, void* locale ); \
790 ( const char* s1, const char* s2, SizeT nmax, void* locale ) \
795 if (n >= nmax) return 0; \
/external/valgrind/include/
Dpub_tool_libcbase.h92 extern Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
93 extern Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
/external/aac/libSBRenc/src/
Dfram_gen.cpp1517 INT i, r, a, n, p, b, aL, aR, ntot, nmax, nR; in calcCtrlSignal() local
1599 nmax = 2; /* n: {0,1,2} */ in calcCtrlSignal()
1600 if (ntot > nmax) { in calcCtrlSignal()
1601 nL = nmax; in calcCtrlSignal()
1602 nR = ntot - nmax; in calcCtrlSignal()
/external/valgrind/coregrind/
Dm_libcbase.c381 Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax ) in VG_()
385 if (n >= nmax) return 0; in VG_()
396 Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax ) in VG_()
402 if (n >= nmax) return 0; in VG_()
/external/v8/src/runtime/
Druntime-test.cc666 const int nmax = 80; in PrintIndentation() local
668 if (n <= nmax) { in PrintIndentation()
671 PrintF("%4d:%*s", n, nmax, "..."); in PrintIndentation()
/external/wpa_supplicant_8/src/utils/
Deloop.c292 int nmax = eloop.count + 1 + 50; in eloop_sock_table_add_sock() local
293 n = os_realloc_array(eloop.pollfds, nmax, in eloop_sock_table_add_sock()
298 eloop.max_poll_fds = nmax; in eloop_sock_table_add_sock()