Searched refs:code (Results 101 - 125 of 2487) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/zlib_inflate/
H A Dinflate.h32 LENLENS, /* i: waiting for code length code lengths */
33 CODELENS, /* i: waiting for length/lit and distance code lengths */
34 LEN, /* i: waiting for length/lit code */
36 DIST, /* i: waiting for distance code */
94 /* for table and code decoding */
96 /* fixed and dynamic code tables */
97 code const *lencode; /* starting table for length/literal codes */
98 code const *distcode; /* starting table for distance codes */
102 unsigned ncode; /* number of code lengt
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dtca6416_keypad.h20 int code; /* input event code (KEY_*, SW_*) */ member in struct:tca6416_button
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/
H A Dinflate.h13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
103 /* for table and code decoding */
105 /* fixed and dynamic code tables */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code cons
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unicase/
H A Dspecial-casing.h33 /* The first two bytes are the code, in big-endian order. The third byte
34 only distinguishes different rules pertaining to the same code. */
35 /*unsigned*/ char code[3]; member in struct:special_casing_rule
37 /* True when this rule is not the last one for the given code. */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/uninorm/
H A Ddecompose-internal.h29 ucs4_t code; member in struct:ucs4_with_ccc
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/libexif/
H A Dexif-log.c39 ExifLogCode code; member in struct:__anon3987
53 exif_log_code_get_title (ExifLogCode code) argument
57 for (i = 0; codes[i].title; i++) if (codes[i].code == code) break;
62 exif_log_code_get_message (ExifLogCode code) argument
66 for (i = 0; codes[i].message; i++) if (codes[i].code == code) break;
135 exif_log (ExifLog *log, ExifLogCode code, const char *domain, argument
141 exif_logv (log, code, domain, format, args);
146 exif_logv (ExifLog *log, ExifLogCode code, cons argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/serial/
H A Dio_ionsp.h56 specific to the cmd or status code. This may include a length
169 #define IOSP_EXT_CMD 0x09 // P1 = Command code (defined below)
358 // 0C-0D 4-byte status. P1 = extended status code and P2,P3 = params
406 #define IOSP_EXT_STATUS 0x09 // P1 is status/response code, param in P2.
437 #define IOSP_EXT4_STATUS 0x0C // Extended status code in P1,
450 #define IOSP_GET_STATUS_LEN(code) ((code) < 8 ? 2 : ((code) < 0x0A ? 3 : 4))
452 #define IOSP_STATUS_IS_2BYTE(code) ((code) <
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dscript_asm.pl192 @code = (); # Array of 32 bit words for SIOP
211 # &patch ($address, $offset, $length, $value) patches $code[$address]
222 printf STDERR "Old code : %08x\n", $code[$address];
227 $code[$address] = ($code[$address] & ~$mask) |
228 (($code[$address] & $mask) + ($value << ($offset * 8)) &
231 printf STDERR "New code : %08x\n", $code[$address] if ($debug);
239 # Side effects are that the bytes are combined into the @code arra
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dutf8.c41 uint32_t code; local
53 code = UINT32_MAX;
54 r = av_utf8_decode(&code, &p, endp, 0);
57 if (code != UINT32_MAX) {
58 printf("%-10d 0x%-10X %-5d ", code, code, l);
63 printf("invalid code range\n");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dbmvaudio.c66 uint8_t code = *buf++; local
67 code = (code >> 1) | (code << 7);
68 scale[0] = bmv_aud_mults[code & 0xF];
69 scale[1] = bmv_aud_mults[code >> 4];
H A Dws-snd1.c96 int code, smp, size; local
98 code = *buf >> 6;
103 switch (code) {
113 size = ((code == 2 && (count & 0x20)) || code == 3) ? 0 : count + 1;
117 switch (code) {
120 code = *buf++;
121 sample += ( code & 0x3) - 2;
124 sample += ((code >> 2) & 0x3) - 2;
127 sample += ((code >>
[all...]
H A Dmsmpeg4enc.c76 int code; local
79 code = get_rl_index(rl, last, run, level);
80 size+= rl->table_vlc[code][1];
81 if (code == rl->n) {
87 code = get_rl_index(rl, last, run, level1);
88 if (code == rl->n) {
96 code = get_rl_index(rl, last, run1, level);
97 if (code == rl->n) {
103 size+= 1+1+ rl->table_vlc[code][1];
107 size+= 1+1+ rl->table_vlc[code][
290 int code; local
340 int range, bit_size, sign, code, bits; local
496 int sign, code; local
577 int code, run_diff, dc_pred_dir; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A Dhtmltitle.cpp87 CURLcode code; local
98 code = curl_easy_setopt(conn, CURLOPT_ERRORBUFFER, errorBuffer);
99 if (code != CURLE_OK)
101 fprintf(stderr, "Failed to set error buffer [%d]\n", code);
106 code = curl_easy_setopt(conn, CURLOPT_URL, url);
107 if (code != CURLE_OK)
114 code = curl_easy_setopt(conn, CURLOPT_FOLLOWLOCATION, 1L);
115 if (code != CURLE_OK)
122 code = curl_easy_setopt(conn, CURLOPT_WRITEFUNCTION, writer);
123 if (code !
269 CURLcode code; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/auth_gss/
H A Dgss_krb5_seqnum.c48 s32 code; local
65 code = krb5_rc4_setup_seq_key(kctx, cipher, cksum);
66 if (code)
69 code = krb5_encrypt(cipher, cksum, plain, buf, 8);
72 return code;
106 s32 code; local
114 code = krb5_rc4_setup_seq_key(kctx, cipher, cksum);
115 if (code)
118 code = krb5_decrypt(cipher, cksum, buf, plain, 8);
119 if (code)
143 s32 code; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/archival/libunarchive/
H A Ddecompress_uncompress.c43 /* lie within the contiguous general code space. */
45 #define CLEAR 256 /* table clear output code */
47 #define INIT_BITS 9 /* initial number of bits/code */
79 long code; local
99 /* user settable max # bits/code */
141 for (code = 255; code >= 0; --code) {
142 tab_suffixof(code) = (unsigned char) code;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/tests/
H A DTest-meta-robots.px40 # code, msg, headers, content
43 code => "200",
51 code => "200",
59 code => "200",
67 code => "200",
75 code => "200",
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgpg-error-1.10/src/
H A Dstrerror.c1 /* strerror.c - Describing an error code.
36 code in the error value ERR. This function is not thread-safe. */
40 gpg_err_code_t code = gpg_err_code (err); local
42 if (code & GPG_ERR_SYSTEM_ERROR)
44 int no = gpg_err_code_to_errno (code);
48 code = GPG_ERR_UNKNOWN_ERRNO;
50 return dgettext (PACKAGE, msgstr + msgidx[msgidxof (code)]);
139 gpg_err_code_t code = gpg_err_code (err); local
144 if (code & GPG_ERR_SYSTEM_ERROR)
146 int no = gpg_err_code_to_errno (code);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgpg-error-1.10/src/
H A Dstrerror.c1 /* strerror.c - Describing an error code.
36 code in the error value ERR. This function is not thread-safe. */
40 gpg_err_code_t code = gpg_err_code (err); local
42 if (code & GPG_ERR_SYSTEM_ERROR)
44 int no = gpg_err_code_to_errno (code);
48 code = GPG_ERR_UNKNOWN_ERRNO;
50 return dgettext (PACKAGE, msgstr + msgidx[msgidxof (code)]);
139 gpg_err_code_t code = gpg_err_code (err); local
144 if (code & GPG_ERR_SYSTEM_ERROR)
146 int no = gpg_err_code_to_errno (code);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/
H A Djerror.h28 #define JMESSAGE(code,string)
36 #define JMESSAGE(code,string) code ,
40 JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */
42 /* For maintenance convenience, list is alphabetical by message code name */
59 JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d")
87 JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow")
88 JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry")
175 JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d")
176 JMESSAGE(JWRN_ARITH_BAD_CODE, "Corrupt JPEG data: bad arithmetic code")
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dqdrw.c101 int size, left, code, pix; local
116 code = *buf++;
117 if (code & 0x80 ) { /* run */
119 if ((out + (257 - code)) > (outdata + a->pic.linesize[0]))
121 memset(out, pix, 257 - code);
122 out += 257 - code;
123 tsize += 257 - code;
126 if ((out + code) > (outdata + a->pic.linesize[0]))
128 if (buf_end - buf < code + 1)
130 memcpy(out, buf, code
[all...]
H A Dws-snd1.c107 int code, smp, size; local
109 code = *buf >> 6;
114 switch (code) {
124 size = ((code == 2 && (count & 0x20)) || code == 3) ? 0 : count + 1;
128 switch (code) {
131 code = *buf++;
132 sample += ( code & 0x3) - 2;
135 sample += ((code >> 2) & 0x3) - 2;
138 sample += ((code >>
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-mx3/
H A Dmach-pcm037_eet.c74 .code = KEY_L,
80 .code = KEY_A,
86 .code = KEY_V,
92 .code = KEY_M,
98 .code = KEY_UP,
104 .code = KEY_RIGHT,
110 .code = KEY_DOWN,
116 .code = KEY_LEFT,
122 .code = KEY_ENTER,
128 .code
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/jpeg/
H A Djerror.h27 #define JMESSAGE(code,string)
35 #define JMESSAGE(code,string) code ,
39 JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */
41 /* For maintenance convenience, list is alphabetical by message code name */
57 JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d")
85 JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow")
86 JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry")
172 JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d")
178 JMESSAGE(JWRN_HUFF_BAD_CODE, "Corrupt JPEG data: bad Huffman code")
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_utils.c72 int code; local
96 code = xfs_ialloc(tp, dp, mode, nlink, rdev, credp, prid, okalloc,
104 if (code) {
106 return code;
151 code = xfs_trans_commit(tp, 0);
161 if (code) {
169 return code;
177 code = xfs_trans_reserve(tp, 0, log_res, 0,
187 if (code) {
191 return code;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/trace/events/
H A Dsignal.h16 __entry->code = SI_USER; \
19 __entry->code = SI_KERNEL; \
22 __entry->code = info->si_code; \
47 __field( int, code )
59 TP_printk("sig=%d errno=%d code=%d comm=%s pid=%d",
60 __entry->sig, __entry->errno, __entry->code,
87 __field( int, code )
99 TP_printk("sig=%d errno=%d code=%d sa_handler=%lx sa_flags=%lx",
100 __entry->sig, __entry->errno, __entry->code,
114 __field( int, code )
[all...]

Completed in 325 milliseconds

1234567891011>>