Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 717) sorted by relevance

12345678910>>...29

/linux-2.4.37.9/drivers/net/hamradio/soundmodem/
Dgentbl.c35 static void gentbl_offscostab(FILE *f, unsigned int nbits) in gentbl_offscostab() argument
39 fprintf(f, "\n/*\n * small cosine table in U8 format\n */\n" in gentbl_offscostab()
43 fprintf(f, "static unsigned char offscostab[OFFSCOSTABSIZE] = {\n\t"); in gentbl_offscostab()
45 fprintf(f, "%4u", (int) in gentbl_offscostab()
48 fprintf(f, "%s", (i & 7) == 7 ? ",\n\t" : ","); in gentbl_offscostab()
50 fprintf(f, "\n};\n\n" in gentbl_offscostab()
57 static void gentbl_costab(FILE *f, unsigned int nbits) in gentbl_costab() argument
61 fprintf(f, "\n/*\n * more accurate cosine table\n */\n\n" in gentbl_costab()
65 fprintf(f, "\n\t"); in gentbl_costab()
66 fprintf(f, "%6d", (int)(32767.0*cos(i*2.0*M_PI/(1<<nbits)))); in gentbl_costab()
[all …]
/linux-2.4.37.9/net/sched/
Dcls_route.c95 struct route4_filter *f) in route4_set_fastmap() argument
100 head->fastmap[h].filter = f; in route4_set_fastmap()
125 if (f->police) { \
126 int pol_res = tcf_police(skb, f->police); \
143 struct route4_filter *f; in route4_classify() local
162 (f = head->fastmap[h].filter) != NULL) { in route4_classify()
163 if (f == ROUTE4_FAILURE) in route4_classify()
166 *res = f->res; in route4_classify()
174 f = b->ht[route4_hash_from(id)]; in route4_classify()
176 for ( ; f; f = f->next) { in route4_classify()
[all …]
Dcls_fw.c67 struct fw_filter *f; in fw_classify() local
77 for (f=head->ht[fw_hash(id)]; f; f=f->next) { in fw_classify()
78 if (f->id == id) { in fw_classify()
79 *res = f->res; in fw_classify()
81 if (f->police) in fw_classify()
82 return tcf_police(skb, f->police); in fw_classify()
102 struct fw_filter *f; in fw_get() local
107 for (f=head->ht[fw_hash(handle)]; f; f=f->next) { in fw_get()
108 if (f->id == handle) in fw_get()
109 return (unsigned long)f; in fw_get()
[all …]
Dcls_rsvp.h125 if (f->police) { \
126 int pol_res = tcf_police(skb, f->police); \
140 struct rsvp_filter *f; in rsvp_classify() local
182 for (f = s->ht[h2]; f; f = f->next) { in rsvp_classify()
183 if (src[RSVP_DST_LEN-1] == f->src[RSVP_DST_LEN-1] && in rsvp_classify()
184 !(f->spi.mask & (*(u32*)(xprt+f->spi.offset)^f->spi.key)) in rsvp_classify()
186 && src[0] == f->src[0] in rsvp_classify()
187 && src[1] == f->src[1] in rsvp_classify()
188 && src[2] == f->src[2] in rsvp_classify()
191 *res = f->res; in rsvp_classify()
[all …]
Dcls_tcindex.c76 struct tcindex_filter *f; in lookup() local
82 for (f = p->h[key % p->hash]; f; f = f->next) { in lookup()
83 if (f->key == key) in lookup()
84 return &f->result; in lookup()
94 struct tcindex_filter_result *f; in tcindex_classify() local
98 f = lookup(p,(skb->tc_index & p->mask) >> p->shift); in tcindex_classify()
99 if (!f) { in tcindex_classify()
108 *res = f->res; in tcindex_classify()
111 if (f->police) { in tcindex_classify()
114 result = tcf_police(skb,f->police); in tcindex_classify()
[all …]
/linux-2.4.37.9/net/ipv4/
Dfib_hash.c72 #define FIB_INFO(f) ((f)->fn_info) argument
172 struct fib_node *f, **fp, *next; in fn_rebuild_zone() local
175 for (f=old_ht[i]; f; f=next) { in fn_rebuild_zone()
176 next = f->fn_next; in fn_rebuild_zone()
177 for (fp = fz_chain_p(f->fn_key, fz); in fn_rebuild_zone()
178 *fp && fn_key_leq((*fp)->fn_key, f->fn_key); in fn_rebuild_zone()
181 f->fn_next = *fp; in fn_rebuild_zone()
182 *fp = f; in fn_rebuild_zone()
243 static void fn_free_node(struct fib_node * f) in fn_free_node() argument
245 fib_release_info(FIB_INFO(f)); in fn_free_node()
[all …]
/linux-2.4.37.9/drivers/sound/
Dmsnd.c125 void msnd_fifo_init(msnd_fifo *f) in msnd_fifo_init() argument
127 f->data = NULL; in msnd_fifo_init()
130 void msnd_fifo_free(msnd_fifo *f) in msnd_fifo_free() argument
132 if (f->data) { in msnd_fifo_free()
133 vfree(f->data); in msnd_fifo_free()
134 f->data = NULL; in msnd_fifo_free()
138 int msnd_fifo_alloc(msnd_fifo *f, size_t n) in msnd_fifo_alloc() argument
140 msnd_fifo_free(f); in msnd_fifo_alloc()
141 f->data = (char *)vmalloc(n); in msnd_fifo_alloc()
142 f->n = n; in msnd_fifo_alloc()
[all …]
/linux-2.4.37.9/net/bridge/
Dbr_fdb.c44 static __inline__ void copy_fdb(struct __fdb_entry *ent, struct net_bridge_fdb_entry *f) in copy_fdb() argument
47 memcpy(ent->mac_addr, f->addr.addr, ETH_ALEN); in copy_fdb()
48 ent->port_no = f->dst?f->dst->port_no:0; in copy_fdb()
49 ent->is_local = f->is_local; in copy_fdb()
51 if (!f->is_static) in copy_fdb()
52 ent->ageing_timer_value = jiffies - f->ageing_timer; in copy_fdb()
101 struct net_bridge_fdb_entry *f; in br_fdb_changeaddr() local
103 f = br->hash[i]; in br_fdb_changeaddr()
104 while (f != NULL) { in br_fdb_changeaddr()
105 if (f->dst == p && f->is_local) { in br_fdb_changeaddr()
[all …]
/linux-2.4.37.9/arch/sparc/boot/
Dbtfixupprep.c43 struct _btfixup *f; member
108 btfixup *f; in main() local
199 f = find(buffer[nbase+3], buffer + shift); in main()
271 if (!f->setinitval) { in main()
272 f->initval = initval; in main()
274 f->initvalstr = strdup(initvalstr); in main()
275 if (!f->initvalstr) fatal(); in main()
277 f->setinitval = 1; in main()
278 } else if (f->initval != initval) { in main()
280 f->name, f->initvalstr ? : "0x00000000", buffer); in main()
[all …]
/linux-2.4.37.9/fs/jffs/
Dintrep.c90 static int jffs_update_file(struct jffs_file *f, struct jffs_node *node);
410 struct jffs_file *f; in jffs_create_file() local
412 if (!(f = (struct jffs_file *)kmalloc(sizeof(struct jffs_file), in jffs_create_file()
418 memset(f, 0, sizeof(struct jffs_file)); in jffs_create_file()
419 f->ino = raw_inode->ino; in jffs_create_file()
420 f->pino = raw_inode->pino; in jffs_create_file()
421 f->nlink = raw_inode->nlink; in jffs_create_file()
422 f->deleted = raw_inode->deleted; in jffs_create_file()
423 f->c = c; in jffs_create_file()
425 return f; in jffs_create_file()
[all …]
Dintrep.h30 int jffs_insert_node(struct jffs_control *c, struct jffs_file *f,
39 int jffs_free_node_list(struct jffs_file *f);
40 int jffs_free_file(struct jffs_file *f);
41 int jffs_possibly_delete_file(struct jffs_file *f);
42 int jffs_build_file(struct jffs_file *f);
43 int jffs_insert_file_into_hash(struct jffs_file *f);
44 int jffs_insert_file_into_tree(struct jffs_file *f);
45 int jffs_unlink_file_from_hash(struct jffs_file *f);
46 int jffs_unlink_file_from_tree(struct jffs_file *f);
47 int jffs_remove_redundant_nodes(struct jffs_file *f);
[all …]
/linux-2.4.37.9/arch/m68k/math-emu/
Dfp_cond.S57 jra 1f
71 jeq 1f
85 jne 2f
89 jcs 1f
147 jmp ([0f:w,%pc,%d0*4])
178 jeq 1f
180 jeq 1f
185 jmp ([0f:w,%pc,%d0.w*4])
201 jeq 1f
208 jne 1f
[all …]
/linux-2.4.37.9/drivers/char/mwave/
Dmwavedd.h72 #define PRINTK_1(f,s) \ argument
73 if (f & (mwave_debug)) { \
77 #define PRINTK_2(f,s,v1) \ argument
78 if (f & (mwave_debug)) { \
82 #define PRINTK_3(f,s,v1,v2) \ argument
83 if (f & (mwave_debug)) { \
87 #define PRINTK_4(f,s,v1,v2,v3) \ argument
88 if (f & (mwave_debug)) { \
92 #define PRINTK_5(f,s,v1,v2,v3,v4) \ argument
93 if (f & (mwave_debug)) { \
[all …]
/linux-2.4.37.9/net/decnet/
Ddn_table.c70 #define DN_FIB_SCAN(f, fp) \ argument
71 for( ; ((f) = *(fp)) != NULL; (fp) = &(f)->fn_next)
73 #define DN_FIB_SCAN_KEY(f, fp, key) \ argument
74 for( ; ((f) = *(fp)) != NULL && dn_key_eq((f)->fn_key, (key)); (fp) = &(f)->fn_next)
125 struct dn_fib_node *f, **fp, *next; in dn_rebuild_zone() local
128 for(f = old_ht[i]; f; f = f->fn_next) { in dn_rebuild_zone()
129 next = f->fn_next; in dn_rebuild_zone()
130 for(fp = dn_chain_p(f->fn_key, dz); in dn_rebuild_zone()
131 *fp && dn_key_leq((*fp)->fn_key, f->fn_key); in dn_rebuild_zone()
134 f->fn_next = *fp; in dn_rebuild_zone()
[all …]
/linux-2.4.37.9/crypto/
Dsha256.c84 u32 a, b, c, d, e, f, g, h, t1, t2; in sha256_transform() local
98 e=state[4]; f=state[5]; g=state[6]; h=state[7]; in sha256_transform()
101 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0]; in sha256_transform()
103 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1]; in sha256_transform()
105 t1 = f + e1(c) + Ch(c,d,e) + 0xb5c0fbcf + W[ 2]; in sha256_transform()
106 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha256_transform()
108 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha256_transform()
110 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha256_transform()
112 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha256_transform()
114 t2 = e0(c) + Maj(c,d,e); f+=t1; b=t1+t2; in sha256_transform()
[all …]
/linux-2.4.37.9/fs/jffs2/
Dreadinode.c50 D1(void jffs2_print_frag_list(struct jffs2_inode_info *f) in D1()
52 struct jffs2_node_frag *this = f->fraglist; in D1()
61 if (f->metadata) { in D1()
62 printk(KERN_DEBUG "metadata at 0x%08x\n", f->metadata->raw->flash_offset &~3); in D1()
67 int jffs2_add_full_dnode_to_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f, struct jffs2…
70 …D1(printk(KERN_DEBUG "jffs2_add_full_dnode_to_inode(ino #%u, f %p, fn %p)\n", f->inocache->ino, f,…
72 ret = jffs2_add_full_dnode_to_fraglist(c, &f->fraglist, fn);
74 D2(jffs2_print_frag_list(f));
250 struct jffs2_inode_info *f; in jffs2_read_inode() local
261 f = JFFS2_INODE_INFO(inode); in jffs2_read_inode()
[all …]
/linux-2.4.37.9/drivers/isdn/
Disdn_ttyfax.c51 T30_s *f = info->fax; in isdn_tty_fax_modem_result() local
82 f->fet = 0; in isdn_tty_fax_modem_result()
83 if (f->phase == ISDN_FAX_PHASE_A) in isdn_tty_fax_modem_result()
84 f->phase = ISDN_FAX_PHASE_B; in isdn_tty_fax_modem_result()
88 sprintf(rs, "\"%s\"", f->r_id); in isdn_tty_fax_modem_result()
93 rp = &f->r_resolution; in isdn_tty_fax_modem_result()
106 sprintf(rs, "%d", f->code); in isdn_tty_fax_modem_result()
112 rp = &f->r_resolution; in isdn_tty_fax_modem_result()
133 sprintf(rs, "%d", f->fet); in isdn_tty_fax_modem_result()
193 T30_s *f = info->fax; in isdn_tty_fax_command() local
[all …]
/linux-2.4.37.9/arch/ppc/lib/
Dstring.S48 b 104f; \
51 b 105f; \
65 .stabs "arch/ppc/lib/",N_SO,0,0,0f
66 .stabs "string.S",N_SO,0,0,0f
143 blt 7f
153 ble 2f
156 beq 3f
176 bdz 6f
193 blt 7f
201 bdz 6f
[all …]
/linux-2.4.37.9/arch/arm/lib/
Dcsumpartialcopyuser.S32 .long 9999b, 6001f
40 .long 9999b, 6001f
41 .long 9998b, 6001f
49 .long 9999b, 6001f
57 .long 9999b, 6001f
58 .long 9998b, 6001f
68 .long 9999b, 6001f
69 .long 9998b, 6001f
70 .long 9997b, 6001f
71 .long 9996b, 6001f
[all …]
/linux-2.4.37.9/drivers/s390/net/
Dfsm.c20 fsm *f; in init_fsm() local
31 f = (fsm *)kmalloc(sizeof(fsm), order); in init_fsm()
32 if (f == NULL) { in init_fsm()
38 memset(f, 0, sizeof(fsm)); in init_fsm()
39 f->nr_events = nr_events; in init_fsm()
40 f->nr_states = nr_states; in init_fsm()
41 f->event_names = event_names; in init_fsm()
42 f->state_names = state_names; in init_fsm()
43 this->f = f; in init_fsm()
53 memset(m, 0, sizeof(fsm_function_t) * f->nr_states * f->nr_events); in init_fsm()
[all …]
/linux-2.4.37.9/drivers/ieee1394/
Ddv1394.c195 static void frame_reset(struct frame *f) in frame_reset() argument
197 f->state = FRAME_CLEAR; in frame_reset()
198 f->done = 0; in frame_reset()
199 f->n_packets = 0; in frame_reset()
200 f->frame_begin_timestamp = NULL; in frame_reset()
201 f->assigned_timestamp = 0; in frame_reset()
202 f->cip_syt1 = NULL; in frame_reset()
203 f->cip_syt2 = NULL; in frame_reset()
204 f->mid_frame_timestamp = NULL; in frame_reset()
205 f->frame_end_timestamp = NULL; in frame_reset()
[all …]
/linux-2.4.37.9/net/ipv4/netfilter/
Dipchains_core.c202 #define FWC_READ_LOCK_IRQ(l,f) do { FWC_DEBUG_LOCK(fwc_rlocks); read_lock_irqsave(l,f); } while (0) argument
203 #define FWC_WRITE_LOCK_IRQ(l,f) do { FWC_DEBUG_LOCK(fwc_wlocks); write_lock_irqsave(l,f); } while (… argument
206 #define FWC_READ_UNLOCK_IRQ(l,f) do { FWC_DEBUG_UNLOCK(fwc_rlocks); read_unlock_irqrestore(l,f); } … argument
207 #define FWC_WRITE_UNLOCK_IRQ(l,f) do { FWC_DEBUG_UNLOCK(fwc_wlocks); write_unlock_irqrestore(l,f); … argument
281 static int ip_rule_match(struct ip_fwkernel *f, in ip_rule_match() argument
288 #define FWINV(bool,invflg) ((bool) ^ !!(f->ipfw.fw_invflg & invflg)) in ip_rule_match()
295 if (FWINV((ip->saddr&f->ipfw.fw_smsk.s_addr) != f->ipfw.fw_src.s_addr, in ip_rule_match()
297 || FWINV((ip->daddr&f->ipfw.fw_dmsk.s_addr)!=f->ipfw.fw_dst.s_addr, in ip_rule_match()
302 f->ipfw.fw_smsk.s_addr, f->ipfw.fw_src.s_addr, in ip_rule_match()
303 f->ipfw.fw_invflg & IP_FW_INV_SRCIP ? " (INV)" : ""); in ip_rule_match()
[all …]
/linux-2.4.37.9/fs/smbfs/
Dsmb_debug.h14 # define PARANOIA(f, a...) printk(KERN_NOTICE "%s: " f, __FUNCTION__ , ## a) argument
16 # define PARANOIA(f, a...) do { ; } while(0) argument
21 # define VERBOSE(f, a...) printk(KERN_DEBUG "%s: " f, __FUNCTION__ , ## a) argument
23 # define VERBOSE(f, a...) do { ; } while(0) argument
31 # define DEBUG1(f, a...) printk(KERN_DEBUG "%s: " f, __FUNCTION__ , ## a) argument
33 # define DEBUG1(f, a...) do { ; } while(0) argument
/linux-2.4.37.9/arch/i386/math-emu/
Dreg_compare.c177 int f = 0, c; in FPU_compare_st_data() local
184 f = SW_C3 | SW_C2 | SW_C0; in FPU_compare_st_data()
190 f = SW_C0; in FPU_compare_st_data()
193 f = SW_C3; in FPU_compare_st_data()
196 f = 0; in FPU_compare_st_data()
199 f = SW_C3 | SW_C2 | SW_C0; in FPU_compare_st_data()
204 f = SW_C3 | SW_C2 | SW_C0; in FPU_compare_st_data()
208 setcc(f); in FPU_compare_st_data()
219 int f = 0, c; in compare_st_st() local
242 f = SW_C0; in compare_st_st()
[all …]
/linux-2.4.37.9/arch/sparc64/lib/
DVISmemset.S56 bleu,pn %xcc, 17f
58 be,pt %xcc, 4f
61 be,pn %xcc, 2f
64 be,pt %xcc, 2f
75 be,pt %xcc, 2f
89 blu,pn %xcc, 9f
91 be,pn %icc, 6f
94 be,pn %icc, 1f
104 be,pn %icc, 1f
117 be,pn %icc, 7f
[all …]

12345678910>>...29