Lines Matching refs:board
87 * \return board (the allocated array)
92 SANE_String_Const *board = NULL;
111 board = (SANE_String_Const *)malloc(sizeof(SANE_String_Const) * ((*tabsize) + 1));
113 board = (SANE_String_Const *)realloc(tab, sizeof(SANE_String_Const) * ((*tabsize) + 1));
114 board[*tabsize - 1] = (SANE_String_Const)strdup(convert);
115 board[*tabsize] = NULL;
116 return (board);
123 * \return board (the allocated array)
128 SANE_Int *board = NULL;
138 board = malloc(sizeof(SANE_Int *) * (*tabsize) + 1);
141 board = realloc(tab, sizeof(SANE_Int *) * (*tabsize) + 1);
142 board[0] = *tabsize - 1;
143 board[*tabsize - 1] = cont;
144 board[*tabsize] = -1;
145 return (board);