Searched refs:code (Results 176 - 200 of 1465) sorted by relevance

1234567891011>>

/freebsd-current/sys/net/
H A Dbpf.h7 * This code is derived from the Stanford/CMU enet packet filter,
8 * (net/enet.c) distributed as part of 4.3BSD, and code contributed
15 * 1. Redistributions of source code must retain the above copyright
89 * It has nothing to do with the source code version.
225 * for reference code to access these fields from userspace.
251 #define BPF_CLASS(code) ((code) & 0x07)
262 #define BPF_SIZE(code) ((code) & 0x18)
267 #define BPF_MODE(code) ((cod
361 u_short code; member in struct:bpf_insn
[all...]
/freebsd-current/crypto/heimdal/lib/krb5/
H A Derror_string.c10 * 1. Redistributions of source code must retain the above copyright
59 * Set the context full error string for a specific error code.
65 * @param ret The error code
66 * @param fmt Error string for the error code
85 * Set the context full error string for a specific error code.
90 * @param ret The error code
91 * @param fmt Error string for the error code
121 * Prepend the context full error string for a specific error code.
127 * @param ret The error code
128 * @param fmt Error string for the error code
242 krb5_get_error_message(krb5_context context, krb5_error_code code) argument
[all...]
/freebsd-current/contrib/libcbor/test/
H A Dbad_inputs_test.c22 assert_true(res.error.code == CBOR_ERR_NOTENOUGHDATA);
30 assert_true(res.error.code == CBOR_ERR_MALFORMATED);
38 assert_true(res.error.code == CBOR_ERR_NOTENOUGHDATA);
47 assert_true(res.error.code == CBOR_ERR_MEMERROR);
53 assert_true(res.error.code == CBOR_ERR_MEMERROR);
65 assert_true(res.error.code == CBOR_ERR_SYNTAXERROR);
77 assert_true(res.error.code == CBOR_ERR_MEMERROR);
90 assert_true(res.error.code == CBOR_ERR_SYNTAXERROR);
98 assert_true(res.error.code == CBOR_ERR_SYNTAXERROR);
/freebsd-current/crypto/openssl/crypto/rc4/asm/
H A Drc4-x86_64.pl35 # Opteron... For reference, 1x in this case is RC4_CHAR C-code
42 # Intel P4 EM64T core was found to run the AMD64 code really slow...
45 # compose blended code, which would perform even within 30% marginal
59 # provided that loads are reordered even more aggressively! Both code
64 # If executed on Xeon, current RC4_CHAR code-path is 2.7x faster than
65 # RC4_INT code-path. While if executed on Opteron, it's only 25%
67 # is not implemented, then this final RC4_CHAR code-path should be
72 # Intel Core2 was observed to perform poorly on both code paths:-( It
77 # fit for Core2 and therefore the code was modified to skip cloop8 on
88 # The only code pat
[all...]
/freebsd-current/sys/libkern/
H A Diconv_ucs.c10 * 1. Redistributions of source code must retain the above copyright
67 static uint32_t encode_surrogate(uint32_t code);
176 uint32_t code; local
188 * (convert any code into ENCODING_UNICODE)
190 code = 0;
195 code = utf8_to_ucs4(p, &inlen, ir);
196 if (code == 0) {
202 code = towlower(code, dp->ctype);
204 code
524 encode_surrogate(uint32_t code) argument
[all...]
/freebsd-current/sys/dev/evdev/
H A Devdev.h8 * 1. Redistributions of source code must retain the above copyright
191 evdev_push_key(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
194 return (evdev_push_event(evdev, EV_KEY, code, value != 0));
198 evdev_push_rel(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
201 return (evdev_push_event(evdev, EV_REL, code, value));
205 evdev_push_abs(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
208 return (evdev_push_event(evdev, EV_ABS, code, value));
212 evdev_push_msc(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
215 return (evdev_push_event(evdev, EV_MSC, code, value));
219 evdev_push_led(struct evdev_dev *evdev, uint16_t code, int32_ argument
226 evdev_push_snd(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
233 evdev_push_sw(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dopt.exp9 *** Error code 2 (ignored)
17 *** Error code 1 (ignored)
24 *** Error code 2 (ignored)
H A Dvarname-make_print_var_on_error-jobs.exp3 *** [all] Error code 1
H A Ddeptgt-error.exp2 *** Error code 1 (continuing)
H A Djobs-error-nested-make.exp3 *** [nested] Error code 1
/freebsd-current/sys/i386/i386/
H A Dgdb_machdep.c11 * 1. Redistributions of source code must retain the above copyright
97 gdb_cpu_signal(int type, int code) argument
118 gdb_cpu_stop_reason(int type, int code) argument
124 /* NB: 'code' contains the value of dr6 at the trap. */
125 if ((code & DBREG_DR6_B(0)) != 0) {
128 if ((code & DBREG_DR6_B(1)) != 0) {
131 if ((code & DBREG_DR6_B(2)) != 0) {
134 if ((code & DBREG_DR6_B(3)) != 0) {
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dentries.c178 _nc_free_tinfo(int code) argument
180 T((T_CALLED("_nc_free_tinfo(%d)"), code));
182 exit(code);
187 exit_terminfo(int code) argument
189 T((T_CALLED("exit_terminfo(%d)"), code));
193 exit(code);
/freebsd-current/contrib/ntp/util/
H A Dtg.c45 * code is delayed one bit and the next digit (tens) needs only three
261 char code[100]; /* timecode */ local
367 memset(code, 0, sizeof(code));
377 snprintf(code, sizeof(code), "%01d%03d%02d%02d%01d",
379 printf("%s\n", code);
434 snprintf(code, sizeof(code),
437 printf("\n%s\n", code);
[all...]
/freebsd-current/sbin/dump/
H A Ddumprmt.c10 * 1. Redistributions of source code must retain the above copyright
315 char code[30], emsg[BUFSIZ]; local
317 rmtgets(code, sizeof (code));
318 if (*code == 'E' || *code == 'F') {
321 errno = atoi(code + 1);
322 if (*code == 'F')
326 if (*code != 'A') {
328 cp = code
[all...]
/freebsd-current/contrib/libxo/libxo/
H A Dxo.h14 * while minimizing the cost/impact on the code.
420 xo_warn_hc (xo_handle_t *xop, int code, const char *fmt, ...) PRINTFLIKE(3, 4);
423 xo_warn_c (int code, const char *fmt, ...) PRINTFLIKE(2, 3);
438 xo_errc (int eval, int code, const char *fmt, ...) NORETURN PRINTFLIKE(3, 4);
441 xo_message_hcv (xo_handle_t *xop, int code, const char *fmt, va_list vap) PRINTFLIKE(3, 0);
444 xo_message_hc (xo_handle_t *xop, int code, const char *fmt, ...) PRINTFLIKE(3, 4);
447 xo_message_c (int code, const char *fmt, ...) PRINTFLIKE(2, 3);
456 xo_emit_warn_hcv (xo_handle_t *xop, int as_warning, int code,
460 xo_emit_warn_hc (xo_handle_t *xop, int code, const char *fmt, ...);
463 xo_emit_warn_c (int code, cons
482 xo_emit_warn_hcvp(xo_handle_t *xop, int as_warning, int code, const char *fmt, va_list vap) argument
490 xo_emit_warn_hcp(xo_handle_t *xop, int code, const char *fmt, ...) argument
500 xo_emit_warn_cp(int code, const char *fmt, ...) argument
512 int code = errno; local
533 int code = errno; local
555 xo_emit_errc_p(int eval, int code, const char *fmt, ...) argument
[all...]
/freebsd-current/crypto/heimdal/appl/ftp/ftp/
H A Dftp.c8 * 1. Redistributions of source code must retain the above copyright
76 code = -1;
112 code = -1;
119 code = -1;
134 code = -1;
144 code = -1;
188 code = -1;
292 code = -1;
350 code = 221;
359 code
[all...]
/freebsd-current/contrib/libpcap/
H A Dbpf_dump.c6 * modification, are permitted provided that: (1) source code distributions
8 * distributions including binary code include the above copyright notice and
42 printf("%u %u %u %u\n", insn->code,
50 insn->code, insn->jt, insn->jf, insn->k);
/freebsd-current/contrib/com_err/
H A Dcom_right.h10 * 1. Redistributions of source code must retain the above copyright
87 com_right (struct et_list *list, long code);
90 com_right_r (struct et_list *list, long code, char *, size_t);
/freebsd-current/crypto/heimdal/appl/telnet/telnetd/
H A Dtermstat.c8 * 1. Redistributions of source code must retain the above copyright
82 clientstat(int code, int parm1, int parm2) argument
90 * Process request from client. code tells what it is.
92 switch (code) {
/freebsd-current/sys/contrib/openzfs/module/lua/setjmp/
H A Dsetjmp_arm.S12 * 1. Redistributions of source code must retain the above copyright
35 #define _FUNC_MODE .code 16; .thumb_func
37 #define _FUNC_MODE .code 32
/freebsd-current/contrib/tcpdump/
H A Dbpf_dump.c6 * modification, are permitted provided that: (1) source code distributions
8 * distributions including binary code include the above copyright notice and
44 printf("%u %u %u %u\n", insn->code,
52 insn->code, insn->jt, insn->jf, insn->k);
/freebsd-current/sys/dev/mpr/
H A Dmpr_table.h8 * 1. Redistributions of source code must retain the above copyright
32 u_int code; member in struct:mpr_table_lookup
35 char * mpr_describe_table(struct mpr_table_lookup *table, u_int code);
/freebsd-current/sys/dev/mps/
H A Dmps_table.h10 * 1. Redistributions of source code must retain the above copyright
34 u_int code; member in struct:mps_table_lookup
37 char * mps_describe_table(struct mps_table_lookup *table, u_int code);
/freebsd-current/sys/dev/hid/
H A Dxb360gp.c10 * 1. Redistributions of source code must retain the above copyright
57 #define XB360GP_MAP_BUT(number, code) \
58 { HIDMAP_KEY(HUP_BUTTON, number, code) }
59 #define XB360GP_MAP_ABS(usage, code) \
60 { HIDMAP_ABS(HUP_GENERIC_DESKTOP, HUG_##usage, code) }
61 #define XB360GP_MAP_ABS_FLT(usage, code) \
62 { HIDMAP_ABS(HUP_GENERIC_DESKTOP, HUG_##usage, code), \
64 #define XB360GP_MAP_ABS_INV(usage, code) \
65 { HIDMAP_ABS(HUP_GENERIC_DESKTOP, HUG_##usage, code), \
/freebsd-current/lib/libc/gen/
H A Derr.c10 * 1. Redistributions of source code must retain the above copyright
84 errc(int eval, int code, const char *fmt, ...) argument
88 verrc(eval, code, fmt, ap);
93 verrc(int eval, int code, const char *fmt, va_list ap) argument
102 fprintf(err_file, "%s\n", strerror(code));
149 warnc(int code, const char *fmt, ...) argument
153 vwarnc(code, fmt, ap);
158 vwarnc(int code, const char *fmt, va_list ap) argument
170 fprintf(err_file, "%s\n", strerror(code));

Completed in 487 milliseconds

1234567891011>>