Searched refs:ch (Results 76 - 100 of 160) sorted by relevance

1234567

/haiku/src/libs/mapm/
H A Dmapm_fpf.c108 char ch, *cpd, *cps; local
169 ch = cps[kk++];
170 if ((ch == '\0') || (jj != 0))
173 if (isdigit((int)ch))
175 if (ch != '0')
H A Dmapm_rnd.c218 char ch, *p1, *p2; local
229 ch = *p1;
231 *p2-- = ch;
/haiku/src/apps/stylededit/
H A DStyledEditView.cpp224 unsigned char ch = ByteAt(i); local
225 if ((ch & 0xC0) != 0x80) {
226 if (ch == '\t')
/haiku/src/add-ons/input_server/devices/virtio/
H A DVirtioInputDevice.cpp414 char *ch; local
418 ch = fChars.Get() + fKeyMap->option_caps_shift_map[code];
421 ch = fChars.Get() + fKeyMap->option_caps_map[code];
424 ch = fChars.Get() + fKeyMap->option_shift_map[code];
427 ch = fChars.Get() + fKeyMap->option_map[code];
430 ch = fChars.Get() + fKeyMap->caps_shift_map[code];
433 ch = fChars.Get() + fKeyMap->caps_map[code];
436 ch = fChars.Get() + fKeyMap->shift_map[code];
440 ch = fChars.Get() + fKeyMap->control_map[code];
442 ch
[all...]
/haiku/src/bin/network/telnet/
H A Dmain.c117 int ch; local
154 while ((ch = getopt(argc, argv,
158 switch(ch) {
/haiku/headers/private/interface/
H A Dutf8_functions.h13 IsInsideGlyph(uchar ch) argument
15 return (ch & 0xc0) == 0x80;
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregex_internal.c222 int i, ch;
226 ch = pstr->raw_mbs [pstr->raw_mbs_idx + byte_idx + i];
227 buf[i] = pstr->mbs[byte_idx + i] = pstr->trans[ch];
334 int ch = pstr->raw_mbs[pstr->raw_mbs_idx + byte_idx];
335 pstr->mbs[byte_idx] = ch;
337 pstr->wcs[byte_idx++] = (wchar_t) ch;
362 int i, ch;
366 ch = pstr->raw_mbs [pstr->raw_mbs_idx + src_idx + i];
367 buf[i] = pstr->trans[ch];
449 int ch
221 int i, ch; local
333 int ch = pstr->raw_mbs[pstr->raw_mbs_idx + byte_idx]; local
361 int i, ch; local
448 int ch = pstr->raw_mbs[pstr->raw_mbs_idx + src_idx]; local
526 int ch = pstr->raw_mbs[pstr->raw_mbs_idx + char_idx]; local
549 int ch = pstr->raw_mbs[pstr->raw_mbs_idx + buf_idx]; local
825 int ch, off; local
867 int off, ch; local
[all...]
H A Dregcomp.c294 re_set_fastmap (char *fastmap, int icase, int ch)
296 fastmap[ch] = 1;
298 fastmap[tolower (ch)] = 1;
343 int i, ch;
344 for (i = 0, ch = 0; i < BITSET_WORDS; ++i)
348 for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
350 re_set_fastmap (fastmap, icase, ch);
900 int i, j, ch;
907 for (i = 0, ch = 0; i < BITSET_WORDS; ++i)
908 for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
292 re_set_fastmap(char *fastmap, int icase, int ch) argument
341 int i, ch; local
895 int i, j, ch; local
930 int i, j, ch; local
2848 unsigned int ch; local
3319 unsigned char ch, delim = token->opr.c; local
3378 unsigned int ch; local
[all...]
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_size.c51 #define outchar(ch) \
54 register const int outc = (ch); \
82 #define PADN(ch, len) \
85 if (PAD (fp, ch, len) != len) \
/haiku/headers/private/kernel/arch/riscv64/
H A Darch_uart_sifive.h81 virtual int PutChar(char ch);
/haiku/src/system/libroot/posix/stdlib/
H A Dradixsort.c298 u_char ch; local
304 (ch = tr[*s]) != endch; s++, t++)
305 if (ch != tr[*t])
307 if (ch >= tr[*t])
/haiku/src/apps/haikudepot/util/
H A DDataIOUtils.h56 status_t _CharToInt(uint8 ch, uint8* value);
/haiku/headers/cpp/
H A Diostream.h190 else { int ch = _strbuf->sbumpc(); local
191 if (ch == EOF) set(ios::eofbit);
193 return ch;
202 istream& putback(char ch) { argument
203 if (good() && _strbuf->sputbackc(ch) == EOF) clear(ios::badbit);
211 istream& unget(char ch) { return putback(ch); } argument
/haiku/src/libs/stdc++/legacy/
H A Deditbuf.cc370 int edit_streambuf::overflow(int ch) argument
376 if (ch == EOF)
384 *pptr() = ch;
386 return (unsigned char)ch;
400 *pptr() = ch;
402 return (unsigned char)ch;
712 int ch = src_file.sbumpc(); local
713 if (ch == EOF) break;
714 dst_file.sputc(ch);
/haiku/headers/cpp/std/
H A Dbastring.cc442 int ch = sb->sbumpc (); local
443 if (ch == EOF)
448 else if (traits::is_del (ch))
453 s += static_cast<charT> (ch);
485 int ch = sb->sbumpc (); local
486 if (ch == EOF)
496 if (ch == delim)
499 s += static_cast<charT> (ch);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_main.cpp98 fuse_unmount(const char* mountpoint, struct fuse_chan* ch) argument
105 fuse_new(struct fuse_chan* ch, struct fuse_args* args, argument
/haiku/src/add-ons/print/drivers/pcl6/
H A DPCL6Writer.cpp118 uint8 ch = *string; local
119 while (ch != 0) {
120 Append(ch);
122 ch = *string;
/haiku/headers/private/kernel/platform/sbi/
H A Dsbi_syscalls.h63 void sbi_console_putchar_legacy(int ch); // EID #0x01
/haiku/src/apps/musiccollection/
H A DMusicCollectionWindow.cpp294 int ch = tolower(instring[i]); local
296 outstring += ch;
300 int ch = toupper(instring[i]); local
303 outstring += ch;
/haiku/headers/private/userlandfs/fuse/
H A Dfuse_lowlevel_compat.h145 int (*receive)(struct fuse_chan *ch, char *buf, size_t size);
146 int (*send)(struct fuse_chan *ch, const struct iovec iov[],
148 void (*destroy)(struct fuse_chan *ch);
154 int fuse_chan_receive(struct fuse_chan *ch, char *buf, size_t size);
/haiku/src/tests/system/network/multicast/
H A Dmultisend.c42 int fd, len, ch; local
48 while ((ch = getopt_long(argc, argv, "his:b:t:", longopts, 0)) > 0) {
49 switch (ch) {
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTHost.cpp146 char ch = *ptr; local
147 if (!((ch >= '0' && ch <= '9') || ch == '.' || ch == '-')) {
/haiku/src/system/libnetwork/netresolv/nameser/
H A Dns_name.c882 special(int ch) { argument
883 switch (ch) {
907 printable(int ch) { argument
908 return (ch > 0x20 && ch < 0x7f);
916 mklower(int ch) { argument
917 if (ch >= 0x41 && ch <= 0x5A)
918 return (ch + 0x20);
919 return (ch);
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_spectral.c228 /* ch 1 */ {2412, { {N2DBM(-101, 00), N2DBM( -94, 25)},
231 /* ch 6 */ {2437, { {N2DBM(-102, 25), N2DBM( -94, 25)},
234 /* ch 11 */ {2462, { {N2DBM(-101, 50), N2DBM( -95, 00)},
237 /* ch 36 */ {5180, { {N2DBM(-114, 25), N2DBM( -95, 00)},
240 /* ch 44 */ {5220, { {N2DBM(-113, 00), N2DBM( -95, 00)},
243 /* ch 64 */ {5320, { {N2DBM(-113, 00), N2DBM( -95, 00)}, // not cal'ed
246 /* ch 100*/ {5500, { {N2DBM(-111, 50), N2DBM( -93, 75)},
249 /* ch 120*/ {5600, { {N2DBM(-111, 50), N2DBM( -93, 75)},
252 /* ch 140*/ {5700, { {N2DBM(-111, 75), N2DBM( -95, 00)},
255 /* ch 15
265 ar9300_noise_floor_get(struct ath_hal *ah, int freq_mhz, int ch) argument
285 ar9300_noise_floor_power_get(struct ath_hal *ah, int freq_mhz, int ch) argument
[all...]
/haiku/src/add-ons/media/media-add-ons/firewire_dv/
H A DFireWireCard.cpp196 isoreq.ch = ich & 0x3f;
253 isoreq.ch = ich & 0x3f;
363 isoreq.ch = ich & 0x3f;

Completed in 237 milliseconds

1234567