Searched refs:p2 (Results 1 – 4 of 4) sorted by relevance
11 void *p2; in main() local24 p2 = dlopen ("dblloadmod2.so", RTLD_LAZY); in main()25 if (p2 == NULL) in main()37 fp = dlsym (p2, "xyzzy"); in main()46 if (dlclose (p2) != 0) in main()
11 void *p2; in main() local24 p2 = dlopen ("dblloadmod2.so", RTLD_LAZY); in main()46 if (dlclose (p2) != 0) in main()
359 _dl_cache_libcmp (const char *p1, const char *p2) in _dl_cache_libcmp() argument365 if (*p2 >= '0' && *p2 <= '9') in _dl_cache_libcmp()372 val2 = *p2++ - '0'; in _dl_cache_libcmp()375 while (*p2 >= '0' && *p2 <= '9') in _dl_cache_libcmp()376 val2 = val2 * 10 + *p2++ - '0'; in _dl_cache_libcmp()383 else if (*p2 >= '0' && *p2 <= '9') in _dl_cache_libcmp()385 else if (*p1 != *p2) in _dl_cache_libcmp()386 return *p1 - *p2; in _dl_cache_libcmp()390 ++p2; in _dl_cache_libcmp()393 return *p1 - *p2; in _dl_cache_libcmp()
1037 const struct known_symbol *p2 = (const struct known_symbol *) o2; in symorder() local1039 return p1->addr - p2->addr; in symorder()1263 countorder (const void *p1, const void *p2) in countorder() argument1266 struct known_symbol *s2 = (struct known_symbol *) p2; in countorder()
Completed in 9 milliseconds