Searched refs:VG_STREQN (Results 1 – 5 of 5) sorted by relevance
/external/valgrind/main/memcheck/tests/ |
D | unit_libcbase.c | 34 CHECK( ! VG_STREQN(0, NULL, NULL) ); in test_VG_STREQN() 35 CHECK( ! VG_STREQN(5, NULL, NULL) ); in test_VG_STREQN() 36 CHECK( ! VG_STREQN(0, NULL, "ab") ); in test_VG_STREQN() 37 CHECK( ! VG_STREQN(5, NULL, "ab") ); in test_VG_STREQN() 38 CHECK( ! VG_STREQN(0, "ab", NULL) ); in test_VG_STREQN() 39 CHECK( ! VG_STREQN(1, "", "a") ); in test_VG_STREQN() 40 CHECK( ! VG_STREQN(1, "a", "") ); in test_VG_STREQN() 41 CHECK( ! VG_STREQN(4, "abc", "abcd")); in test_VG_STREQN() 42 CHECK( ! VG_STREQN(4, "abcd", "abc") ); in test_VG_STREQN() 43 CHECK( ! VG_STREQN(1, "Abcd", "abcd")); in test_VG_STREQN() [all …]
|
/external/valgrind/main/include/ |
D | 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"=") && \
|
D | pub_tool_libcbase.h | 82 #define VG_STREQN(n,s1,s2) ( (s1 != NULL && s2 != NULL \ macro
|
/external/valgrind/main/callgrind/ |
D | clo.c | 470 else if VG_STREQN(12, arg, "--ct-verbose") { in CLG_() 485 else if VG_STREQN(10, arg, "--fn-group") { in CLG_() 494 else if VG_STREQN(18, arg, "--separate-callers") { in CLG_() 503 else if VG_STREQN(15, arg, "--separate-recs") { in CLG_()
|
/external/valgrind/main/coregrind/ |
D | m_main.c | 471 if (VG_STREQN(2, arg, "--") && in main_process_cmd_line_options() 472 VG_STREQN(toolname_len, arg+2, toolname) && in main_process_cmd_line_options() 473 VG_STREQN(1, arg+2+toolname_len, ":")) in main_process_cmd_line_options() 503 if VG_STREQN( 7, arg, "--tool=") {} in main_process_cmd_line_options() 504 else if VG_STREQN(20, arg, "--command-line-only=") {} in main_process_cmd_line_options() 507 else if VG_STREQN(16, arg, "--max-stackframe") {} in main_process_cmd_line_options() 508 else if VG_STREQN(16, arg, "--main-stacksize") {} in main_process_cmd_line_options() 509 else if VG_STREQN(14, arg, "--profile-heap") {} in main_process_cmd_line_options() 1098 if (VG_(strlen)(toolname) >= 4 && VG_STREQN(4, toolname, "exp-")) { in print_preamble()
|