Lines Matching defs:Vcchar_t

115 typedef unsigned char		Vcchar_t;
138 { Vcchar_t* data; /* the data buffer */
139 Vcchar_t* next; /* current position in buffer */
140 Vcchar_t* endb; /* end of buffer or data in it */
161 { Vcchar_t* data; /* the encoding data for handle */
281 extern ssize_t vcbcktsort _ARG_((ssize_t*, ssize_t*, ssize_t, Vcchar_t*, ssize_t*));
309 extern ssize_t vchexcode _ARG_((Vcchar_t*, ssize_t, Vcchar_t*, ssize_t, int));
321 extern ssize_t vcioput2 _ARG_((Vcio_t*, Vcchar_t, Vcchar_t, Vcint_t));
322 extern Vcint_t vcioget2 _ARG_((Vcio_t*, Vcchar_t, Vcchar_t));
332 extern ssize_t _vcioput2 _ARG_((Vcio_t*, Vcint_t, Vcchar_t, Vcchar_t));
333 extern Vcint_t _vcioget2 _ARG_((Vcio_t*, Vcchar_t, Vcchar_t));
341 #define vcioinit(io,b,n) ((io)->data = (io)->next = (Vcchar_t*)(b), \
349 #define vcioputc(io, v) (*(io)->next++ = (Vcchar_t)(v) )
358 ((Vcint_t)(v) < (Vcint_t)(1<<7) ? (*(io)->next++ = (Vcchar_t)(v), 1) : \
361 #define vcioput2(io, v, a, z) _vcioput2((io),(Vcint_t)(v),(Vcchar_t)(a),(Vcchar_t)(z))
362 #define vcioget2(io, a, z) _vcioget2((io),(Vcchar_t)(a),(Vcchar_t)(z))
395 { *(io)->next++ = (Vcchar_t)((bt) >> (VC_BITSIZE-8)); (bt) <<= 8; } \
408 { *(io)->next++ = (Vcchar_t)((bt) >> (VC_BITSIZE-8)); (bt) = 0; } \
442 (!(vv) ? ((Vcchar_t*)0) : \
463 extern Vcchar_t* _vcbuffer _ARG_((Vcodex_t*, Vcchar_t*, ssize_t, ssize_t));
464 extern int vcrecode _ARG_((Vcodex_t*, Vcchar_t**, ssize_t*, ssize_t, int));
485 Vcchar_t* str; /* the source string */
535 Vcchar_t* src; /* source string, if any, to learn from */
537 Vcchar_t* tar; /* target string to be parsed */
540 Vcchar_t* cmap; /* character map for matching */