Lines Matching refs:bad_ptr
838 char *bad_ptr = rte_malloc(type, size, align); in test_malloc_bad_params() local
839 if (bad_ptr != NULL) in test_malloc_bad_params()
843 bad_ptr = rte_realloc(NULL, size, align); in test_malloc_bad_params()
844 if (bad_ptr != NULL) in test_malloc_bad_params()
851 bad_ptr = rte_malloc(type, size, align); in test_malloc_bad_params()
852 if (bad_ptr != NULL) in test_malloc_bad_params()
856 bad_ptr = rte_realloc(NULL, size, align); in test_malloc_bad_params()
857 if (bad_ptr != NULL) in test_malloc_bad_params()
867 bad_ptr = rte_malloc(type, size, align); in test_malloc_bad_params()
868 if (bad_ptr != NULL) in test_malloc_bad_params()
871 bad_ptr = rte_realloc(NULL, size, align); in test_malloc_bad_params()
872 if (bad_ptr != NULL) in test_malloc_bad_params()
879 rte_free(bad_ptr); in test_malloc_bad_params()