Home
last modified time | relevance | path

Searched refs:ch2 (Results 1 – 25 of 79) sorted by relevance

1234

/freebsd/usr.bin/cmp/
H A Dspecial.c46 int ch1, ch2; in c_special() local
82 ch2 = getc(fp2); in c_special()
83 if (ch1 == EOF || ch2 == EOF) in c_special()
85 if (ch1 != ch2) { in c_special()
89 (long long)byte - 1, ch1, ch2); in c_special()
94 (long long)byte, ch1, ch1, ch2, in c_special()
95 ch2); in c_special()
98 (long long)byte, ch1, ch2); in c_special()
100 diffmsg(file1, file2, byte, line, ch1, ch2); in c_special()
/freebsd/crypto/openssl/test/recipes/
H A D70-test_tls13psk.t74 my $ch2 = ${$proxy->message_list}[2];
75 my $ch2seen = defined $ch2 && $ch2->mt() == TLSProxy::Message::MT_CLIENT_HELLO;
77 && defined ${$ch2->{extension_data}}{TLSProxy::Message::EXT_PSK};
97 $ch2 = ${$proxy->message_list}[2];
98 $ch2seen = defined $ch2 && $ch2->mt() == TLSProxy::Message::MT_CLIENT_HELLO;
100 && defined ${$ch2->extension_data}{TLSProxy::Message::EXT_PSK};
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dcaptoinfo.c540 char ch1, ch2; in bcd_expression() local
542 if (sscanf(str, fmt, &ch1, &ch2) == 2 in bcd_expression()
544 && isdigit(UChar(ch2)) in bcd_expression()
545 && (ch1 == ch2)) { in bcd_expression()
551 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer)) fmt, ch1, ch2); in bcd_expression()
624 char ch1 = 0, ch2 = 0; in _nc_infotocap() local
833 } else if (sscanf(str, "%%?%%{%d}%%>%%t%%'%c'%%+%%;", &c1, &ch2) == 2) { in _nc_infotocap()
835 bufptr = save_tc_inequality(bufptr, c1, ch2); in _nc_infotocap()
839 } else if (sscanf(str, "%%?%%'%c'%%>%%t%%'%c'%%+%%;", &ch1, &ch2) == 2) { in _nc_infotocap()
841 bufptr = save_tc_inequality(bufptr, ch1, ch2); in _nc_infotocap()
[all …]
/freebsd/usr.bin/look/
H A Dlook.c321 wchar_t ch1, ch2; in compare() local
326 len2 = mbrtowc(&ch2, s2, back - s2, NULL); in compare()
328 ch2 = *s2; in compare()
332 ch2 = towlower(ch2); in compare()
333 if (dflag && !iswalnum(ch2)) { in compare()
338 if (ch1 != ch2) in compare()
339 return (ch1 < ch2 ? LESS : GREATER); in compare()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DConvertUTF.cpp215 UTF32 ch, ch2; in ConvertUTF16toUTF32() local
223 ch2 = *source; in ConvertUTF16toUTF32()
225 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) { in ConvertUTF16toUTF32()
227 + (ch2 - UNI_SUR_LOW_START) + halfBase; in ConvertUTF16toUTF32()
257 fprintf(stderr, "ConvertUTF16toUTF32 illegal seq 0x%04x,%04x\n", ch, ch2); in ConvertUTF16toUTF32()
280 UTF32 ch2 = *source; in ConvertUTF16toUTF8() local
282 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) { in ConvertUTF16toUTF8()
284 + (ch2 - UNI_SUR_LOW_START) + halfBase; in ConvertUTF16toUTF8()
/freebsd/crypto/krb5/src/util/support/
H A Dutf8_conv.c156 uint16_t ch1, ch2; in k5_utf16le_to_utf8() local
176 ch2 = k5_input_get_uint16_le(&in); in k5_utf16le_to_utf8()
177 if (!IS_LOW_SURROGATE(ch2)) in k5_utf16le_to_utf8()
179 ch = COMPOSE(ch1, ch2); in k5_utf16le_to_utf8()
/freebsd/usr.sbin/spi/
H A Dspi.c405 int ch, ch2, ctr, cbcmd, err; in interpret_command_bytes() local
436 ch2 = hexval(*(ppos++)); in interpret_command_bytes()
437 if (ch2 < 0) { in interpret_command_bytes()
442 ch = (ch * 16 + ch2) & 0xff; /* convert to byte */ in interpret_command_bytes()
545 int ch, ch2, ch3, ncmd, lsb, err; in prep_write_buffer() local
598 ch2 = hexval(ch); in prep_write_buffer()
600 if (ch2 < 0) { in prep_write_buffer()
616 ch = ch2 * 16 + ch3; in prep_write_buffer()
/freebsd/usr.bin/patch/
H A Dpatch.c828 int ch1, ch2; in abort_hunk() local
855 ch2 = j <= pat_end ? pch_char(j) : -1; in abort_hunk()
859 } else if (ch1 == ' ' && ch2 == ' ') { in abort_hunk()
863 } else if (ch1 == '!' && ch2 == '!') { in abort_hunk()
869 while (j <= pat_end && ch2 == '!') { in abort_hunk()
872 ch2 = j <= pat_end ? pch_char(j) : -1; in abort_hunk()
876 } else if (ch2 == '+' || ch2 == ' ') { in abort_hunk()
877 rej_line(ch2, j); in abort_hunk()
883 rej_line(ch2, j); in abort_hunk()
/freebsd/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c146 } ch1, ch2; in ofwfb_bitblt_bitmap()
185 ch1.l = ch2.l = (bg << 24) | (bg << 16) | in ofwfb_bitblt_bitmap()
197 if (b & 0x08) ch2.c[0] = fg; in ofwfb_bitblt_bitmap()
198 if (b & 0x04) ch2.c[1] = fg; in ofwfb_bitblt_bitmap()
199 if (b & 0x02) ch2.c[2] = fg; in ofwfb_bitblt_bitmap()
200 if (b & 0x01) ch2.c[3] = fg; in ofwfb_bitblt_bitmap()
204 ch2.l; in ofwfb_bitblt_bitmap()
144 } ch1, ch2; ofwfb_bitblt_bitmap() local
/freebsd/sys/powerpc/ofw/
H A Dofw_syscons.c815 } ch1, ch2; in ofwfb_putc8() local
835 ch1.l = ch2.l = (bg << 24) | (bg << 16) | (bg << 8) | bg; in ofwfb_putc8()
846 if (fline & 0x08) ch2.c[0] = fg; in ofwfb_putc8()
847 if (fline & 0x04) ch2.c[1] = fg; in ofwfb_putc8()
848 if (fline & 0x02) ch2.c[2] = fg; in ofwfb_putc8()
849 if (fline & 0x01) ch2.c[3] = fg; in ofwfb_putc8()
852 addr[1] = ch2.l; in ofwfb_putc8()
/freebsd/contrib/dialog/
H A Drangebox.c132 chtype ch2 = winch(win); in draw_value() local
134 ch2 &= ~A_REVERSE; in draw_value()
136 (void) waddch(win, ch2); in draw_value()
H A Dguage.c170 chtype ch2 = winch(dialog); in repaint_text() local
172 ch2 &= ~A_REVERSE; in repaint_text()
174 (void) waddch(dialog, ch2); in repaint_text()
/freebsd/sys/dev/ath/ath_hal/ar9002/
H A Dar9280.c175 uint32_t f, ch, ch2; in ar9280SetChannel()
184 ch2 = ((ch * 25) / 5) + 9600; in ar9280SetChannel()
185 channelSel = (ch2 * 0x4000) / 15; in ar9280SetChannel()
/freebsd/usr.bin/sdiff/
H A Dsdiff.c462 int ch1, ch2; in bindiff() local
468 ch2 = getc_unlocked(f2); in bindiff()
469 } while (ch1 != EOF && ch2 != EOF && ch1 == ch2); in bindiff()
480 if (ch1 != EOF || ch2 != EOF) { in bindiff()
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dst,sta32x.txt35 - st,ch2-output-mapping: Channel 2 output mapping
94 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1
H A Dst,sta350.txt31 - st,ch2-output-mapping: Channel 2 output mapping
124 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1
/freebsd/sys/contrib/device-tree/src/arm/microchip/
H A Dat91-tse850-3.dts117 led-ch2-red {
121 led-ch2-green {
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock_link_test.h303 char ch2 = 'y'; in TEST() local
306 .WillOnce(SetArrayArgument<0>(&ch2, &ch2 + 1)); in TEST()
/freebsd/sys/contrib/device-tree/Bindings/clock/st/
H A Dst,quadfs.txt46 "clk-s-c0-fs0-ch2",
H A Dst,flexgen.txt46 | | ch2|----|-->| | | DIV | | DIV | | |
/freebsd/bin/sh/
H A Djobs.c1396 cmdtxt(n->nbinary.ch2); in cmdtxt()
1401 cmdtxt(n->nbinary.ch2); in cmdtxt()
1406 cmdtxt(n->nbinary.ch2); in cmdtxt()
1434 cmdtxtdogroup(n->nbinary.ch2); in cmdtxt()
1439 cmdtxtdogroup(n->nbinary.ch2); in cmdtxt()
H A Deval.c207 next = n->nbinary.ch2; in evaltree()
214 next = n->nbinary.ch2; in evaltree()
220 next = n->nbinary.ch2; in evaltree()
332 evaltree(n->nbinary.ch2, flags); in evalloop()
/freebsd/contrib/file/magic/Magdir/
H A Dapt5 # <http://www.fifi.org/doc/libapt-pkg-doc/cache.html/ch2.html>
/freebsd/sys/contrib/device-tree/Bindings/dma/
H A Drenesas,shdma.txt65 "ch0", "ch1", "ch2", "ch3",
/freebsd/sys/contrib/device-tree/src/arm/intel/pxa/
H A Dpxa300-raumfeld-speaker-one.dts120 st,ch2-output-mapping = /bits/ 8 <1>;

1234