Lines Matching refs:ch_t
32 copy_cooked(ch_t ** ppDest, char const ** ppSrc) in copy_cooked()
34 ch_t * pDest = (ch_t *)*ppDest; in copy_cooked()
35 const ch_t * pSrc = (const ch_t *)(*ppSrc + 1); in copy_cooked()
38 ch_t ch = *(pSrc++); in copy_cooked()
54 *ppDest = (ch_t *)pDest; /* next spot for storing character */ in copy_cooked()
60 copy_raw(ch_t ** ppDest, char const ** ppSrc) in copy_raw()
62 ch_t * pDest = *ppDest; in copy_raw()
66 ch_t ch = *(pSrc++); in copy_raw()
137 + ((size_t)max_token_ct * sizeof(ch_t *))); in alloc_token_list()
142 else res->tkn_list[0] = (ch_t *)(res->tkn_list + (max_token_ct - 1)); in alloc_token_list()
221 ch_t * pzDest; in ao_string_tokenize()
229 pzDest = (ch_t *)(res->tkn_list[0]); in ao_string_tokenize()
235 int ch = (ch_t)*str; in ao_string_tokenize()