| /freebsd-14.2/usr.bin/cmp/ |
| H A D | special.c | 53 int ch1, ch2; in c_special() local 89 ch2 = getc(fp2); in c_special() 90 if (ch1 == EOF || ch2 == EOF) in c_special() 92 if (ch1 != ch2) { in c_special() 96 (long long)byte - 1, ch1, ch2); in c_special() 101 (long long)byte, ch1, ch1, ch2, in c_special() 102 ch2); in c_special() 105 (long long)byte, ch1, ch2); in c_special() 107 diffmsg(file1, file2, byte, line, ch1, ch2); in c_special()
|
| /freebsd-14.2/crypto/openssl/test/recipes/ |
| H A D | 70-test_tls13psk.t | 76 my $ch2 = ${$proxy->message_list}[2]; 77 my $ch2seen = defined $ch2 && $ch2->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 79 && defined ${$ch2->{extension_data}}{TLSProxy::Message::EXT_PSK}; 99 $ch2 = ${$proxy->message_list}[2]; 100 $ch2seen = defined $ch2 && $ch2->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 102 && defined ${$ch2->extension_data}{TLSProxy::Message::EXT_PSK};
|
| /freebsd-14.2/contrib/ncurses/ncurses/tinfo/ |
| H A D | captoinfo.c | 541 char ch1, ch2; in bcd_expression() local 545 && isdigit(UChar(ch2)) in bcd_expression() 546 && (ch1 == ch2)) { in bcd_expression() 625 char ch1 = 0, ch2 = 0; in _nc_infotocap() local 848 && ch2 == 'c' in _nc_infotocap() 890 ch2 = 0; in _nc_infotocap() 897 ch2 = ch1; in _nc_infotocap() 899 if (digits == 2 && ch2 != '0') { in _nc_infotocap() 916 if (ch2 == '0' && !_nc_strict_bsd) { in _nc_infotocap() 917 ch2 = 0; in _nc_infotocap() [all …]
|
| /freebsd-14.2/usr.bin/look/ |
| H A D | look.c | 333 wchar_t ch1, ch2; in compare() local 338 len2 = mbrtowc(&ch2, s2, back - s2, NULL); in compare() 340 ch2 = *s2; in compare() 344 ch2 = towlower(ch2); in compare() 345 if (dflag && !iswalnum(ch2)) { in compare() 350 if (ch1 != ch2) in compare() 351 return (ch1 < ch2 ? LESS : GREATER); in compare()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ConvertUTF.cpp | 215 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-14.2/usr.sbin/spi/ |
| H A D | spi.c | 385 int ch, ch2, ctr, cbcmd, err; in interpret_command_bytes() local 416 ch2 = hexval(*(ppos++)); in interpret_command_bytes() 417 if (ch2 < 0) { in interpret_command_bytes() 422 ch = (ch * 16 + ch2) & 0xff; /* convert to byte */ in interpret_command_bytes() 525 int ch, ch2, ch3, ncmd, lsb, err; in prep_write_buffer() local 578 ch2 = hexval(ch); in prep_write_buffer() 580 if (ch2 < 0) { in prep_write_buffer() 596 ch = ch2 * 16 + ch3; in prep_write_buffer()
|
| /freebsd-14.2/usr.bin/patch/ |
| H A D | patch.c | 826 int ch1, ch2; in abort_hunk() local 853 ch2 = j <= pat_end ? pch_char(j) : -1; in abort_hunk() 857 } else if (ch1 == ' ' && ch2 == ' ') { in abort_hunk() 861 } else if (ch1 == '!' && ch2 == '!') { in abort_hunk() 867 while (j <= pat_end && ch2 == '!') { in abort_hunk() 870 ch2 = j <= pat_end ? pch_char(j) : -1; in abort_hunk() 874 } else if (ch2 == '+' || ch2 == ' ') { in abort_hunk() 875 rej_line(ch2, j); in abort_hunk() 881 rej_line(ch2, j); in abort_hunk()
|
| /freebsd-14.2/sys/dev/vt/hw/ofwfb/ |
| H A D | ofwfb.c | 147 } ch1, ch2; in ofwfb_bitblt_bitmap() local 186 ch1.l = ch2.l = (bg << 24) | (bg << 16) | in ofwfb_bitblt_bitmap() 198 if (b & 0x08) ch2.c[0] = fg; in ofwfb_bitblt_bitmap() 199 if (b & 0x04) ch2.c[1] = fg; in ofwfb_bitblt_bitmap() 200 if (b & 0x02) ch2.c[2] = fg; in ofwfb_bitblt_bitmap() 201 if (b & 0x01) ch2.c[3] = fg; in ofwfb_bitblt_bitmap() 205 ch2.l; in ofwfb_bitblt_bitmap()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | nvidia,tegra186-mc.yaml | 158 - const: ch2 177 - const: ch2 208 - const: ch2 250 reg-names = "sid", "broadcast", "ch0", "ch1", "ch2", "ch3";
|
| /freebsd-14.2/sys/powerpc/ofw/ |
| H A D | ofw_syscons.c | 816 } ch1, ch2; in ofwfb_putc8() local 836 ch1.l = ch2.l = (bg << 24) | (bg << 16) | (bg << 8) | bg; in ofwfb_putc8() 847 if (fline & 0x08) ch2.c[0] = fg; in ofwfb_putc8() 848 if (fline & 0x04) ch2.c[1] = fg; in ofwfb_putc8() 849 if (fline & 0x02) ch2.c[2] = fg; in ofwfb_putc8() 850 if (fline & 0x01) ch2.c[3] = fg; in ofwfb_putc8() 853 addr[1] = ch2.l; in ofwfb_putc8()
|
| /freebsd-14.2/contrib/dialog/ |
| H A D | rangebox.c | 132 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 D | guage.c | 170 chtype ch2 = winch(dialog); in repaint_text() local 172 ch2 &= ~A_REVERSE; in repaint_text() 174 (void) waddch(dialog, ch2); in repaint_text()
|
| /freebsd-14.2/sys/dev/ath/ath_hal/ar9002/ |
| H A D | ar9280.c | 175 uint32_t f, ch, ch2; in ar9280SetChannel() 184 ch2 = ((ch * 25) / 5) + 9600; in ar9280SetChannel() 185 channelSel = (ch2 * 0x4000) / 15; in ar9280SetChannel()
|
| /freebsd-14.2/usr.bin/sdiff/ |
| H A D | sdiff.c | 463 int ch1, ch2; in bindiff() local 469 ch2 = getc_unlocked(f2); in bindiff() 470 } while (ch1 != EOF && ch2 != EOF && ch1 == ch2); in bindiff() 481 if (ch1 != EOF || ch2 != EOF) { in bindiff()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/dma/ |
| H A D | renesas,rz-dmac.yaml | 37 - const: ch2 133 "ch0", "ch1", "ch2", "ch3",
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | st,stm32-timers.yaml | 45 enum: [ ch1, ch2, ch3, ch4, up, trig, com ] 161 dma-names = "ch1", "ch2", "ch3", "ch4", "up";
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/sound/ |
| H A D | st,sta32x.txt | 35 - st,ch2-output-mapping: Channel 2 output mapping 94 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1
|
| H A D | st,sta350.txt | 31 - st,ch2-output-mapping: Channel 2 output mapping 124 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1
|
| H A D | rohm,bd28623.yaml | 37 regulator phandle for the VCCP2 (for ch2) power supply
|
| /freebsd-14.2/sys/contrib/device-tree/src/arm/ |
| H A D | at91-tse850-3.dts | 117 led-ch2-red { 121 led-ch2-green {
|
| /freebsd-14.2/contrib/googletest/googlemock/test/ |
| H A D | gmock_link_test.h | 302 char ch2 = 'y'; in TEST() local 305 .WillOnce(SetArrayArgument<0>(&ch2, &ch2 + 1)); in TEST()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/clock/st/ |
| H A D | st,quadfs.txt | 46 "clk-s-c0-fs0-ch2",
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | apt | 5 # <http://www.fifi.org/doc/libapt-pkg-doc/cache.html/ch2.html>
|
| /freebsd-14.2/bin/sh/ |
| H A D | jobs.c | 1397 cmdtxt(n->nbinary.ch2); in cmdtxt() 1402 cmdtxt(n->nbinary.ch2); in cmdtxt() 1407 cmdtxt(n->nbinary.ch2); in cmdtxt() 1435 cmdtxtdogroup(n->nbinary.ch2); in cmdtxt() 1440 cmdtxtdogroup(n->nbinary.ch2); in cmdtxt()
|
| H A D | eval.c | 213 next = n->nbinary.ch2; in evaltree() 220 next = n->nbinary.ch2; in evaltree() 226 next = n->nbinary.ch2; in evaltree() 338 evaltree(n->nbinary.ch2, flags); in evalloop()
|