Lines Matching refs:tbl
2580 dtype_tbl_t (*tbl)[];
2594 if ((tbl = calloc(max_attr, sizeof (dtype_tbl_t))) == NULL) {
2601 (*tbl)[j].dt_name = xmlStrdup(BAD_CAST tok);
2605 free((*tbl)[j].dt_name);
2608 free(tbl);
2614 (*tbl)[j++].dt_type = i;
2618 free((*tbl)[j].dt_name);
2619 free(tbl);
2624 (*tbl)[j].dt_name = NULL; /* Terminate the table */
2626 return (tbl);
2648 dtype_tbl_t (*tbl)[] = elem_tbl[i].ett_dtype;
2651 if (tbl == NULL)
2653 for (j = 0; (*tbl)[j].dt_name != NULL; j++)
2654 if (xmlStrcmp(name, (*tbl)[j].dt_name) == 0)
2655 return ((*tbl)[j].dt_type); /* found */