Lines Matching refs:bad_ptr
827 char *bad_ptr = rte_malloc(type, size, align); in test_malloc_bad_params() local
828 if (bad_ptr != NULL) in test_malloc_bad_params()
832 bad_ptr = rte_realloc(NULL, size, align); in test_malloc_bad_params()
833 if (bad_ptr != NULL) in test_malloc_bad_params()
840 bad_ptr = rte_malloc(type, size, align); in test_malloc_bad_params()
841 if (bad_ptr != NULL) in test_malloc_bad_params()
845 bad_ptr = rte_realloc(NULL, size, align); in test_malloc_bad_params()
846 if (bad_ptr != NULL) in test_malloc_bad_params()
856 bad_ptr = rte_malloc(type, size, align); in test_malloc_bad_params()
857 if (bad_ptr != NULL) in test_malloc_bad_params()
860 bad_ptr = rte_realloc(NULL, size, align); in test_malloc_bad_params()
861 if (bad_ptr != NULL) in test_malloc_bad_params()
868 if (bad_ptr) in test_malloc_bad_params()
869 rte_free(bad_ptr); in test_malloc_bad_params()