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

1234

/freebsd-11-stable/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))
218 if (!isdigit(UChar(*bp)))
259 return ((isDigit(UChar(c)) || (c == '-')) ? TRUE : FALSE);
H A Dfrm_req_name.c161 buf[i] = (char)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))
246 if (!isdigit(UChar(*bp)))
255 if (!isdigit(UChar(*bp)))
/freebsd-11-stable/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...]
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dkey_defined.c45 if (UChar(*str) == UChar(ptr->ch)) {
H A Dlib_insnstr.c62 _nc_insert_ch(sp, win, (chtype) UChar(*cp));
H A Dtries.c130 if (UChar((*tree)->ch) == UChar(*string)) {
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtransform.c54 if (tolower(UChar(a[n])) != tolower(UChar(ignore[n - first]))) {
H A Dtabs.c98 if (isdigit(UChar(ch))) {
215 ch = UChar(result[j]);
306 ch = UChar(tab_list[n]);
330 (isdigit(UChar(*value)) ||
331 isspace(UChar(*value)) ||
332 strchr("+,", UChar(*value)) != 0)) {
465 if (isdigit(UChar(*option))) {
H A Dprogs.priv.h194 # define isascii(c) (UChar(c) <= 127)
200 #define UChar(c) ((unsigned char)(c)) macro
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dcomp_expand.c49 #define REALCTL(s) (UChar(*(s)) < 127 && iscntrl(UChar(*(s))))
50 #define REALPRINT(s) (UChar(*(s)) < 127 && isprint(UChar(*(s))))
81 while ((ch = UChar(*str)) != 0) {
112 && isdigit(UChar(str[1]))) {
182 && (!islong || isdigit(UChar(str[1])))) {
H A Dlib_tputs.c311 if (isdigit(UChar(*string))) {
312 while (isdigit(UChar(*string))) {
319 if (isdigit(UChar(*string))) {
323 while (isdigit(UChar(*string)))
348 if ((!isdigit(UChar(*string)) && *string != '.')
356 while (isdigit(UChar(*string))) {
363 if (isdigit(UChar(*string))) {
367 while (isdigit(UChar(*string)))
H A Dcaptoinfo.c196 while (isdigit(UChar(*sp))) {
297 if (parameterized >= 0 && isdigit(UChar(*s)))
299 if (!(isdigit(UChar(*s)) || *s == '*' || *s == '.'))
467 unctrl((chtype) *s), UChar(*s), cap);
484 if (isdigit(UChar(*s)) || *s == '*' || *s == '.')
508 && isdigit(UChar(ch1))
509 && isdigit(UChar(ch2))
596 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*')
602 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*')
633 if (isdigit(UChar(xx
[all...]
H A Dcomp_scan.c139 if (!isspace(UChar(bufptr[len]))) {
264 return UChar(the_char);
433 if (!isalnum(UChar(ch))
440 terminfo_punct, unctrl(UChar(ch)));
509 for (s = bufptr; isspace(UChar(*s)); ++s) {
512 if (islower(UChar(*s))) {
514 while (isalnum(UChar(*s))) {
606 if (isspace(UChar(*s))) {
629 if (!isalnum(UChar(ch))) {
658 tok_buf, unctrl(UChar(c
[all...]
H A Daccess.c49 #define LOWERCASE(c) ((isalpha(UChar(c)) && isupper(UChar(c))) ? tolower(UChar(c)) : (c))
H A Dlib_tparm.c287 if (isdigit(UChar(*s))) {
389 i = (UChar(*cp) - '0');
413 while (isdigit(UChar(*cp))) {
542 save_char(UChar(*cp));
574 i = (UChar(*cp) - '1');
586 i = (UChar(*cp) - 'A');
589 i = (UChar(*cp) - 'a');
597 i = (UChar(*cp) - 'A');
600 i = (UChar(*cp) - 'a');
607 npush(UChar(*c
[all...]
/freebsd-11-stable/contrib/ncurses/menu/
H A Dm_pad.c68 if (!isprint(UChar(pad)))
H A Dm_req_name.c116 buf[i] = (char)toupper(UChar(buf[i]));
/freebsd-11-stable/contrib/ncurses/ncurses/
H A Dbuild.priv.h81 #define UChar(c) ((unsigned char)(c)) macro
/freebsd-11-stable/contrib/ncurses/ncurses/trace/
H A Dlib_tracechr.c62 } else if (!is8bits(ch) || !isprint(UChar(ch))) {
/freebsd-11-stable/contrib/ncurses/ncurses/widechar/
H A Dcharable.c57 result = UChar(temp[0]);

Completed in 145 milliseconds

1234