Searched refs:code (Results 1 - 25 of 5381) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/lib/zlib/contrib/infback9/
H A Dinffix9.h10 static const code lenfix[512] = {
99 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/lib/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/lib/zlib_inflate/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/zlib/contrib/infback9/
H A Dinffix9.h10 static const code lenfix[512] = {
99 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/lib/zlib_inflate/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/lib/zlib/contrib/infback9/
H A Dinffix9.h10 static const code lenfix[512] = {
99 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/lib/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/zlib/contrib/infback9/
H A Dinffix9.h10 static const code lenfix[512] = {
99 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/lib/zlib/contrib/infback9/
H A Dinffix9.h10 static const code lenfix[512] = {
99 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/lib/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/zlib/contrib/infback9/
H A Dinffix9.h10 static const code lenfix[512] = {
99 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libgpg-error-1.10/src/
H A Dcode-to-errno.c0 /* code-to-errno.c - Mapping error codes to errnos.
27 #include "code-to-errno.h"
29 /* Retrieve the system error for the error code CODE. This returns 0
30 if CODE is not a system error code. */
32 gpg_err_code_to_errno (gpg_err_code_t code) argument
34 if (!(code & GPG_ERR_SYSTEM_ERROR))
36 code &= ~GPG_ERR_SYSTEM_ERROR;
38 if (code < sizeof (err_code_to_errno) / sizeof (err_code_to_errno[0]))
39 return err_code_to_errno[code];
H A Dmkerrcodes2.awk29 # mkerrcodes2.awk source text consists of comments plus executable code
31 # We call these comments and executable code the "non-data" portions.
54 # msgidxof (code);
55 # A macro that maps code numbers to idx numbers. If a DEFAULT MESSAGE
58 # You can lookup the message with code CODE with:
59 # msgstr + msgidx[msgidxof (code)].
104 # Remember the error value and index of each error code.
105 code[msg] = $1;
112 print "#define errno_to_idx(code) (0 ? -1 \\";
115 skip = code[
[all...]
H A Dstrerror-sym.c1 /* strerror-sym.c - Describing an error code with its symbol name.
33 the error code in the error value ERR. Returns NULL if the error
34 code is not known. */
38 gpg_err_code_t code = gpg_err_code (err); local
40 if (code & GPG_ERR_SYSTEM_ERROR)
44 code &= ~GPG_ERR_SYSTEM_ERROR;
45 idx = errnos_msgidxof (code);
52 if (msgidxof (code) == msgidxof (GPG_ERR_CODE_DIM))
55 return msgstr + msgidx[msgidxof (code)];
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libgpg-error-1.10/src/
H A Dcode-to-errno.c0 /* code-to-errno.c - Mapping error codes to errnos.
27 #include "code-to-errno.h"
29 /* Retrieve the system error for the error code CODE. This returns 0
30 if CODE is not a system error code. */
32 gpg_err_code_to_errno (gpg_err_code_t code) argument
34 if (!(code & GPG_ERR_SYSTEM_ERROR))
36 code &= ~GPG_ERR_SYSTEM_ERROR;
38 if (code < sizeof (err_code_to_errno) / sizeof (err_code_to_errno[0]))
39 return err_code_to_errno[code];
H A Dmkerrcodes2.awk29 # mkerrcodes2.awk source text consists of comments plus executable code
31 # We call these comments and executable code the "non-data" portions.
54 # msgidxof (code);
55 # A macro that maps code numbers to idx numbers. If a DEFAULT MESSAGE
58 # You can lookup the message with code CODE with:
59 # msgstr + msgidx[msgidxof (code)].
104 # Remember the error value and index of each error code.
105 code[msg] = $1;
112 print "#define errno_to_idx(code) (0 ? -1 \\";
115 skip = code[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libgpg-error-1.10/src/
H A Dcode-to-errno.c0 /* code-to-errno.c - Mapping error codes to errnos.
27 #include "code-to-errno.h"
29 /* Retrieve the system error for the error code CODE. This returns 0
30 if CODE is not a system error code. */
32 gpg_err_code_to_errno (gpg_err_code_t code) argument
34 if (!(code & GPG_ERR_SYSTEM_ERROR))
36 code &= ~GPG_ERR_SYSTEM_ERROR;
38 if (code < sizeof (err_code_to_errno) / sizeof (err_code_to_errno[0]))
39 return err_code_to_errno[code];
H A Dmkerrcodes2.awk29 # mkerrcodes2.awk source text consists of comments plus executable code
31 # We call these comments and executable code the "non-data" portions.
54 # msgidxof (code);
55 # A macro that maps code numbers to idx numbers. If a DEFAULT MESSAGE
58 # You can lookup the message with code CODE with:
59 # msgstr + msgidx[msgidxof (code)].
104 # Remember the error value and index of each error code.
105 code[msg] = $1;
112 print "#define errno_to_idx(code) (0 ? -1 \\";
115 skip = code[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libxml2/include/libxml/
H A Dxmlunicode.h26 XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code);
27 XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
28 XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
29 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
30 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
31 XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
32 XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
33 XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
34 XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
35 XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libxml2/include/libxml/
H A Dxmlunicode.h26 XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code);
27 XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
28 XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
29 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
30 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
31 XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
32 XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
33 XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
34 XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
35 XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libxml2/include/libxml/
H A Dxmlunicode.h26 XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code);
27 XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
28 XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
29 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
30 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
31 XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
32 XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
33 XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
34 XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
35 XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/usb-modeswitch-2.2.3/jim/
H A Dparse-unidata.tcl17 foreach {code name class x x x x x x x x x upper lower} [split $buf ";"] break
18 set code 0x$code
19 if {$code <= 0x7f} {
22 if {$code > 0xffff} {
29 set upper $code
34 set lower $code
38 if {$upper == $code && $lower == $code} {
41 set l [expr {$lower - $code}]
[all...]

Completed in 145 milliseconds

1234567891011>>