Searched refs:Strtol (Results 1 - 4 of 4) sorted by relevance

/external/compiler-rt/lib/asan/tests/
H A Dasan_str_test.cc552 void RunStrtolOOBTest(PointerToCallStrtol Strtol) { argument
559 EXPECT_DEATH(Strtol(array + 3, NULL, 0), RightOOBReadMessage(0));
560 EXPECT_DEATH(Strtol(array - 1, NULL, 0), LeftOOBReadMessage(1));
562 Strtol(array, &endptr, 3);
564 EXPECT_DEATH(Strtol(array, NULL, 0), RightOOBReadMessage(0));
566 Strtol(array, &endptr, 35);
568 EXPECT_DEATH(Strtol(array, NULL, 36), RightOOBReadMessage(0));
571 Strtol(array, NULL, 36);
573 Strtol(array - 1, NULL, -1);
574 Strtol(arra
[all...]
/external/libedit/src/
H A Dchartype.h110 #define Strtol(p,e,b) wcstol(p,e,b) macro
165 #define Strtol(p,e,b) strtol(p,e,b) macro
H A Dhist.c178 num = (int)Strtol(argv[2], NULL, 0);
H A Dterminal.c1596 i = Strtol(*argv, &ep, 10);
1630 i = Strtol(*argv, &ep, 10);
1646 i = Strtol(*argv, &ep, 10);

Completed in 339 milliseconds