Home
last modified time | relevance | path

Searched refs:UC (Results 1 – 25 of 47) sorted by relevance

12

/netbsd/src/usr.sbin/faithd/
Dftp.c559 6, 16, UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]), in ftp_copyresult()
560 UC(a[4]), UC(a[5]), UC(a[6]), UC(a[7]), in ftp_copyresult()
561 UC(a[8]), UC(a[9]), UC(a[10]), UC(a[11]), in ftp_copyresult()
562 UC(a[12]), UC(a[13]), UC(a[14]), UC(a[15]), in ftp_copyresult()
563 2, UC(p[0]), UC(p[1])); in ftp_copyresult()
735 UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1])); in ftp_copycommand()
Dfaithd.h65 #define UC(b) (((int)b)&0xff) macro
/netbsd/src/common/lib/libc/string/
Dstrcspn.c49 #define UC(a) ((unsigned int)(unsigned char)(a)) in strcspn() macro
63 set[UC(*charset) >> 3] |= idx[UC(*charset) & 7]; in strcspn()
66 if (set[UC(*t) >> 3] & idx[UC(*t) & 7]) in strcspn()
Dstrspn.c48 #define UC(a) ((unsigned int)(unsigned char)(a)) in strspn() macro
63 set[UC(*charset) >> 3] |= idx[UC(*charset) & 7]; in strspn()
66 if ((set[UC(*t) >> 3] & idx[UC(*t) & 7]) == 0) in strspn()
Dstrpbrk.c41 #define UC(a) ((unsigned int)(unsigned char)(a)) macro
70 ADD_TO_SET(UC(*charset)); in strpbrk()
73 if (IS_IN_SET(UC(*s))) in strpbrk()
/netbsd/src/crypto/external/bsd/openssl/dist/test/
Dhmactest.c86 #define UC(a) ((const unsigned char *)(a)) macro
102 UC(test[idx].data), test[idx].data_len, NULL, NULL), in test_hmac_md5()
118 || !TEST_false(HMAC_Update(ctx, UC(test[4].data), test[4].data_len)) in test_hmac_bad()
120 || !TEST_false(HMAC_Update(ctx, UC(test[4].data), test[4].data_len))) in test_hmac_bad()
144 || !TEST_false(HMAC_Update(ctx, UC(test[4].data), test[4].data_len)) in test_hmac_run()
149 || !TEST_true(HMAC_Update(ctx, UC(test[4].data), test[4].data_len)) in test_hmac_run()
162 || !TEST_true(HMAC_Update(ctx, UC(test[5].data), test[5].data_len)) in test_hmac_run()
171 || !TEST_true(HMAC_Update(ctx, UC(test[6].data), test[6].data_len)) in test_hmac_run()
180 || !TEST_true(HMAC_Update(ctx, UC(test[6].data), test[6].data_len)) in test_hmac_run()
192 || !TEST_true(HMAC_Update(ctx, UC(test[6].data), test[6].data_len)) in test_hmac_run()
[all …]
/netbsd/src/sys/arch/x68k/stand/common/
Dxprintf.c43 #define UC(c) ((unsigned char) (c)) macro
44 #define IS_SJIS1(c) ((UC(c) > 0x80 && UC(c) < 0xa0) || \
45 (UC(c) >= 0xe0 && UC(c) <= 0xfc))
46 #define IS_SJIS2(c) (UC(c) >= 0x40 && UC(c) <= 0xfc && UC(c) != 0x7f)
/netbsd/src/tests/net/net/
Dt_ipaddress.sh50 check_route $net 'link#2' UC shmif0
67 check_route $net 'link#2' UC shmif0
97 check_route $net 'link#2' UC shmif0
114 check_route $net 'link#2' UC shmif0
211 check_route $net 'link#2' UC shmif0
223 check_route $net 'link#2' UC shmif0
236 check_route $net 'link#2' UC shmif0
/netbsd/src/share/examples/refuse/ian/libfetch/
Dftp.c833 #define UC(b) (((int)b)&0xff) in _ftp_transfer() macro
851 UC(ap[0]), UC(ap[1]), UC(ap[2]), UC(ap[3]), in _ftp_transfer()
852 UC(ap[4]), UC(ap[5]), UC(ap[6]), UC(ap[7]), in _ftp_transfer()
853 UC(ap[8]), UC(ap[9]), UC(ap[10]), UC(ap[11]), in _ftp_transfer()
854 UC(ap[12]), UC(ap[13]), UC(ap[14]), UC(ap[15]), in _ftp_transfer()
/netbsd/src/libexec/ftpd/
Dftpd.c2638 #define UC(b) (((int) b) & 0xff) in statcmd() macro
2641 UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]), in statcmd()
2642 UC(p[0]), UC(p[1])); in statcmd()
2673 cprintf(stdout, ",%d", UC(a[i])); in statcmd()
2675 2, UC(p[0]), UC(p[1])); in statcmd()
2676 #undef UC in statcmd()
3084 #define UC(b) (((int) b) & 0xff) in passive() macro
3086 reply(227, "Entering Passive Mode (%d,%d,%d,%d,%d,%d)", UC(a[0]), in passive()
3087 UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1])); in passive()
3210 #define UC(b) (((int) b) & 0xff) in long_passive() macro
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
Dref-types.cc59 unsigned char UC; in main2() local
69 unsigned char &rUC = UC; in main2()
79 UC = 21; in main2()
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
Dpointers.c183 unsigned char UC, *pUC; in more_code() local
194 UC = 21; in more_code()
209 pUC = &UC; in more_code()
/netbsd/src/bin/csh/
Ddir.c272 #define UC (unsigned char) in dnormalize() macro
273 #define ISDOT(c) (UC(c)[0] == '.' && ((UC(c)[1] == '\0') || (UC(c)[1] == '/'))) in dnormalize()
274 #define ISDOTDOT(c) (UC(c)[0] == '.' && ISDOT(&((c)[1]))) in dnormalize()
/netbsd/src/external/bsd/ipf/dist/FWTK/
Dfwtkp282 #define UC(c) (((int)c) & 0xff)
283 sprintf(buf,"PORT %d,%d,%d,%d,%d,%d\r\n",UC(k[0]),UC(k[1]),UC(k[2]),
284 UC(k[3]),UC(l[0]),UC(l[1]));
/netbsd/src/usr.bin/ftp/
Dftp.c1375 #define UC(b) (((int)b)&0xff) in initconn() macro
1478 UC(addr[i]); in initconn()
1645 UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]), in initconn()
1646 UC(p[0]), UC(p[1])); in initconn()
/netbsd/src/external/bsd/pcc/dist/pcc/cc/ccom/
Dscan.l42 UC (L|u|U)
129 {UC}'(\\.|[^\\'])*' { yylval.nodep = wcharcon(); return(C_ICON); }
/netbsd/src/libexec/getty/
Dmain.c368 if (upper || UC) in main()
520 if ((upper && !lower && !LC) || UC) in getname()
Dgettytab.h159 #define UC gettyflags[14].value macro
/netbsd/src/external/gpl3/gcc/dist/libcpp/
Dlex.cc42 { UC"%:", UC"%:%:", UC"<:", UC":>", UC"<%", UC"%>" };
44 #define OP(e, s) { SPELL_OPERATOR, UC s },
45 #define TK(e, s) { SPELL_ ## s, UC #e },
2354 accum.append (pfile, UC"\\", 1); in lex_raw_string()
2363 accum.append (pfile, UC" ", 1); in lex_raw_string()
2365 accum.append (pfile, UC"\n", 1); in lex_raw_string()
2391 accum.append (pfile, UC"??", 2); in lex_raw_string()
Ddirectives.cc212 do_linemarker, UC"#", 1, KANDR, IN_I
797 dir = UC"pragma dependency"; in parse_include()
1280 node = cpp_lookup (pfile, UC space, strlen (space)); in register_pragma_1()
1309 node = cpp_lookup (pfile, UC name, strlen (name)); in register_pragma_1()
1461 pe->pragma = cpp_lookup (pfile, UC *sd, strlen (*sd)); in restore_registered_pragmas()
/netbsd/src/tests/net/route/
Dt_flags6.sh90 check_route_flags fc00::/64 UC
Dt_flags.sh107 check_route_flags 10.0.0/24 UC
/netbsd/src/external/bsd/libarchive/dist/
DCOPYING16 a 3-clause UC Regents copyright; please read the individual source
/netbsd/src/usr.bin/sed/TEST/
Dhanoi.sed43 # Math, UC Berkeley 94720 USA
/netbsd/src/sys/dev/
Dipmi.c1549 #define UC 0x10 macro
1610 if ((valid & (UC|UW)) == (UC|UW) && data[5] < data[4]) in ipmi_get_sensor_limits()
1611 valid ^= UC; in ipmi_get_sensor_limits()
1624 if (valid & UC && data[5] != 0xff) { in ipmi_get_sensor_limits()

12