Searched refs:UChar (Results 1 - 25 of 77) sorted by relevance

1234

/freebsd-9.3-release/contrib/ncurses/form/
H A Dfty_ipv4.c57 if (isdigit(UChar(*bp))) /* Must start with digit */
63 while (isspace(UChar(*bp)))
85 return ((isdigit(UChar(c)) || (c == '.')) ? TRUE : FALSE);
H A Dfld_pad.c56 if (isprint(UChar(ch)))
H A Dfty_int.c40 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c)))
42 #define isDigit(c) isdigit(UChar(c))
186 if (!isdigit(UChar(*bp)))
226 return ((isDigit(UChar(c)) || (c == '-')) ? TRUE : FALSE);
H A Dfrm_req_name.c157 buf[i] = toupper(UChar(buf[i]));
H A Dfty_num.c50 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c)))
52 #define isDigit(c) isdigit(UChar(c))
212 if (!isdigit(UChar(*bp)))
221 if (!isdigit(UChar(*bp)))
/freebsd-9.3-release/contrib/bzip2/
H A Dbzlib_private.h43 typedef unsigned char UChar; typedef
171 ((UChar)cha)]; \
217 UChar* block;
219 UChar* zbits;
238 UChar unseqToSeq[256];
256 UChar selector [BZ_MAX_SELECTORS];
257 UChar selectorMtf[BZ_MAX_SELECTORS];
259 UChar len [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
282 BZ2_hbAssignCodes ( Int32*, UChar*, Int32, Int32, Int32 );
285 BZ2_hbMakeCodeLengths ( UChar*, Int3
[all...]
H A Dcompress.c49 s->zbits[s->numZ] = (UChar)(s->bsBuff >> 24);
62 = (UChar)(s->bsBuff >> 24); \
94 void bsPutUChar ( EState* s, UChar c )
122 UChar yy[256];
132 ((UChar*)s->arr2) [ 0 .. s->nblock-1 ]
144 (UChar*) (&((UChar*)s->arr2)[s->nblock])
151 UChar* block = s->block;
161 for (i = 0; i < s->nInUse; i++) yy[i] = (UChar) i;
164 UChar ll_
[all...]
H A Dbzlib.c204 s->block = (UChar*)s->arr2;
225 UChar ch = (UChar)(s->state_in_ch);
232 s->block[s->nblock] = (UChar)ch; s->nblock++;
235 s->block[s->nblock] = (UChar)ch; s->nblock++;
236 s->block[s->nblock] = (UChar)ch; s->nblock++;
239 s->block[s->nblock] = (UChar)ch; s->nblock++;
240 s->block[s->nblock] = (UChar)ch; s->nblock++;
241 s->block[s->nblock] = (UChar)ch; s->nblock++;
245 s->block[s->nblock] = (UChar)c
[all...]
H A Dbzip2.c163 typedef unsigned char UChar; typedef
233 struct { UChar b[8]; }
240 n->b[7] = (UChar)((hi32 >> 24) & 0xFF);
241 n->b[6] = (UChar)((hi32 >> 16) & 0xFF);
242 n->b[5] = (UChar)((hi32 >> 8) & 0xFF);
243 n->b[4] = (UChar) (hi32 & 0xFF);
244 n->b[3] = (UChar)((lo32 >> 24) & 0xFF);
245 n->b[2] = (UChar)((lo32 >> 16) & 0xFF);
246 n->b[1] = (UChar)((lo32 >> 8) & 0xFF);
247 n->b[0] = (UChar) (lo3
[all...]
/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A Dkey_defined.c45 if (UChar(*str) == UChar(ptr->ch)) {
H A Dlib_insnstr.c60 _nc_insert_ch(win, (chtype) UChar(*cp));
H A Dtries.c128 if (UChar((*tree)->ch) == UChar(*string)) {
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_tputs.c178 if (isdigit(UChar(*string))) {
179 while (isdigit(UChar(*string))) {
186 if (isdigit(UChar(*string))) {
190 while (isdigit(UChar(*string)))
215 if ((!isdigit(UChar(*string)) && *string != '.')
223 while (isdigit(UChar(*string))) {
230 if (isdigit(UChar(*string))) {
234 while (isdigit(UChar(*string)))
H A Dcomp_expand.c49 #define REALCTL(s) (UChar(*(s)) < 127 && iscntrl(UChar(*(s))))
50 #define REALPRINT(s) (UChar(*(s)) < 127 && isprint(UChar(*(s))))
79 while ((ch = UChar(*str)) != 0) {
109 && isdigit(UChar(str[1]))) {
179 && (!islong || isdigit(UChar(str[1])))) {
H A Daccess.c43 #define LOWERCASE(c) ((isalpha(UChar(c)) && isupper(UChar(c))) ? tolower(UChar(c)) : (c))
H A Dlib_tparm.c285 if (isdigit(UChar(*s))) {
387 i = (UChar(*cp) - '0');
411 while (isdigit(UChar(*cp))) {
530 save_char(UChar(*cp));
562 i = (UChar(*cp) - '1');
574 i = (UChar(*cp) - 'A');
577 i = (UChar(*cp) - 'a');
585 i = (UChar(*cp) - 'A');
588 i = (UChar(*cp) - 'a');
595 npush(UChar(*c
[all...]
H A Dcaptoinfo.c198 while (isdigit(UChar(*sp))) {
298 if (parameterized >= 0 && isdigit(UChar(*s)))
300 if (!(isdigit(UChar(*s)) || *s == '*' || *s == '.'))
468 unctrl((chtype) *s), UChar(*s), cap);
549 if (isdigit(UChar(*s)) || *s == '*' || *s == '.')
573 && isdigit(UChar(ch1))
574 && isdigit(UChar(ch2))
655 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*')
661 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*')
673 while (isdigit(UChar(*st
[all...]
/freebsd-9.3-release/contrib/ncurses/ncurses/widechar/
H A Dlib_add_wch.c60 code = waddch(win, UChar(PUTC_ch) | attrs);
64 if ((code = waddch(win, UChar(PUTC_buf[n]) | attrs)) == ERR) {
97 code = waddch(win, UChar(PUTC_ch) | attrs);
101 if ((code = waddch(win, UChar(PUTC_buf[n]) | attrs)) == ERR) {
H A Dcharable.c57 result = UChar(temp[0]);
/freebsd-9.3-release/contrib/ncurses/menu/
H A Dm_pad.c68 if (!isprint(UChar(pad)))
H A Dm_req_name.c112 buf[i] = toupper(UChar(buf[i]));
/freebsd-9.3-release/contrib/ncurses/ncurses/trace/
H A Dlib_tracechr.c59 } else if (!is8bits(ch) || !isprint(UChar(ch))) {
H A Dvisbuf.c76 } else if (UChar(c) == 0x7f) {
80 } else if (is7bits(c) && iscntrl(UChar(c))) {
119 tp = _nc_vischar(tp, UChar(c));
195 tp = _nc_vischar(tp, UChar(temp[k]));
301 _nc_vischar(temp, UChar(PUTC_buf[k]));
309 _nc_vischar(temp, UChar(buf[j]));
H A Dlib_tracedmp.c86 ep[j] = (char) ((UChar(test) == test
91 ? (iscntrl(UChar(test))
93 : UChar(test))
/freebsd-9.3-release/contrib/ncurses/progs/
H A Dprogs.priv.h184 # define isascii(c) (UChar(c) <= 127)
190 #define UChar(c) ((unsigned char)(c)) macro

Completed in 200 milliseconds

1234