Searched refs:ch (Results 1 - 25 of 80) sorted by last modified time

1234

/barrelfish-master/tools/usbboot/
H A Dusbboot.c175 if(id.id.ch == OMAP44xx_ch_enabled)
177 else if(id.id.ch == OMAP44xx_ch_disabled)
180 printf("Unrecognised or corrupted CH setting: %02x\n", id.id.ch);
/barrelfish-master/lib/cxx/cxx/
H A Dlocale.cpp1264 wint_t ch = static_cast<wint_t>(c);
1265 if ((m & space) == space) result |= (iswspace_l(ch, __l) != 0);
1266 if ((m & print) == print) result |= (iswprint_l(ch, __l) != 0);
1267 if ((m & cntrl) == cntrl) result |= (iswcntrl_l(ch, __l) != 0);
1268 if ((m & upper) == upper) result |= (iswupper_l(ch, __l) != 0);
1269 if ((m & lower) == lower) result |= (iswlower_l(ch, __l) != 0);
1270 if ((m & alpha) == alpha) result |= (iswalpha_l(ch, __l) != 0);
1271 if ((m & digit) == digit) result |= (iswdigit_l(ch, __l) != 0);
1272 if ((m & punct) == punct) result |= (iswpunct_l(ch, __l) != 0);
1273 if ((m & xdigit) == xdigit) result |= (iswxdigit_l(ch, __
1289 wint_t ch = static_cast<wint_t>(*low); local
[all...]
/barrelfish-master/kernel/
H A Dprintf.c262 int ch; /* character from fmt */ local
318 ch = *fmt++;
320 switch (ch) {
351 if ((ch = *fmt++) == '*') {
357 while (is_digit(ch)) {
358 n = 10 * n + to_digit(ch);
359 ch = *fmt++;
382 n = 10 * n + to_digit(ch);
383 ch = *fmt++;
384 } while (is_digit(ch));
[all...]
H A Dgdb_stub.c87 static int fromhex(char ch) argument
89 if ((ch >= 'a') && (ch <= 'f')) {
90 return ch - 'a' + 10;
91 } else if ((ch >= '0') && (ch <= '9')) {
92 return ch - '0';
93 } else if ((ch >= 'A') && (ch <= 'F')) {
94 return ch
141 uint8_t ch; local
172 uint8_t ch; local
200 char ch = 0; /* shut up a useless deputy warning */ local
255 char ch = buffer[pos]; local
[all...]
/barrelfish-master/include/cxx/
H A D__bsd_locale_defaults.h22 #define __libcpp_btowc_l(ch, loc) btowc_l(ch, loc)
/barrelfish-master/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dregcomp.c817 == static char othercase(int ch);
819 static char /* if no counterpart, return ch */
820 othercase(ch)
821 int ch;
823 assert(isalpha(ch));
824 if (isupper(ch))
825 return(tolower(ch));
826 else if (islower(ch))
827 return(toupper(ch));
829 return(ch);
[all...]
H A Dengine.c800 == register states bef, int ch, register states aft);
812 step(g, start, stop, bef, ch, aft)
817 int ch; /* character or NONCHAR code */
835 assert(!NONCHAR(ch) || ch != (char)OPND(s));
836 if (ch == (char)OPND(s))
840 if (ch == BOL || ch == BOLEOL)
844 if (ch == EOL || ch
[all...]
H A Ddebug.c229 == static char *regchar(int ch);
232 regchar(ch)
233 int ch;
237 if (isprint(ch) || ch == ' ')
238 sprintf(buf, "%c", ch);
240 sprintf(buf, "\\%o", ch);
H A DMakefile108 POST=mkh regex.3 regex.7 tests $(DTRH) $(ALLSRC) fake/*.[ch]
/barrelfish-master/usr/eclipseclp/Usc/
H A DINSTALL21 ( cd $ECLIPSEARCH; ln -s ../src/*.[ch] ../src/*.in ../src/configure . )
/barrelfish-master/usr/eclipseclp/Pds/
H A DINSTALL44 ( cd $ECLIPSEARCH; ln -s ../src/*.[ch] ../src/*.in ../src/configure . )
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dwrite.c1918 int ch = (number-base) % base; local
1919 buf[pos--] = (ch < 10) ? ch + '0' : ch + 'a' - 10;
1930 int ch = number % base; local
1931 buf[pos--] = (ch < 10) ? ch + '0' : ch + 'a' - 10;
H A Dio.c1770 char ch = c; local
1774 return StreamMethods(nst).outf(nst, &ch, 1);
H A Dbip_strings.c1130 uint32 ch; local
1151 ch = pw->val.nint;
1152 if (ch < 0x80) {
1153 *s++ = ch;
1154 } else if (ch < 0x800) {
1155 s[1] = ch & 0xBF | 0x80; ch >>= 6;
1156 s[0] = ch | 0xC0;
1158 } else if (ch < 0x10000) {
1159 s[2] = ch
[all...]
H A Dbip_io.c2556 #define CheckSetMember(ch,nset,pset,match) \
2558 if ((ch) == pset[match-1]) \
/barrelfish-master/usr/eclipseclp/Eplex/
H A Deplex.c1375 CPXCHANNELptr ch; local
1388 case 0: ch = cpxresults; break;
1389 case 1: ch = cpxerror; break;
1390 case 2: ch = cpxwarning; break;
1391 case 3: ch = cpxlog; break;
1397 CPXdelfuncdest(cpx_env, ch, (void *) nst, eclipse_out);
1400 if (CPXaddfuncdest(cpx_env, ch, (void *) nst, eclipse_out))
H A Dcoinplex.cpp2038 int ch = number % 10; local
2039 lp->varnames[i][pos--] = ch + '0';
/barrelfish-master/usr/eclipseclp/Alog/
H A DINSTALL21 ( cd $ECLIPSEARCH; ln -s ../src/*.[ch] ../src/*.in ../src/configure . )
/barrelfish-master/tools/usbboot/include/omap4/
H A Dboot.h26 uint8_t ch; member in struct:omap44xx_subblock_id
/barrelfish-master/tools/fastmodels/
H A Dmain.c487 uint64_t ch :1; // CH member in struct:armv8_l1_entry::__anon1427
537 l1_table[j].block.ch= 1; /* Contiguous, combine TLB entries */
578 l1_table[j].block.ch= 1; /* Contiguous, combine TLB entries */
/barrelfish-master/lib/tommath/pre_gen/
H A Dmpi.c3054 int err, ch, neg, y; local
3060 ch = fgetc(stream);
3061 if (ch == '-') {
3063 ch = fgetc(stream);
3071 if (mp_s_rmap[y] == ch) {
3087 ch = fgetc(stream);
6390 char ch; local
6419 ch = (char) ((radix < 36) ? toupper ((int)*str) : *str);
6421 if (ch == mp_s_rmap[y]) {
/barrelfish-master/lib/tommath/mtest/
H A Dmpi.h215 int mp_char2value(char ch, int r);
H A Dmpi.c201 int s_mp_tovalue(char ch, int r); /* convert ch to value */
2559 char ch; local
2575 ch = s_mp_todigit(rem, radix, 0);
2577 str[pos++] = ch;
2607 /* {{{ mp_char2value(ch, r) */
2609 int mp_char2value(char ch, int r) argument
2611 return s_mp_tovalue(ch, r);
3891 /* {{{ s_mp_tovalue(ch, r) */
3901 int s_mp_tovalue(char ch, in argument
3945 char ch; local
[all...]
/barrelfish-master/lib/tommath/
H A Dbn_mp_read_radix.c22 char ch; local
51 ch = (char) ((radix < 36) ? toupper ((int)*str) : *str);
53 if (ch == mp_s_rmap[y]) {
H A Dbn_mp_fread.c21 int err, ch, neg, y; local
27 ch = fgetc(stream);
28 if (ch == '-') {
30 ch = fgetc(stream);
38 if (mp_s_rmap[y] == ch) {
54 ch = fgetc(stream);

Completed in 199 milliseconds

1234