HomeSort by relevance Sort by last modified time
    Searched refs:VG_STREQN (Results 1 - 5 of 5) sorted by null

  /external/valgrind/main/memcheck/tests/
unit_libcbase.c 34 CHECK( ! VG_STREQN(0, NULL, NULL) );
35 CHECK( ! VG_STREQN(5, NULL, NULL) );
36 CHECK( ! VG_STREQN(0, NULL, "ab") );
37 CHECK( ! VG_STREQN(5, NULL, "ab") );
38 CHECK( ! VG_STREQN(0, "ab", NULL) );
39 CHECK( ! VG_STREQN(1, "", "a") );
40 CHECK( ! VG_STREQN(1, "a", "") );
41 CHECK( ! VG_STREQN(4, "abc", "abcd"));
42 CHECK( ! VG_STREQN(4, "abcd", "abc") );
43 CHECK( ! VG_STREQN(1, "Abcd", "abcd"))
    [all...]
  /external/valgrind/main/include/
pub_tool_options.h 52 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
65 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
75 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
90 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
123 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
pub_tool_libcbase.h 82 #define VG_STREQN(n,s1,s2) ( (s1 != NULL && s2 != NULL \
  /external/valgrind/main/callgrind/
clo.c 470 else if VG_STREQN(12, arg, "--ct-verbose") {
485 else if VG_STREQN(10, arg, "--fn-group") {
494 else if VG_STREQN(18, arg, "--separate-callers") {
503 else if VG_STREQN(15, arg, "--separate-recs") {
  /external/valgrind/main/coregrind/
m_main.c 452 if (VG_STREQN(2, arg, "--") &&
453 VG_STREQN(toolname_len, arg+2, toolname) &&
454 VG_STREQN(1, arg+2+toolname_len, ":"))
484 if VG_STREQN( 7, arg, "--tool=") {}
485 else if VG_STREQN(20, arg, "--command-line-only=") {}
488 else if VG_STREQN(16, arg, "--max-stackframe") {}
489 else if VG_STREQN(16, arg, "--main-stacksize") {}
490 else if VG_STREQN(11, arg, "--sim-hints") {}
491 else if VG_STREQN(14, arg, "--profile-heap") {}
492 else if VG_STREQN(14, arg, "--core-redzone-size") {
    [all...]

Completed in 100 milliseconds