Searched refs:code (Results 26 - 50 of 2487) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/include/sound/
H A Dsscape_ioctl.h7 unsigned char code[256]; member in struct:sscape_bootblock
15 unsigned char *code; member in struct:sscape_microcode
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-sharp/
H A DResolverBase.cs30 internal void EmitFailure (ErrorCode code) argument
33 Failed (this, new ErrorCodeArgs (code));
H A DClientException.cs86 private ErrorCode code; field in class:Avahi.ErrorCodeArgs
90 get { return code; }
93 public ErrorCodeArgs (ErrorCode code) argument
95 this.code = code;
101 private ErrorCode code; field in class:Avahi.ClientException
104 private static extern IntPtr avahi_strerror (ErrorCode code); argument
108 get { return code; }
111 internal ClientException (int code) : this ((ErrorCode) code) { argument
114 ClientException(ErrorCode code) argument
119 GetErrorString(ErrorCode code) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-sharp/
H A DResolverBase.cs30 internal void EmitFailure (ErrorCode code) argument
33 Failed (this, new ErrorCodeArgs (code));
H A DClientException.cs86 private ErrorCode code; field in class:Avahi.ErrorCodeArgs
90 get { return code; }
93 public ErrorCodeArgs (ErrorCode code) argument
95 this.code = code;
101 private ErrorCode code; field in class:Avahi.ClientException
104 private static extern IntPtr avahi_strerror (ErrorCode code); argument
108 get { return code; }
111 internal ClientException (int code) : this ((ErrorCode) code) { argument
114 ClientException(ErrorCode code) argument
119 GetErrorString(ErrorCode code) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dflac_picture.h27 #define RETURN_ERROR(code) do { ret = (code); goto fail; } while (0)
H A Dh263dec.c27 uint64_t code= -1; local
37 code = (code<<8) + p->buf[i];
38 if ((code & 0xfffffc000000) == 0x80000000) {
39 tr = (code >> 18) & 0xFF;
40 src_fmt= (code>>10)&7;
51 if (src_fmt != 7 && !(code&(1<<9)) && (code&(1<<5))) {
56 if((code&0x30000)==0x20000 && src_fmt){
63 } else if((code
[all...]
H A Dmpegvideodec.c38 uint32_t code= -1; local
44 code = (code<<8) + p->buf[i];
45 if ((code & 0xffffff00) == 0x100) {
46 switch(code){
68 if (code >= SLICE_START_CODE && code <= 0x1af) {
70 if (code >= last) slice++;
73 if (code == SLICE_START_CODE) slice++;
77 if ((code
[all...]
H A Dh264dec.c27 uint32_t code = -1; local
32 code = (code << 8) + p->buf[i];
33 if ((code & 0xffffff00) == 0x100) {
34 int ref_idc = (code >> 5) & 3;
35 int type = code & 0x1F;
43 if (code & 0x80) // forbidden_bit
H A Dhevcdec.c29 uint32_t code = -1; local
34 code = (code << 8) + p->buf[i];
35 if ((code & 0xffffff00) == 0x100) {
37 int type = (code & 0x7E) >> 1;
39 if (code & 0x81) // forbidden and reserved zero bits
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/mips-boards/
H A Dsim.h30 #define simcfg(code) \
34 ::"i"(code) \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/libtest/
H A Dlib512.c26 /* Test case code based on source in a bug report filed by James Bursa on
31 CURLcode code; local
36 code = curl_global_init(CURL_GLOBAL_ALL);
37 if(code == CURLE_OK) {
48 code = curl_easy_setopt(curl2, CURLOPT_URL, URL);
49 if(code == CURLE_OK) {
51 code = curl_easy_perform(curl2);
52 if(code == CURLE_OK)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dh261dec.c28 uint32_t code= -1; local
39 if ((code & 0x01ff0000) || !(code & 0xff00)) {
40 code = (code<<8) + get_bits(&gb, 8);
43 code = (code<<1) + get_bits1(&gb);
44 if ((code & 0xffff0000) == 0x10000) {
45 int gn= (code>>12)&0xf;
47 src_fmt= code
[all...]
H A Dh263dec.c27 uint64_t code= -1; local
36 code = (code<<8) + p->buf[i];
37 if ((code & 0xfffffc0000) == 0x800000) {
38 src_fmt= (code>>2)&3;
44 if((code&0x300)==0x200 && src_fmt){
50 } else if((code & 0xffff800000) == 0x800000) {
51 int gn= (code>>(23-5)) & 0x1F;
H A Dh264dec.c27 uint32_t code= -1; local
32 code = (code<<8) + p->buf[i];
33 if ((code & 0xffffff00) == 0x100) {
34 int ref_idc= (code>>5)&3;
35 int type = code & 0x1F;
43 if(code & 0x80) //forbidden bit
H A Dmpegvideodec.c36 uint32_t code= -1; local
41 code = (code<<8) + p->buf[i];
42 if ((code & 0xffffff00) == 0x100) {
43 switch(code){
49 if ((code & 0x1f0) == VIDEO_ID) pes++;
50 else if((code & 0x1e0) == AUDIO_ID) pes++;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/include/asm/
H A Ds390_ext.h15 typedef void (*ext_int_handler_t)(__u16 code);
20 __u16 code; member in struct:ext_int_info_t
25 int register_external_interrupt(__u16 code, ext_int_handler_t handler);
26 int register_early_external_interrupt(__u16 code, ext_int_handler_t handler,
28 int unregister_external_interrupt(__u16 code, ext_int_handler_t handler);
29 int unregister_early_external_interrupt(__u16 code, ext_int_handler_t handler,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/include/asm/
H A Dtraps.h9 int code, unsigned long offset);
12 void do_page_fault(struct pt_regs *regs, unsigned long code,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/os-Linux/sys-x86_64/
H A Dprctl.c9 int os_arch_prctl(int pid, int code, unsigned long *addr) argument
11 return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) addr, code);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgpg-error-1.10/src/
H A Dmkstrtable.awk29 # mkstrtable.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)].
62 # CODE1 ... MESSAGE1 (code nr, <tab>, something, <tab>, msg)
63 # CODE2 ... MESSAGE2 (code nr, <tab>, something, <tab>, msg)
65 # CODEn ... MESSAGEn (code nr, <tab>, something, <tab>, msg)
103 print " optimal code wit
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgpg-error-1.10/src/
H A Dmkstrtable.awk29 # mkstrtable.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)].
62 # CODE1 ... MESSAGE1 (code nr, <tab>, something, <tab>, msg)
63 # CODE2 ... MESSAGE2 (code nr, <tab>, something, <tab>, msg)
65 # CODEn ... MESSAGEn (code nr, <tab>, something, <tab>, msg)
103 print " optimal code wit
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/
H A Dunshrink.c14 NOTE: This code may or may not infringe on the so-called "Welch
19 whatever license(s) may be required for legal use of this code.
25 Shrinking is basically a dynamic LZW algorithm with allowed code sizes of
27 leaf nodes. PKWARE uses the special code 256 (decimal) to indicate a
28 change in code size or a partial clear of the code tree: 256,1 for the
40 IEEE _Computer_; no existing source code, including any in Nelson's book,
44 than the original Sam Smith code. This is still larger than any of the
88 #define FREE_CODE HSIZE /* 0x2000 (code is unused or was cleared) */
89 #define HAS_CHILD (HSIZE << 1) /* 0x4000 (code ha
107 shrint code, oldcode, curcode; local
311 register shrint code; variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/input/
H A Dsparse-keymap.h24 * @code: Device-specific data identifying the button/switch
25 * @keycode: KEY_* code assigned to a key/button
26 * @sw.code: SW_* code assigned to a switch
37 u32 code; member in struct:key_entry
41 u8 code; member in struct:key_entry::__anon17571::__anon17572
48 unsigned int code);
50 unsigned int code);
59 bool sparse_keymap_report_event(struct input_dev *dev, unsigned int code,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/kernel/
H A Ds390_ext.c32 static inline int ext_hash(__u16 code) argument
34 return (code + (code >> 9)) & 0xff;
37 int register_external_interrupt(__u16 code, ext_int_handler_t handler) argument
45 p->code = code;
47 index = ext_hash(code);
53 int register_early_external_interrupt(__u16 code, ext_int_handler_t handler, argument
60 p->code = code;
68 unregister_external_interrupt(__u16 code, ext_int_handler_t handler) argument
92 unregister_early_external_interrupt(__u16 code, ext_int_handler_t handler, ext_int_info_t *p) argument
116 do_extint(struct pt_regs *regs, unsigned short code) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmpeg12.h2 * MPEG1/2 common code
55 int code, diff; local
58 code = get_vlc2(gb, ff_dc_lum_vlc.table, DC_VLC_BITS, 2);
60 code = get_vlc2(gb, ff_dc_chroma_vlc.table, DC_VLC_BITS, 2);
62 if (code < 0){
63 av_log(NULL, AV_LOG_ERROR, "invalid dc code at\n");
66 if (code == 0) {
69 diff = get_xbits(gb, code);

Completed in 302 milliseconds

1234567891011>>