Searched refs:code (Results 76 - 100 of 1306) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/texinfo/makeinfo/
H A Dindex.h39 int code; /* Nonzero means add `@code{...}' when member in struct:index_elt
72 a code index or not. Code indices have @code{} inserted around the
79 int code; member in struct:__anon4409
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dgai_strerror.c10 * 1. Redistributions of source code must retain the above copyright
39 int code; member in struct:gai_error
71 if (g->code == ecode)
73 return "unknown error code in gai_strerror";
/freebsd-10.0-release/usr.bin/locate/locate/
H A Dconcatdb.sh9 # 1. Redistributions of source code must retain the above copyright
47 : ${code:=locate.code}
70 done | $code $bigrams
/freebsd-10.0-release/contrib/nvi/regex/
H A Dregerror.c8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
89 int code; member in struct:rerr
109 { 0, "", "*** unknown regexp error code ***" },
129 for (r = rerrs; r->code != 0; r++)
130 if (r->code == target)
134 if (r->code != 0) {
165 for (r = rerrs; r->code != 0; r++)
168 if (r->code == 0)
171 sprintf(localbuf, "%d", r->code);
[all...]
/freebsd-10.0-release/lib/libc/regex/
H A Dregerror.c6 * This code is derived from software contributed to Berkeley by
12 * 1. Redistributions of source code must retain the above copyright
85 int code; member in struct:rerr
106 {0, "", "*** unknown regexp error code ***"}
129 for (r = rerrs; r->code != 0; r++)
130 if (r->code == target)
134 if (r->code != 0)
166 for (r = rerrs; r->code != 0; r++)
169 if (r->code == 0)
172 sprintf(localbuf, "%d", r->code);
[all...]
/freebsd-10.0-release/usr.sbin/dumpcis/
H A Dreadcis.c7 * 1. Redistributions of source code must retain the above copyright
253 unsigned char code, length; local
265 if (read(fd, &code, 1) != 1) {
266 warn("CIS code read");
270 if (code == CIS_NULL)
273 tp->code = code;
274 if (code == CIS_END)
285 printf("Tuple code = 0x%x, len = %d\n", code, lengt
344 find_tuple_in_list(struct tuple_list *tl, unsigned char code) argument
358 get_tuple_info(unsigned char code) argument
369 tuple_name(unsigned char code) argument
[all...]
/freebsd-10.0-release/sys/libkern/
H A Diconv_xlat16.c8 * 1. Redistributions of source code must retain the above copyright
120 uint32_t code; local
134 code = 0;
174 code = dp->d_table[c1][c2];
179 else if (code & XLAT16_HAS_FROM_LOWER_CASE)
180 ctmp = (u_char)(code >> 16);
184 else if (code & XLAT16_HAS_FROM_UPPER_CASE)
185 ctmp = (u_char)(code >> 16);
193 code = dp->d_table[c1][c2];
194 if (!code) {
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dunwind.inc37 exception handler and intermediary cleanup code. We'll only locate
38 the first such frame here. Cleanup code will call back into
45 _Unwind_Reason_Code code;
52 code = uw_frame_state_for (context, &fs);
58 if (code != _URC_NO_REASON)
66 code = (*fs.personality) (1, _UA_CLEANUP_PHASE | match_handler,
68 if (code == _URC_INSTALL_CONTEXT)
70 if (code != _URC_CONTINUE_UNWIND)
80 return code;
89 _Unwind_Reason_Code code;
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/widechar/
H A Dlib_ins_wch.c82 int code = ERR; local
90 code = _nc_insert_wch(win, wch);
96 returnCode(code);
102 int code = ERR; local
113 code = OK;
129 code = _nc_insert_wch(win, &tmp_cchar);
132 code = _nc_insert_ch(win, (chtype) (*cp));
134 if (code != OK)
143 returnCode(code);
H A Dlib_hline_set.c47 int code = ERR; local
76 code = OK;
78 returnCode(code);
H A Dlib_in_wchnstr.c47 int code = OK; local
73 code = ERR;
75 returnCode(code);
H A Dlib_vline_set.c47 int code = ERR; local
75 code = OK;
77 returnCode(code);
/freebsd-10.0-release/contrib/serf/auth/
H A Dauth_basic.c34 serf__handle_basic_auth(int code, argument
59 if (code == 401) {
85 realm = serf__construct_realm(code == 401 ? HOST : PROXY,
95 code, authn_info->scheme->name,
109 basic_info->header = (code == 401) ? "Authorization" : "Proxy-Authorization";
115 serf__init_basic(int code, argument
130 int code,
137 if (code == 401) {
152 int code,
129 serf__init_basic_connection(const serf__authn_scheme_t *scheme, int code, serf_connection_t *conn, apr_pool_t *pool) argument
151 serf__setup_request_basic_auth(peer_t peer, int code, serf_connection_t *conn, serf_request_t *request, const char *method, const char *uri, serf_bucket_t *hdrs_bkt) argument
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const { argument
36 return default_error_condition(code) == condition;
40 error_category::equivalent(const error_code& code, int condition) const { argument
41 return *this == code.category() && code.value() == condition;
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dadd_tries.c48 _nc_add_to_try(TRIES ** tree, const char *str, unsigned code) argument
53 T((T_CALLED("_nc_add_to_try(%p, %s, %u)"), *tree, _nc_visbuf(str), code));
54 if (txt == 0 || *txt == '\0' || code == 0)
69 ptr->value = code;
118 ptr->value = code;
/freebsd-10.0-release/contrib/ipfilter/
H A Dbpf-ipf.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
97 * It has nothing to do with the source code version.
350 #define BPF_CLASS(code) ((code) & 0x07)
361 #define BPF_SIZE(code) ((code) & 0x18)
365 #define BPF_MODE(code) ((code)
406 u_short code; member in struct:bpf_insn
[all...]
/freebsd-10.0-release/contrib/libpcap/pcap/
H A Dbpf.h5 * This code is derived from the Stanford/CMU enet packet filter,
6 * (net/enet.c) distributed as part of 4.3BSD, and code contributed
13 * 1. Redistributions of source code must retain the above copyright
45 * the stuff needed for the code generator and the userland BPF
390 * except for FreeBSD; anybody who wants to compile, on FreeBSD, code
398 * capture files; code that doesn't, such as the code in Wireshark,
1218 #define BPF_CLASS(code) ((code) & 0x07)
1229 #define BPF_SIZE(code) ((cod
1274 u_short code; member in struct:bpf_insn
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/base/
H A Dkey_defined.c70 int code = ERR; local
74 code = find_definition(SP->_keytry, str);
77 returnCode(code);
H A Dlib_clrbot.c48 int code = ERR; local
73 code = OK;
75 returnCode(code);
H A Dlib_clreol.c48 int code = ERR; local
88 code = OK;
90 returnCode(code);
H A Dlib_delch.c48 int code = ERR; local
66 code = OK;
68 returnCode(code);
H A Dlib_erase.c49 int code = ERR; local
89 code = OK;
91 returnCode(code);
H A Dlib_hline.c48 int code = ERR; local
77 code = OK;
79 returnCode(code);
H A Dlib_insnstr.c48 int code = ERR; local
65 code = OK;
67 returnCode(code);
H A Dlib_vline.c48 int code = ERR; local
76 code = OK;
78 returnCode(code);

Completed in 357 milliseconds

1234567891011>>