Searched refs:idx (Results 1 - 25 of 1034) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/iptables-1.4.12.1/include/linux/netfilter/
H A Dxt_TCPOPTSTRIP.h4 #define tcpoptstrip_set_bit(bmap, idx) \
5 (bmap[(idx) >> 5] |= 1U << (idx & 31))
6 #define tcpoptstrip_test_bit(bmap, idx) \
7 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libgpg-error-1.10/src/
H A Dcode-from-errno.c37 int idx; local
42 idx = errno_to_idx (err);
44 if (idx < 0)
47 return GPG_ERR_SYSTEM_ERROR | err_code_from_index[idx];
58 int idx; local
63 idx = errno_to_idx (err);
65 if (idx < 0)
68 return GPG_ERR_SYSTEM_ERROR | err_code_from_index[idx];
H A Dmkw32errmap.c148 int idx; local
150 for (idx=0; table[idx].name; idx++)
152 qsort (table, idx, sizeof *table, compare_table);
161 for (idx=0; table[idx].name; idx++)
162 if (table[idx].w32code2)
164 table[idx]
[all...]
H A Dstrerror-sym.c42 int idx; local
45 idx = errnos_msgidxof (code);
46 if (idx >= 0)
47 return errnos_msgstr + errnos_msgidx[idx];
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/aoa/codecs/
H A Dsnd-aoa-codec-tas-basstreble.h91 static inline u8 tas3004_treble(int idx) argument
93 return tas3004_treble_table[idx];
127 static inline u8 tas3004_bass(int idx) argument
129 u8 result = tas3004_treble_table[idx];
131 if (idx >= 50)
132 result += tas3004_bass_diff_to_treble[idx-50];
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/
H A Dlast.c29 int idx, ok = 0; local
32 for (idx = 0; idx < SNDRV_CARDS; idx++)
33 if (snd_cards[idx] != NULL) {
34 printk(KERN_INFO " #%i: %s\n", idx, snd_cards[idx]->longname);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlibschroedinger.c58 unsigned int idx = ff_dirac_schro_get_video_format_idx (avccontext); local
60 return (idx < num_formats) ?
61 ff_schro_video_formats[idx] : SCHRO_VIDEO_FORMAT_CUSTOM;
70 int idx; local
72 for (idx = 0; idx < num_formats; ++idx) {
73 if (ffmpeg_schro_pixel_format_map[idx].schro_pix_fmt == schro_pix_fmt) {
75 ffmpeg_schro_pixel_format_map[idx].schro_frame_fmt;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/networking/libiproute/
H A Dll_map.h8 const char *ll_index_to_name(int idx);
9 const char *ll_idx_n2a(int idx, char *buf);
10 /* int ll_index_to_type(int idx); */
11 unsigned ll_index_to_flags(int idx);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/libbb/
H A Dfgets_str.c22 int idx = 0; local
33 while (idx > linebufsz - 2) {
38 linebuf[idx] = ch;
39 idx++;
42 end_string_offset = idx - term_length;
46 idx -= term_length;
50 linebuf = xrealloc(linebuf, idx + 1);
51 linebuf[idx] = '\0';
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/mtd/maps/
H A Dtqm834x.c107 int idx = 0, ret = 0; local
129 for(idx = 0 ; idx < FLASH_BANK_MAX ; idx++) {
133 pr_debug("%s: chip probing count %d\n", __FUNCTION__, idx);
135 map_banks[idx] = kzalloc(sizeof(struct map_info), GFP_KERNEL);
136 if (map_banks[idx] == NULL) {
140 map_banks[idx]->name = kzalloc(16, GFP_KERNEL);
141 if (map_banks[idx]->name == NULL) {
146 sprintf(map_banks[idx]
262 unsigned int idx = 0; local
[all...]
H A Dtqm8xxl.c116 int idx = 0, ret = 0; local
131 for (idx = 0 ; idx < FLASH_BANK_MAX ; idx++) {
135 printk(KERN_INFO "%s: chip probing count %d\n", __FUNCTION__, idx);
137 map_banks[idx] = kzalloc(sizeof(struct map_info), GFP_KERNEL);
138 if(map_banks[idx] == NULL) {
143 map_banks[idx]->name = (char *)kmalloc(16, GFP_KERNEL);
145 if (!map_banks[idx]->name) {
149 sprintf(map_banks[idx]
229 unsigned int idx = 0; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/iproute2/include/
H A Dll_map.h8 extern const char *ll_index_to_name(unsigned idx);
9 extern const char *ll_idx_n2a(unsigned idx, char *buf);
10 extern int ll_index_to_type(unsigned idx);
11 extern unsigned ll_index_to_flags(unsigned idx);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dhash.c152 size_t idx; local
158 idx = hash;
160 if (table[idx].used)
162 if (table[idx].used == hval && table[idx].keylen == keylen
163 && memcmp (table[idx].key, key, keylen) == 0)
164 return idx;
171 if (idx <= hash)
172 idx = htab->size + idx
194 size_t idx = lookup (htab, key, keylen, compute_hashval (key, keylen)); local
208 insert_entry_2(hash_table *htab, const void *key, size_t keylen, unsigned long int hval, size_t idx, void *data) argument
242 size_t idx; local
272 size_t idx = lookup (htab, key, keylen, hval); local
299 size_t idx = lookup (htab, key, keylen, hval); local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A Dhash.c152 size_t idx; local
158 idx = hash;
160 if (table[idx].used)
162 if (table[idx].used == hval && table[idx].keylen == keylen
163 && memcmp (table[idx].key, key, keylen) == 0)
164 return idx;
171 if (idx <= hash)
172 idx = htab->size + idx
194 size_t idx = lookup (htab, key, keylen, compute_hashval (key, keylen)); local
208 insert_entry_2(hash_table *htab, const void *key, size_t keylen, unsigned long int hval, size_t idx, void *data) argument
242 size_t idx; local
272 size_t idx = lookup (htab, key, keylen, hval); local
299 size_t idx = lookup (htab, key, keylen, hval); local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-sh/
H A Dfixmap.h35 * highger than 1) use fixmap_set(idx,phys) to associate
56 extern void __set_fixmap (enum fixed_addresses idx,
59 #define set_fixmap(idx, phys) \
60 __set_fixmap(idx, phys, PAGE_KERNEL)
64 #define set_fixmap_nocache(idx, phys) \
65 __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
83 * 'index to address' translation. If anyone tries to use the idx
87 static inline unsigned long fix_to_virt(const unsigned int idx) argument
98 if (idx >= __end_of_fixed_addresses)
101 return __fix_to_virt(idx);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-sparc/
H A Dfixmap.h35 * highger than 1) use fixmap_set(idx,phys) to associate
57 extern void __set_fixmap (enum fixed_addresses idx,
60 #define set_fixmap(idx, phys) \
61 __set_fixmap(idx, phys, PAGE_KERNEL)
65 #define set_fixmap_nocache(idx, phys) \
66 __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
83 * 'index to address' translation. If anyone tries to use the idx
87 static inline unsigned long fix_to_virt(const unsigned int idx) argument
98 if (idx >= __end_of_fixed_addresses)
101 return __fix_to_virt(idx);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-um/
H A Dfixmap.h20 * highger than 1) use fixmap_set(idx,phys) to associate
41 extern void __set_fixmap (enum fixed_addresses idx,
44 #define set_fixmap(idx, phys) \
45 __set_fixmap(idx, phys, PAGE_KERNEL)
49 #define set_fixmap_nocache(idx, phys) \
50 __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
70 * 'index to address' translation. If anyone tries to use the idx
74 static inline unsigned long fix_to_virt(const unsigned int idx) argument
85 if (idx >= __end_of_fixed_addresses)
88 return __fix_to_virt(idx);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-x86_64/
H A Dfixmap.h27 * highger than 1) use fixmap_set(idx,phys) to associate
45 extern void __set_fixmap (enum fixed_addresses idx,
48 #define set_fixmap(idx, phys) \
49 __set_fixmap(idx, phys, PAGE_KERNEL)
53 #define set_fixmap_nocache(idx, phys) \
54 __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
69 * 'index to address' translation. If anyone tries to use the idx
73 static __always_inline unsigned long fix_to_virt(const unsigned int idx) argument
84 if (idx >= __end_of_fixed_addresses)
87 return __fix_to_virt(idx);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dhash.c152 size_t idx; local
158 idx = hash;
160 if (table[idx].used)
162 if (table[idx].used == hval && table[idx].keylen == keylen
163 && memcmp (table[idx].key, key, keylen) == 0)
164 return idx;
171 if (idx <= hash)
172 idx = htab->size + idx
194 size_t idx = lookup (htab, key, keylen, compute_hashval (key, keylen)); local
208 insert_entry_2(hash_table *htab, const void *key, size_t keylen, unsigned long int hval, size_t idx, void *data) argument
242 size_t idx; local
272 size_t idx = lookup (htab, key, keylen, hval); local
299 size_t idx = lookup (htab, key, keylen, hval); local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/pnp/
H A Dbase.h9 int pnp_check_port(struct pnp_dev * dev, int idx);
10 int pnp_check_mem(struct pnp_dev * dev, int idx);
11 int pnp_check_irq(struct pnp_dev * dev, int idx);
12 int pnp_check_dma(struct pnp_dev * dev, int idx);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/i386/mm/
H A Dhighmem.c31 enum fixed_addresses idx; local
37 idx = type + KM_TYPE_NR*smp_processor_id();
38 BUG_ON(!pte_none(*(kmap_pte-idx)));
43 vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
44 set_pte(kmap_pte-idx, mk_pte(page, prot));
58 enum fixed_addresses idx = type + KM_TYPE_NR*smp_processor_id(); local
66 if (vaddr == __fix_to_virt(FIX_KMAP_BEGIN+idx))
67 kpte_clear_flush(kmap_pte-idx, vaddr);
84 enum fixed_addresses idx; local
89 idx
99 unsigned long idx, vaddr = (unsigned long)ptr; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sh/kernel/cpu/sh3/
H A Dclock-sh3.c32 int idx = ((frqcr & 0x2000) >> 11) | (frqcr & 0x0003); local
34 clk->rate *= pfc_divisors[idx];
44 int idx = ((frqcr & 0x2000) >> 11) | (frqcr & 0x0003); local
46 clk->rate = clk->parent->rate / pfc_divisors[idx];
56 int idx = ((frqcr & 0x8000) >> 13) | ((frqcr & 0x0030) >> 4); local
58 clk->rate = clk->parent->rate / stc_multipliers[idx];
68 int idx = ((frqcr & 0x4000) >> 12) | ((frqcr & 0x000c) >> 2); local
70 clk->rate = clk->parent->rate / ifc_divisors[idx];
84 void __init arch_init_clk_ops(struct clk_ops **ops, int idx) argument
86 if (idx < ARRAY_SIZ
[all...]
H A Dclock-sh7706.c28 int idx = ((frqcr & 0x2000) >> 11) | (frqcr & 0x0003); local
30 clk->rate *= pfc_divisors[idx];
40 int idx = ((frqcr & 0x2000) >> 11) | (frqcr & 0x0003); local
42 clk->rate = clk->parent->rate / pfc_divisors[idx];
52 int idx = ((frqcr & 0x8000) >> 13) | ((frqcr & 0x0030) >> 4); local
54 clk->rate = clk->parent->rate / stc_multipliers[idx];
64 int idx = ((frqcr & 0x4000) >> 12) | ((frqcr & 0x000c) >> 2); local
66 clk->rate = clk->parent->rate / ifc_divisors[idx];
80 void __init arch_init_clk_ops(struct clk_ops **ops, int idx) argument
82 if (idx < ARRAY_SIZ
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sparc/mm/
H A Dhighmem.c23 unsigned long idx; local
31 idx = type + KM_TYPE_NR*smp_processor_id();
32 vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
37 BUG_ON(!pte_none(*(kmap_pte-idx)));
39 set_pte(kmap_pte-idx, mk_pte(page, kmap_prot));
49 unsigned long idx = type + KM_TYPE_NR*smp_processor_id(); local
56 BUG_ON(vaddr != __fix_to_virt(FIX_KMAP_BEGIN+idx));
64 pte_clear(&init_mm, vaddr, kmap_pte-idx);
74 unsigned long idx, vaddr = (unsigned long)ptr; local
84 idx
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/um/sys-i386/
H A Dtls.c61 int idx; local
66 for (idx = 0; idx < GDT_ENTRY_TLS_ENTRIES; idx++)
67 if (!t->arch.tls_array[idx].present)
68 return idx + GDT_ENTRY_TLS_MIN;
89 int idx; local
91 for (idx = GDT_ENTRY_TLS_MIN; idx < GDT_ENTRY_TLS_MAX; idx
193 set_tls_entry(struct task_struct* task, struct user_desc *info, int idx, int flushed) argument
211 int idx, ret = -EFAULT; local
229 get_tls_entry(struct task_struct* task, struct user_desc *info, int idx) argument
267 int idx, ret; local
298 ptrace_set_thread_area(struct task_struct *child, int idx, struct user_desc __user *user_desc) argument
315 int idx, ret; local
337 ptrace_get_thread_area(struct task_struct *child, int idx, struct user_desc __user *user_desc) argument
[all...]

Completed in 163 milliseconds

1234567891011>>