Searched refs:nmax (Results 1 – 9 of 9) sorted by relevance
/external/valgrind/coregrind/m_gdbserver/ |
D | server.h | 149 #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/ |
D | bench_norm.cpp | 105 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/ |
D | h_intercepts.c | 166 ( 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/ |
D | vg_replace_strmem.c | 627 ( 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/ |
D | pub_tool_libcbase.h | 92 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/ |
D | fram_gen.cpp | 1517 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/ |
D | m_libcbase.c | 381 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/ |
D | runtime-test.cc | 666 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/ |
D | eloop.c | 292 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()
|