Searched refs:inc (Results 1 - 200 of 319) sorted by relevance

12

/linux-4.1.27/net/rds/
H A Drecv.c41 void rds_inc_init(struct rds_incoming *inc, struct rds_connection *conn, rds_inc_init() argument
44 atomic_set(&inc->i_refcount, 1); rds_inc_init()
45 INIT_LIST_HEAD(&inc->i_item); rds_inc_init()
46 inc->i_conn = conn; rds_inc_init()
47 inc->i_saddr = saddr; rds_inc_init()
48 inc->i_rdma_cookie = 0; rds_inc_init()
52 static void rds_inc_addref(struct rds_incoming *inc) rds_inc_addref() argument
54 rdsdebug("addref inc %p ref %d\n", inc, atomic_read(&inc->i_refcount)); rds_inc_addref()
55 atomic_inc(&inc->i_refcount); rds_inc_addref()
58 void rds_inc_put(struct rds_incoming *inc) rds_inc_put() argument
60 rdsdebug("put inc %p ref %d\n", inc, atomic_read(&inc->i_refcount)); rds_inc_put()
61 if (atomic_dec_and_test(&inc->i_refcount)) { rds_inc_put()
62 BUG_ON(!list_empty(&inc->i_item)); rds_inc_put()
64 inc->i_conn->c_trans->inc_free(inc); rds_inc_put()
108 static void rds_recv_incoming_exthdrs(struct rds_incoming *inc, struct rds_sock *rs) rds_recv_incoming_exthdrs() argument
110 struct rds_header *hdr = &inc->i_hdr; rds_recv_incoming_exthdrs()
132 inc->i_rdma_cookie = rds_rdma_make_cookie( rds_recv_incoming_exthdrs()
158 struct rds_incoming *inc, gfp_t gfp) rds_recv_incoming()
164 inc->i_conn = conn; rds_recv_incoming()
165 inc->i_rx_jiffies = jiffies; rds_recv_incoming()
167 rdsdebug("conn %p next %llu inc %p seq %llu len %u sport %u dport %u " rds_recv_incoming()
170 inc, rds_recv_incoming()
171 (unsigned long long)be64_to_cpu(inc->i_hdr.h_sequence), rds_recv_incoming()
172 be32_to_cpu(inc->i_hdr.h_len), rds_recv_incoming()
173 be16_to_cpu(inc->i_hdr.h_sport), rds_recv_incoming()
174 be16_to_cpu(inc->i_hdr.h_dport), rds_recv_incoming()
175 inc->i_hdr.h_flags, rds_recv_incoming()
176 inc->i_rx_jiffies); rds_recv_incoming()
198 if (be64_to_cpu(inc->i_hdr.h_sequence) < conn->c_next_rx_seq && rds_recv_incoming()
199 (inc->i_hdr.h_flags & RDS_FLAG_RETRANSMITTED)) { rds_recv_incoming()
203 conn->c_next_rx_seq = be64_to_cpu(inc->i_hdr.h_sequence) + 1; rds_recv_incoming()
205 if (rds_sysctl_ping_enable && inc->i_hdr.h_dport == 0) { rds_recv_incoming()
207 rds_send_pong(conn, inc->i_hdr.h_sport); rds_recv_incoming()
211 rs = rds_find_bound(daddr, inc->i_hdr.h_dport); rds_recv_incoming()
218 rds_recv_incoming_exthdrs(inc, rs); rds_recv_incoming()
226 rdsdebug("adding inc %p to rs %p's recv queue\n", inc, rs); rds_recv_incoming()
228 rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong, rds_recv_incoming()
229 be32_to_cpu(inc->i_hdr.h_len), rds_recv_incoming()
230 inc->i_hdr.h_dport); rds_recv_incoming()
231 rds_inc_addref(inc); rds_recv_incoming()
232 list_add_tail(&inc->i_item, &rs->rs_recv_queue); rds_recv_incoming()
249 static int rds_next_incoming(struct rds_sock *rs, struct rds_incoming **inc) rds_next_incoming() argument
253 if (!*inc) { rds_next_incoming()
256 *inc = list_entry(rs->rs_recv_queue.next, rds_next_incoming()
259 rds_inc_addref(*inc); rds_next_incoming()
264 return *inc != NULL; rds_next_incoming()
267 static int rds_still_queued(struct rds_sock *rs, struct rds_incoming *inc, rds_still_queued() argument
275 if (!list_empty(&inc->i_item)) { rds_still_queued()
279 rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong, rds_still_queued()
280 -be32_to_cpu(inc->i_hdr.h_len), rds_still_queued()
281 inc->i_hdr.h_dport); rds_still_queued()
282 list_del_init(&inc->i_item); rds_still_queued()
283 rds_inc_put(inc); rds_still_queued()
288 rdsdebug("inc %p rs %p still %d dropped %d\n", inc, rs, ret, drop); rds_still_queued()
384 static int rds_cmsg_recv(struct rds_incoming *inc, struct msghdr *msg) rds_cmsg_recv() argument
388 if (inc->i_rdma_cookie) { rds_cmsg_recv()
390 sizeof(inc->i_rdma_cookie), &inc->i_rdma_cookie); rds_cmsg_recv()
406 struct rds_incoming *inc = NULL; rds_recvmsg() local
429 if (!rds_next_incoming(rs, &inc)) { rds_recvmsg()
438 rds_next_incoming(rs, &inc)), timeo); rds_recvmsg()
439 rdsdebug("recvmsg woke inc %p timeo %ld\n", inc, rds_recvmsg()
450 rdsdebug("copying inc %p from %pI4:%u to user\n", inc, rds_recvmsg()
451 &inc->i_conn->c_faddr, rds_recvmsg()
452 ntohs(inc->i_hdr.h_sport)); rds_recvmsg()
454 ret = inc->i_conn->c_trans->inc_copy_to_user(inc, &msg->msg_iter); rds_recvmsg()
463 if (!rds_still_queued(rs, inc, !(msg_flags & MSG_PEEK))) { rds_recvmsg()
464 rds_inc_put(inc); rds_recvmsg()
465 inc = NULL; rds_recvmsg()
471 if (ret < be32_to_cpu(inc->i_hdr.h_len)) { rds_recvmsg()
473 ret = be32_to_cpu(inc->i_hdr.h_len); rds_recvmsg()
477 if (rds_cmsg_recv(inc, msg)) { rds_recvmsg()
486 sin->sin_port = inc->i_hdr.h_sport; rds_recvmsg()
487 sin->sin_addr.s_addr = inc->i_saddr; rds_recvmsg()
494 if (inc) rds_recvmsg()
495 rds_inc_put(inc); rds_recvmsg()
509 struct rds_incoming *inc, *tmp; rds_clear_recv_queue() local
513 list_for_each_entry_safe(inc, tmp, &rs->rs_recv_queue, i_item) { rds_clear_recv_queue()
514 rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong, rds_clear_recv_queue()
515 -be32_to_cpu(inc->i_hdr.h_len), rds_clear_recv_queue()
516 inc->i_hdr.h_dport); rds_clear_recv_queue()
517 list_del_init(&inc->i_item); rds_clear_recv_queue()
518 rds_inc_put(inc); rds_clear_recv_queue()
524 * inc->i_saddr isn't used here because it is only set in the receive
527 void rds_inc_info_copy(struct rds_incoming *inc, rds_inc_info_copy() argument
533 minfo.seq = be64_to_cpu(inc->i_hdr.h_sequence); rds_inc_info_copy()
534 minfo.len = be32_to_cpu(inc->i_hdr.h_len); rds_inc_info_copy()
539 minfo.lport = inc->i_hdr.h_dport; rds_inc_info_copy()
540 minfo.fport = inc->i_hdr.h_sport; rds_inc_info_copy()
544 minfo.lport = inc->i_hdr.h_sport; rds_inc_info_copy()
545 minfo.fport = inc->i_hdr.h_dport; rds_inc_info_copy()
157 rds_recv_incoming(struct rds_connection *conn, __be32 saddr, __be32 daddr, struct rds_incoming *inc, gfp_t gfp) rds_recv_incoming() argument
H A Dtcp_recv.c42 static void rds_tcp_inc_purge(struct rds_incoming *inc) rds_tcp_inc_purge() argument
45 tinc = container_of(inc, struct rds_tcp_incoming, ti_inc); rds_tcp_inc_purge()
46 rdsdebug("purging tinc %p inc %p\n", tinc, inc); rds_tcp_inc_purge()
50 void rds_tcp_inc_free(struct rds_incoming *inc) rds_tcp_inc_free() argument
53 tinc = container_of(inc, struct rds_tcp_incoming, ti_inc); rds_tcp_inc_free()
54 rds_tcp_inc_purge(inc); rds_tcp_inc_free()
55 rdsdebug("freeing tinc %p inc %p\n", tinc, inc); rds_tcp_inc_free()
62 int rds_tcp_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to) rds_tcp_inc_copy_to_user() argument
71 tinc = container_of(inc, struct rds_tcp_incoming, ti_inc); rds_tcp_inc_copy_to_user()
H A Dtcp.h71 void rds_tcp_inc_free(struct rds_incoming *inc);
72 int rds_tcp_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
H A Dloop.c78 /* For the embedded inc. Matching put is in loop_inc_free() */ rds_loop_xmit()
93 * See rds_loop_xmit(). Since our inc is embedded in the rm, we
94 * make sure the rm lives at least until the inc is done.
96 static void rds_loop_inc_free(struct rds_incoming *inc) rds_loop_inc_free() argument
98 struct rds_message *rm = container_of(inc, struct rds_message, m_inc); rds_loop_inc_free()
H A Dib_recv.c156 struct rds_ib_incoming *inc; rds_ib_recv_free_caches() local
166 list_for_each_entry_safe(inc, inc_tmp, &list, ii_cache_entry) { rds_ib_recv_free_caches()
167 list_del(&inc->ii_cache_entry); rds_ib_recv_free_caches()
168 WARN_ON(!list_empty(&inc->ii_frags)); rds_ib_recv_free_caches()
169 kmem_cache_free(rds_ib_incoming_slab, inc); rds_ib_recv_free_caches()
198 /* Recycle inc after freeing attached frags */ rds_ib_inc_free()
199 void rds_ib_inc_free(struct rds_incoming *inc) rds_ib_inc_free() argument
204 struct rds_ib_connection *ic = inc->i_conn->c_transport_data; rds_ib_inc_free()
206 ibinc = container_of(inc, struct rds_ib_incoming, ii_inc); rds_ib_inc_free()
215 rdsdebug("freeing ibinc %p inc %p\n", ibinc, inc); rds_ib_inc_free()
475 int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to) rds_ib_inc_copy_to_user() argument
485 ibinc = container_of(inc, struct rds_ib_incoming, ii_inc); rds_ib_inc_copy_to_user()
487 len = be32_to_cpu(inc->i_hdr.h_len); rds_ib_inc_copy_to_user()
855 * the inc is freed. We don't go that route, so we have to drop the rds_ib_process_recv()
868 * If we don't already have an inc on the connection then this rds_ib_process_recv()
870 * into the inc and save the inc so we can hang upcoming fragments rds_ib_process_recv()
H A Diw_recv.c276 static void rds_iw_inc_purge(struct rds_incoming *inc) rds_iw_inc_purge() argument
282 iwinc = container_of(inc, struct rds_iw_incoming, ii_inc); rds_iw_inc_purge()
283 rdsdebug("purging iwinc %p inc %p\n", iwinc, inc); rds_iw_inc_purge()
292 void rds_iw_inc_free(struct rds_incoming *inc) rds_iw_inc_free() argument
296 iwinc = container_of(inc, struct rds_iw_incoming, ii_inc); rds_iw_inc_free()
298 rds_iw_inc_purge(inc); rds_iw_inc_free()
299 rdsdebug("freeing iwinc %p inc %p\n", iwinc, inc); rds_iw_inc_free()
306 int rds_iw_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to) rds_iw_inc_copy_to_user() argument
316 iwinc = container_of(inc, struct rds_iw_incoming, ii_inc); rds_iw_inc_copy_to_user()
318 len = be32_to_cpu(inc->i_hdr.h_len); rds_iw_inc_copy_to_user()
686 * the inc is freed. We don't go that route, so we have to drop the rds_iw_process_recv()
699 * If we don't already have an inc on the connection then this rds_iw_process_recv()
701 * into the inc and save the inc so we can hang upcoming fragments rds_iw_process_recv()
H A Daf_rds.c471 struct rds_incoming *inc; rds_sock_inc_info() local
482 list_for_each_entry(inc, &rs->rs_recv_queue, i_item) { rds_sock_inc_info()
485 rds_inc_info_copy(inc, iter, inc->i_saddr, rds_sock_inc_info()
H A Drds.h435 int (*inc_copy_to_user)(struct rds_incoming *inc, struct iov_iter *to);
436 void (*inc_free)(struct rds_incoming *inc);
669 int rds_message_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
670 void rds_message_inc_free(struct rds_incoming *inc);
701 void rds_inc_init(struct rds_incoming *inc, struct rds_connection *conn,
703 void rds_inc_put(struct rds_incoming *inc);
705 struct rds_incoming *inc, gfp_t gfp);
710 void rds_inc_info_copy(struct rds_incoming *inc,
H A Dib.h318 void rds_ib_inc_free(struct rds_incoming *inc);
319 int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
H A Diw.h327 void rds_iw_inc_free(struct rds_incoming *inc);
328 int rds_iw_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
H A Dmessage.c310 int rds_message_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to) rds_message_inc_copy_to_user() argument
320 rm = container_of(inc, struct rds_message, m_inc); rds_message_inc_copy_to_user()
/linux-4.1.27/arch/x86/include/asm/
H A Dxor.h109 " add %[inc], %[p1] ;\n" xor_sse_2()
110 " add %[inc], %[p2] ;\n" xor_sse_2()
115 : [inc] XOR_CONSTANT_CONSTRAINT (256UL) xor_sse_2()
143 " add %[inc], %[p1] ;\n" xor_sse_2_pf64()
144 " add %[inc], %[p2] ;\n" xor_sse_2_pf64()
149 : [inc] XOR_CONSTANT_CONSTRAINT (256UL) xor_sse_2_pf64()
201 " add %[inc], %[p1] ;\n" xor_sse_3()
202 " add %[inc], %[p2] ;\n" xor_sse_3()
203 " add %[inc], %[p3] ;\n" xor_sse_3()
208 : [inc] XOR_CONSTANT_CONSTRAINT (256UL) xor_sse_3()
238 " add %[inc], %[p1] ;\n" xor_sse_3_pf64()
239 " add %[inc], %[p2] ;\n" xor_sse_3_pf64()
240 " add %[inc], %[p3] ;\n" xor_sse_3_pf64()
245 : [inc] XOR_CONSTANT_CONSTRAINT (256UL) xor_sse_3_pf64()
303 " add %[inc], %[p1] ;\n" xor_sse_4()
304 " add %[inc], %[p2] ;\n" xor_sse_4()
305 " add %[inc], %[p3] ;\n" xor_sse_4()
306 " add %[inc], %[p4] ;\n" xor_sse_4()
311 : [inc] XOR_CONSTANT_CONSTRAINT (256UL) xor_sse_4()
342 " add %[inc], %[p1] ;\n" xor_sse_4_pf64()
343 " add %[inc], %[p2] ;\n" xor_sse_4_pf64()
344 " add %[inc], %[p3] ;\n" xor_sse_4_pf64()
345 " add %[inc], %[p4] ;\n" xor_sse_4_pf64()
350 : [inc] XOR_CONSTANT_CONSTRAINT (256UL) xor_sse_4_pf64()
414 " add %[inc], %[p1] ;\n" xor_sse_5()
415 " add %[inc], %[p2] ;\n" xor_sse_5()
416 " add %[inc], %[p3] ;\n" xor_sse_5()
417 " add %[inc], %[p4] ;\n" xor_sse_5()
418 " add %[inc], %[p5] ;\n" xor_sse_5()
423 : [inc] XOR_CONSTANT_CONSTRAINT (256UL) xor_sse_5()
455 " add %[inc], %[p1] ;\n" xor_sse_5_pf64()
456 " add %[inc], %[p2] ;\n" xor_sse_5_pf64()
457 " add %[inc], %[p3] ;\n" xor_sse_5_pf64()
458 " add %[inc], %[p4] ;\n" xor_sse_5_pf64()
459 " add %[inc], %[p5] ;\n" xor_sse_5_pf64()
464 : [inc] XOR_CONSTANT_CONSTRAINT (256UL) xor_sse_5_pf64()
H A Dcmpxchg.h158 * xadd() adds "inc" to "*ptr" and atomically returns the previous
165 #define __xadd(ptr, inc, lock) __xchg_op((ptr), (inc), xadd, lock)
166 #define xadd(ptr, inc) __xadd((ptr), (inc), LOCK_PREFIX)
167 #define xadd_sync(ptr, inc) __xadd((ptr), (inc), "lock; ")
168 #define xadd_local(ptr, inc) __xadd((ptr), (inc), "")
170 #define __add(ptr, inc, lock) \
172 __typeof__ (*(ptr)) __ret = (inc); \
176 : "+m" (*(ptr)) : "qi" (inc) \
181 : "+m" (*(ptr)) : "ri" (inc) \
186 : "+m" (*(ptr)) : "ri" (inc) \
191 : "+m" (*(ptr)) : "ri" (inc) \
201 * add_*() adds "inc" to "*ptr"
207 #define add_smp(ptr, inc) __add((ptr), (inc), LOCK_PREFIX)
208 #define add_sync(ptr, inc) __add((ptr), (inc), "lock; ")
H A Dspinlock.h104 register struct __raw_tickets inc = { .tail = TICKET_LOCK_INC }; arch_spin_lock() local
106 inc = xadd(&lock->tickets, inc); arch_spin_lock()
107 if (likely(inc.head == inc.tail)) arch_spin_lock()
114 inc.head = READ_ONCE(lock->tickets.head); arch_spin_lock()
115 if (__tickets_equal(inc.head, inc.tail)) arch_spin_lock()
119 __ticket_lock_spinning(lock, inc.tail); arch_spin_lock()
122 __ticket_check_and_clear_slowpath(lock, inc.head); arch_spin_lock()
H A Dasm.h30 #define _ASM_INC __ASM_SIZE(inc)
H A Datomic64_32.h221 __alternative_atomic64(inc, inc_return, /* no output */, atomic64_inc()
/linux-4.1.27/net/netfilter/ipvs/
H A Dip_vs_app.c61 static void ip_vs_app_inc_destroy(struct ip_vs_app *inc) ip_vs_app_inc_destroy() argument
63 kfree(inc->timeout_table); ip_vs_app_inc_destroy()
64 kfree(inc); ip_vs_app_inc_destroy()
69 struct ip_vs_app *inc = container_of(head, struct ip_vs_app, rcu_head); ip_vs_app_inc_rcu_free() local
71 ip_vs_app_inc_destroy(inc); ip_vs_app_inc_rcu_free()
82 struct ip_vs_app *inc; ip_vs_app_inc_new() local
91 inc = kmemdup(app, sizeof(*inc), GFP_KERNEL); ip_vs_app_inc_new()
92 if (!inc) ip_vs_app_inc_new()
94 INIT_LIST_HEAD(&inc->p_list); ip_vs_app_inc_new()
95 INIT_LIST_HEAD(&inc->incs_list); ip_vs_app_inc_new()
96 inc->app = app; ip_vs_app_inc_new()
97 inc->port = htons(port); ip_vs_app_inc_new()
98 atomic_set(&inc->usecnt, 0); ip_vs_app_inc_new()
101 inc->timeout_table = ip_vs_app_inc_new()
104 if (!inc->timeout_table) { ip_vs_app_inc_new()
110 ret = pp->register_app(net, inc); ip_vs_app_inc_new()
114 list_add(&inc->a_list, &app->incs_list); ip_vs_app_inc_new()
116 pp->name, inc->name, ntohs(inc->port)); ip_vs_app_inc_new()
121 ip_vs_app_inc_destroy(inc); ip_vs_app_inc_new()
130 ip_vs_app_inc_release(struct net *net, struct ip_vs_app *inc) ip_vs_app_inc_release() argument
134 if (!(pp = ip_vs_proto_get(inc->protocol))) ip_vs_app_inc_release()
138 pp->unregister_app(net, inc); ip_vs_app_inc_release()
141 pp->name, inc->name, ntohs(inc->port)); ip_vs_app_inc_release()
143 list_del(&inc->a_list); ip_vs_app_inc_release()
145 call_rcu(&inc->rcu_head, ip_vs_app_inc_rcu_free); ip_vs_app_inc_release()
150 * Get reference to app inc (only called from softirq)
153 int ip_vs_app_inc_get(struct ip_vs_app *inc) ip_vs_app_inc_get() argument
157 result = ip_vs_app_get(inc->app); ip_vs_app_inc_get()
159 atomic_inc(&inc->usecnt); ip_vs_app_inc_get()
165 * Put the app inc (only called from timer or net softirq)
167 void ip_vs_app_inc_put(struct ip_vs_app *inc) ip_vs_app_inc_put() argument
169 atomic_dec(&inc->usecnt); ip_vs_app_inc_put()
170 ip_vs_app_put(inc->app); ip_vs_app_inc_put()
236 struct ip_vs_app *a, *anxt, *inc, *nxt; unregister_ip_vs_app() local
246 list_for_each_entry_safe(inc, nxt, &a->incs_list, a_list) { unregister_ip_vs_app()
247 ip_vs_app_inc_release(net, inc); unregister_ip_vs_app()
276 struct ip_vs_app *inc = cp->app; ip_vs_unbind_app() local
278 if (!inc) ip_vs_unbind_app()
281 if (inc->unbind_conn) ip_vs_unbind_app()
282 inc->unbind_conn(inc, cp); ip_vs_unbind_app()
283 if (inc->done_conn) ip_vs_unbind_app()
284 inc->done_conn(inc, cp); ip_vs_unbind_app()
285 ip_vs_app_inc_put(inc); ip_vs_unbind_app()
522 struct ip_vs_app *app, *inc; ip_vs_app_idx() local
525 list_for_each_entry(inc, &app->incs_list, a_list) { ip_vs_app_idx()
527 return inc; ip_vs_app_idx()
546 struct ip_vs_app *inc, *app; ip_vs_app_seq_next() local
555 inc = v; ip_vs_app_seq_next()
556 app = inc->app; ip_vs_app_seq_next()
558 if ((e = inc->a_list.next) != &app->incs_list) ip_vs_app_seq_next()
564 list_for_each_entry(inc, &app->incs_list, a_list) { ip_vs_app_seq_next()
565 return inc; ip_vs_app_seq_next()
581 const struct ip_vs_app *inc = v; ip_vs_app_seq_show() local
584 ip_vs_proto_name(inc->protocol), ip_vs_app_seq_show()
585 ntohs(inc->port), ip_vs_app_seq_show()
586 atomic_read(&inc->usecnt), ip_vs_app_seq_show()
587 inc->name); ip_vs_app_seq_show()
H A Dip_vs_proto_udp.c351 static int udp_register_app(struct net *net, struct ip_vs_app *inc) udp_register_app() argument
355 __be16 port = inc->port; udp_register_app()
368 list_add_rcu(&inc->p_list, &ipvs->udp_apps[hash]); udp_register_app()
377 udp_unregister_app(struct net *net, struct ip_vs_app *inc) udp_unregister_app() argument
382 list_del_rcu(&inc->p_list); udp_unregister_app()
390 struct ip_vs_app *inc; udp_app_conn_bind() local
401 list_for_each_entry_rcu(inc, &ipvs->udp_apps[hash], p_list) { udp_app_conn_bind()
402 if (inc->port == cp->vport) { udp_app_conn_bind()
403 if (unlikely(!ip_vs_app_inc_get(inc))) udp_app_conn_bind()
414 inc->name, ntohs(inc->port)); udp_app_conn_bind()
416 cp->app = inc; udp_app_conn_bind()
417 if (inc->init_conn) udp_app_conn_bind()
418 result = inc->init_conn(inc, cp); udp_app_conn_bind()
H A Dip_vs_proto_sctp.c477 static int sctp_register_app(struct net *net, struct ip_vs_app *inc) sctp_register_app() argument
481 __be16 port = inc->port; sctp_register_app()
494 list_add_rcu(&inc->p_list, &ipvs->sctp_apps[hash]); sctp_register_app()
501 static void sctp_unregister_app(struct net *net, struct ip_vs_app *inc) sctp_unregister_app() argument
506 list_del_rcu(&inc->p_list); sctp_unregister_app()
513 struct ip_vs_app *inc; sctp_app_conn_bind() local
523 list_for_each_entry_rcu(inc, &ipvs->sctp_apps[hash], p_list) { sctp_app_conn_bind()
524 if (inc->port == cp->vport) { sctp_app_conn_bind()
525 if (unlikely(!ip_vs_app_inc_get(inc))) sctp_app_conn_bind()
536 inc->name, ntohs(inc->port)); sctp_app_conn_bind()
537 cp->app = inc; sctp_app_conn_bind()
538 if (inc->init_conn) sctp_app_conn_bind()
539 result = inc->init_conn(inc, cp); sctp_app_conn_bind()
H A Dip_vs_proto_tcp.c574 static int tcp_register_app(struct net *net, struct ip_vs_app *inc) tcp_register_app() argument
578 __be16 port = inc->port; tcp_register_app()
591 list_add_rcu(&inc->p_list, &ipvs->tcp_apps[hash]); tcp_register_app()
600 tcp_unregister_app(struct net *net, struct ip_vs_app *inc) tcp_unregister_app() argument
605 list_del_rcu(&inc->p_list); tcp_unregister_app()
614 struct ip_vs_app *inc; tcp_app_conn_bind() local
625 list_for_each_entry_rcu(inc, &ipvs->tcp_apps[hash], p_list) { tcp_app_conn_bind()
626 if (inc->port == cp->vport) { tcp_app_conn_bind()
627 if (unlikely(!ip_vs_app_inc_get(inc))) tcp_app_conn_bind()
638 inc->name, ntohs(inc->port)); tcp_app_conn_bind()
640 cp->app = inc; tcp_app_conn_bind()
641 if (inc->init_conn) tcp_app_conn_bind()
642 result = inc->init_conn(inc, cp); tcp_app_conn_bind()
/linux-4.1.27/sound/oss/
H A Dmidi_synth.c127 struct midi_input_info *inc; midi_synth_input() local
149 inc = &midi_devs[orig_dev]->in_info; midi_synth_input()
151 switch (inc->m_state) midi_synth_input()
161 inc->m_state = MST_SYSEX; midi_synth_input()
166 inc->m_state = MST_DATA; midi_synth_input()
167 inc->m_ptr = 1; midi_synth_input()
168 inc->m_left = 1; midi_synth_input()
169 inc->m_buf[0] = data; midi_synth_input()
173 inc->m_state = MST_DATA; midi_synth_input()
174 inc->m_ptr = 1; midi_synth_input()
175 inc->m_left = 2; midi_synth_input()
176 inc->m_buf[0] = data; midi_synth_input()
180 inc->m_buf[0] = data; midi_synth_input()
181 inc->m_ptr = 1; midi_synth_input()
182 do_midi_msg(dev, inc->m_buf, inc->m_ptr); midi_synth_input()
183 inc->m_ptr = 0; midi_synth_input()
184 inc->m_left = 0; midi_synth_input()
188 inc->m_state = MST_DATA; midi_synth_input()
189 inc->m_ptr = 1; midi_synth_input()
190 inc->m_left = len_tab[(data >> 4) - 8]; midi_synth_input()
191 inc->m_buf[0] = inc->m_prev_status = data; midi_synth_input()
193 } else if (inc->m_prev_status & 0x80) { midi_synth_input()
195 inc->m_ptr = 2; midi_synth_input()
196 inc->m_buf[1] = data; midi_synth_input()
197 inc->m_buf[0] = inc->m_prev_status; midi_synth_input()
198 inc->m_left = len_tab[(inc->m_buf[0] >> 4) - 8] - 1; midi_synth_input()
199 if (inc->m_left > 0) midi_synth_input()
200 inc->m_state = MST_DATA; /* Not done yet */ midi_synth_input()
202 inc->m_state = MST_INIT; midi_synth_input()
203 do_midi_msg(dev, inc->m_buf, inc->m_ptr); midi_synth_input()
204 inc->m_ptr = 0; midi_synth_input()
210 inc->m_buf[inc->m_ptr++] = data; midi_synth_input()
211 if (--inc->m_left <= 0) midi_synth_input()
213 inc->m_state = MST_INIT; midi_synth_input()
214 do_midi_msg(dev, inc->m_buf, inc->m_ptr); midi_synth_input()
215 inc->m_ptr = 0; midi_synth_input()
222 inc->m_state = MST_INIT; midi_synth_input()
223 inc->m_left = 0; midi_synth_input()
224 inc->m_ptr = 0; midi_synth_input()
229 printk("MIDI%d: Unexpected state %d (%02x)\n", orig_dev, inc->m_state, (int) data); midi_synth_input()
230 inc->m_state = MST_INIT; midi_synth_input()
427 struct midi_input_info *inc; midi_synth_open() local
439 inc = &midi_devs[orig_dev]->in_info; midi_synth_open()
444 inc->m_busy = 0; midi_synth_open()
445 inc->m_state = MST_INIT; midi_synth_open()
446 inc->m_ptr = 0; midi_synth_open()
447 inc->m_left = 0; midi_synth_open()
448 inc->m_prev_status = 0x00; midi_synth_open()
/linux-4.1.27/arch/cris/
H A DMakefile26 inc := -Iarch/cris/include/uapi/$(SARCH) macro
27 inc += -Iarch/cris/include/$(SARCH)
28 inc += -Iarch/cris/include/uapi/$(SARCH)/arch
29 inc += -Iarch/cris/include/$(SARCH)/arch
32 inc := macro
37 inc += -Iarch/cris/include/$(SARCH)/$(MACH)/
38 inc += -Iarch/cris/include/$(SARCH)/$(MACH)/mach
51 KBUILD_AFLAGS += -mlinux -march=$(arch-y) $(inc)
52 KBUILD_CFLAGS += -mlinux -march=$(arch-y) -pipe $(inc)
53 KBUILD_CPPFLAGS += $(inc)
/linux-4.1.27/drivers/dma/bestcomm/
H A Data.c27 /* Task image/var/inc */
62 struct bcom_ata_inc *inc; bcom_ata_init() local
76 inc = (struct bcom_ata_inc *) bcom_task_inc(tsk->tasknum); bcom_ata_init()
105 struct bcom_ata_inc *inc; bcom_ata_rx_prepare() local
107 inc = (struct bcom_ata_inc *) bcom_task_inc(tsk->tasknum); bcom_ata_rx_prepare()
109 inc->incr_bytes = -(s16)sizeof(u32); bcom_ata_rx_prepare()
110 inc->incr_src = 0; bcom_ata_rx_prepare()
111 inc->incr_dst = sizeof(u32); bcom_ata_rx_prepare()
119 struct bcom_ata_inc *inc; bcom_ata_tx_prepare() local
121 inc = (struct bcom_ata_inc *) bcom_task_inc(tsk->tasknum); bcom_ata_tx_prepare()
123 inc->incr_bytes = -(s16)sizeof(u32); bcom_ata_tx_prepare()
124 inc->incr_src = sizeof(u32); bcom_ata_tx_prepare()
125 inc->incr_dst = 0; bcom_ata_tx_prepare()
H A Dfec.c25 /* Task image/var/inc */
115 struct bcom_fec_rx_inc *inc; bcom_fec_rx_reset() local
122 inc = (struct bcom_fec_rx_inc *) bcom_task_inc(tsk->tasknum); bcom_fec_rx_reset()
135 inc->incr_bytes = -(s16)sizeof(u32); /* These should be in the */ bcom_fec_rx_reset()
136 inc->incr_dst = sizeof(u32); /* task image, but we stick */ bcom_fec_rx_reset()
137 inc->incr_dst_ma= sizeof(u8); /* to the official ones */ bcom_fec_rx_reset()
216 struct bcom_fec_tx_inc *inc; bcom_fec_tx_reset() local
223 inc = (struct bcom_fec_tx_inc *) bcom_task_inc(tsk->tasknum); bcom_fec_tx_reset()
236 inc->incr_bytes = -(s16)sizeof(u32); /* These should be in the */ bcom_fec_tx_reset()
237 inc->incr_src = sizeof(u32); /* task image, but we stick */ bcom_fec_tx_reset()
238 inc->incr_src_ma= sizeof(u8); /* to the official ones */ bcom_fec_tx_reset()
H A Dgen_bd.c30 /* Task image/var/inc */
122 struct bcom_gen_bd_rx_inc *inc; bcom_gen_bd_rx_reset() local
129 inc = (struct bcom_gen_bd_rx_inc *) bcom_task_inc(tsk->tasknum); bcom_gen_bd_rx_reset()
142 inc->incr_bytes = -(s16)sizeof(u32); bcom_gen_bd_rx_reset()
143 inc->incr_dst = sizeof(u32); bcom_gen_bd_rx_reset()
206 struct bcom_gen_bd_tx_inc *inc; bcom_gen_bd_tx_reset() local
213 inc = (struct bcom_gen_bd_tx_inc *) bcom_task_inc(tsk->tasknum); bcom_gen_bd_tx_reset()
225 inc->incr_bytes = -(s16)sizeof(u32); bcom_gen_bd_tx_reset()
226 inc->incr_src = sizeof(u32); bcom_gen_bd_tx_reset()
227 inc->incr_src_ma = sizeof(u8); bcom_gen_bd_tx_reset()
H A Dbestcomm.c143 u32 *desc, *var, *inc; bcom_load_image() local
185 inc = bcom_task_inc(task); bcom_load_image()
189 memset(inc, 0x00, BCOM_INC_SIZE); bcom_load_image()
197 memcpy(inc, inc_src, hdr->inc_size * sizeof(u32)); bcom_load_image()
/linux-4.1.27/arch/unicore32/include/asm/
H A Dassembler.h100 .macro usracc, instr, reg, ptr, inc, cond, rept, abort variable
104 .if \inc == 1
105 \instr\()b.u \reg, [\ptr], #\inc
106 .elseif \inc == 4
107 \instr\()w.u \reg, [\ptr], #\inc
109 .error "Unsupported inc macro argument"
119 .macro strusr, reg, ptr, inc, cond = al, rept = 1, abort = 9001f variable
120 usracc st, \reg, \ptr, \inc, \cond, \rept, \abort variable
123 .macro ldrusr, reg, ptr, inc, cond = al, rept = 1, abort = 9001f variable
124 usracc ld, \reg, \ptr, \inc, \cond, \rept, \abort variable
/linux-4.1.27/drivers/net/wan/
H A DMakefile36 clean-files := wanxlfw.inc
37 $(obj)/wanxl.o: $(obj)/wanxlfw.inc
52 hexdump -ve '"\n" 16/1 "0x%02X,"' $(obj)/wanxlfw.bin | sed 's/0x ,//g;1s/^/static const u8 firmware[]={/;$$s/,$$/\n};\n/' >$(obj)/wanxlfw.inc; \
55 $(obj)/wanxlfw.inc: $(src)/wanxlfw.S
57 targets += wanxlfw.inc
/linux-4.1.27/arch/sparc/lib/
H A Dmemscan_64.S63 inc %g2
68 inc %g2
72 inc %g2
80 inc %g2
85 inc %g2
89 inc %g2
94 inc %g2
97 inc %g2
/linux-4.1.27/drivers/staging/lustre/include/linux/lnet/
H A Dlnetst.h150 lstcon_rpc_stat_total(lstcon_trans_stat_t *stat, int inc) lstcon_rpc_stat_total() argument
152 return inc ? ++stat->trs_rpc_stat[0] : stat->trs_rpc_stat[0]; lstcon_rpc_stat_total()
156 lstcon_rpc_stat_success(lstcon_trans_stat_t *stat, int inc) lstcon_rpc_stat_success() argument
158 return inc ? ++stat->trs_rpc_stat[1] : stat->trs_rpc_stat[1]; lstcon_rpc_stat_success()
162 lstcon_rpc_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_rpc_stat_failure() argument
164 return inc ? ++stat->trs_rpc_stat[2] : stat->trs_rpc_stat[2]; lstcon_rpc_stat_failure()
168 lstcon_sesop_stat_success(lstcon_trans_stat_t *stat, int inc) lstcon_sesop_stat_success() argument
170 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_sesop_stat_success()
174 lstcon_sesop_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_sesop_stat_failure() argument
176 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_sesop_stat_failure()
180 lstcon_sesqry_stat_active(lstcon_trans_stat_t *stat, int inc) lstcon_sesqry_stat_active() argument
182 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_sesqry_stat_active()
186 lstcon_sesqry_stat_busy(lstcon_trans_stat_t *stat, int inc) lstcon_sesqry_stat_busy() argument
188 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_sesqry_stat_busy()
192 lstcon_sesqry_stat_unknown(lstcon_trans_stat_t *stat, int inc) lstcon_sesqry_stat_unknown() argument
194 return inc ? ++stat->trs_fwk_stat[2] : stat->trs_fwk_stat[2]; lstcon_sesqry_stat_unknown()
198 lstcon_tsbop_stat_success(lstcon_trans_stat_t *stat, int inc) lstcon_tsbop_stat_success() argument
200 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_tsbop_stat_success()
204 lstcon_tsbop_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_tsbop_stat_failure() argument
206 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_tsbop_stat_failure()
210 lstcon_tsbqry_stat_idle(lstcon_trans_stat_t *stat, int inc) lstcon_tsbqry_stat_idle() argument
212 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_tsbqry_stat_idle()
216 lstcon_tsbqry_stat_run(lstcon_trans_stat_t *stat, int inc) lstcon_tsbqry_stat_run() argument
218 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_tsbqry_stat_run()
222 lstcon_tsbqry_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_tsbqry_stat_failure() argument
224 return inc ? ++stat->trs_fwk_stat[2] : stat->trs_fwk_stat[2]; lstcon_tsbqry_stat_failure()
228 lstcon_statqry_stat_success(lstcon_trans_stat_t *stat, int inc) lstcon_statqry_stat_success() argument
230 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_statqry_stat_success()
234 lstcon_statqry_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_statqry_stat_failure() argument
236 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_statqry_stat_failure()
/linux-4.1.27/arch/cris/boot/rescue/
H A Dhead_v32.S10 #include <mach/startup.inc>
/linux-4.1.27/sound/soc/codecs/
H A Dpcm3008.h5 * Copyright (C) 2008 Lyrtech inc
H A Dpcm3008.c5 * Copyright (C) 2008 Lyrtech inc
/linux-4.1.27/arch/arm/include/asm/
H A Dassembler.h349 .macro usraccoff, instr, reg, ptr, inc, off, cond, abort, t=TUSER() variable
351 .if \inc == 1
353 .elseif \inc == 4
356 .error "Unsupported inc macro argument"
365 .macro usracc, instr, reg, ptr, inc, cond, rept, abort variable
379 usraccoff \instr, \reg, \ptr, \inc, 0, \cond, \abort variable
381 usraccoff \instr, \reg, \ptr, \inc, \inc, \cond, \abort variable
384 add\cond \ptr, #\rept * \inc
389 .macro usracc, instr, reg, ptr, inc, cond, rept, abort, t=TUSER()
392 .if \inc == 1
393 \instr\cond\()b\()\t \reg, [\ptr], #\inc
394 .elseif \inc == 4
395 \instr\cond\()\t \reg, [\ptr], #\inc
397 .error "Unsupported inc macro argument"
409 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f variable
410 usracc str, \reg, \ptr, \inc, \cond, \rept, \abort variable
413 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f variable
414 usracc ldr, \reg, \ptr, \inc, \cond, \rept, \abort variable
/linux-4.1.27/arch/mips/include/asm/
H A Dspinlock.h61 int inc = 0x10000; arch_spin_lock() local
69 " addu %[my_ticket], %[ticket], %[inc] \n" arch_spin_lock()
96 : [inc] "r" (inc)); arch_spin_lock()
103 " addu %[my_ticket], %[ticket], %[inc] \n" arch_spin_lock()
129 : [inc] "r" (inc)); arch_spin_lock()
146 int inc = 0x10000; arch_spin_trylock() local
157 " addu %[ticket], %[ticket], %[inc] \n" arch_spin_trylock()
171 : [inc] "r" (inc)); arch_spin_trylock()
181 " addu %[ticket], %[ticket], %[inc] \n" arch_spin_trylock()
195 : [inc] "r" (inc)); arch_spin_trylock()
/linux-4.1.27/arch/mn10300/lib/
H A Dusercopy.c44 " inc %5\n" \
45 " inc %6\n" \
97 " inc %3\n" \
149 " inc %0\n" strnlen_user()
H A Dmemset.S114 inc a0
H A Ddo_csum.S40 inc a0
/linux-4.1.27/scripts/
H A Dheaders_check.pl52 my $inc = $1;
54 $found = stat($dir . "/" . $inc);
56 $inc =~ s#asm/#asm-$arch/#;
57 $found = stat($dir . "/" . $inc);
60 printf STDERR "$filename:$lineno: included file '$inc' is not exported\n";
/linux-4.1.27/firmware/keyspan_pda/
H A Dkeyspan_pda.S234 inc dptr
241 inc dptr
312 inc a
372 inc dptr
375 inc dptr
378 inc dptr
480 inc dptr
579 inc dptr
670 inc dptr
756 inc dps ; switch to DPTR1: target
757 inc dpl1 ; target = tx_ring_in+1
763 inc tx_ring_in ; tx_ring_in++
764 inc dps ; switch to DPTR0: source
765 inc dptr
805 inc dptr
808 inc dptr
812 inc dptr
815 inc dptr
819 inc a
822 inc dptr
824 inc dps
829 inc dptr
830 inc dps
832 inc dptr
833 inc dps
835 inc dps
839 inc dptr
842 inc dps
847 inc dptr
848 inc dps
850 inc dptr
851 inc dps
875 inc tx_ring_out ; [++tx_ring_out]
934 inc dpl ; target = rx_ring_in+1
943 inc rx_ring_in
964 inc dps
967 inc dptr
968 inc dps
976 inc rx_ring_out
979 inc dps
981 inc dptr
982 inc dps
983 inc r1
1004 inc dptr
1108 ;; cannot inc if tx_ring_in+1 == tx_ring_out
H A Dxircom_pgs.S236 inc dptr
243 inc dptr
350 inc a
410 inc dptr
413 inc dptr
416 inc dptr
518 inc dptr
617 inc dptr
708 inc dptr
813 inc dps ; switch to DPTR1: target
814 inc dpl1 ; target = tx_ring_in+1
820 inc tx_ring_in ; tx_ring_in++
821 inc dps ; switch to DPTR0: source
822 inc dptr
866 inc dptr
869 inc dptr
873 inc dptr
876 inc dptr
880 inc a
883 inc dptr
885 inc dps
890 inc dptr
891 inc dps
893 inc dptr
894 inc dps
896 inc dps
900 inc dptr
903 inc dps
908 inc dptr
909 inc dps
911 inc dptr
912 inc dps
936 inc tx_ring_out ; [++tx_ring_out]
995 inc dpl ; target = rx_ring_in+1
1004 inc rx_ring_in
1029 inc dps
1032 inc dptr
1033 inc dps
1041 inc rx_ring_out
1044 inc dps
1046 inc dptr
1047 inc dps
1048 inc r1
1072 inc dptr
1176 ;; cannot inc if tx_ring_in+1 == tx_ring_out
/linux-4.1.27/arch/mips/cavium-octeon/
H A Dcsrc-octeon.c140 u64 cur, end, inc; __udelay() local
144 inc = us * octeon_udelay_factor; __udelay()
145 end = cur + inc; __udelay()
154 u64 cur, end, inc; __ndelay() local
158 inc = ((ns * octeon_ndelay_factor) >> 16); __ndelay()
159 end = cur + inc; __ndelay()
H A Dsetup.c878 u64 inc = addr - *mem; memory_exclude_page() local
879 add_memory_region(*mem, inc, BOOT_MEM_RAM); memory_exclude_page()
880 *mem += inc; memory_exclude_page()
881 *size -= inc; memory_exclude_page()
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
H A Ddispc_coefs.c289 const struct dispc_coef *dispc_ovl_get_scale_coef(int inc, int five_taps) dispc_ovl_get_scale_coef() argument
320 inc /= 128; dispc_ovl_get_scale_coef()
322 if (inc >= coefs[i].Mmin && inc <= coefs[i].Mmax) dispc_ovl_get_scale_coef()
/linux-4.1.27/drivers/staging/android/
H A Dsw_sync.h39 void sw_sync_timeline_inc(struct sw_sync_timeline *obj, u32 inc);
48 static inline void sw_sync_timeline_inc(struct sw_sync_timeline *obj, u32 inc) sw_sync_timeline_inc() argument
H A Dsw_sync.c125 void sw_sync_timeline_inc(struct sw_sync_timeline *obj, u32 inc) sw_sync_timeline_inc() argument
127 obj->value += inc; sw_sync_timeline_inc()
/linux-4.1.27/arch/mn10300/kernel/
H A Dmn10300-watchdog-low.S18 #include <asm/frame.inc>
61 inc d1 define
H A Dfpu-nofpu-low.S16 #include <asm/frame.inc>
H A Dhead.S19 #include <asm/frame.inc>
62 inc a0
150 inc a3
152 inc a0
162 inc a3
164 inc a0
278 inc d3 define
287 inc d2 define
H A Dgdb-io-serial-low.S19 #include <asm/frame.inc>
H A Dgdb-io-ttysm-low.S19 #include <asm/frame.inc>
H A Dprofile-low.S60 inc d3 define
H A Dsmp-low.S21 #include <asm/frame.inc>
H A Dmn10300-serial-low.S19 #include <asm/frame.inc>
144 inc d3 # advance the buffer pointer define
H A Dgdb-low.S20 #include <asm/frame.inc>
H A Dfpu-low.S16 #include <asm/frame.inc>
/linux-4.1.27/kernel/trace/
H A Dring_buffer_benchmark.c106 int inc; read_page() local
118 for (i = 0; i < commit && !kill_test; i += inc) { read_page()
125 inc = -1; read_page()
132 inc = event->array[0] + 4; read_page()
135 inc = 8; read_page()
148 inc = event->array[0] + 4; read_page()
157 inc = ((event->type_len + 1) * 4); read_page()
162 if (inc <= 0) { read_page()
/linux-4.1.27/arch/xtensa/include/asm/
H A Dasmmacro.h20 * __loopi ar, at, size, inc
24 * inc increment
41 * inc increment
/linux-4.1.27/fs/ceph/
H A Dmdsmap.c88 s32 mds, inc, state; ceph_mdsmap_decode() local
109 inc = ceph_decode_32(p); ceph_mdsmap_decode()
127 i+1, n, global_id, mds, inc, ceph_mdsmap_decode()
H A Dmds_client.h131 u32 s_cap_gen; /* inc each time we get mds stale msg */
/linux-4.1.27/fs/udf/
H A Ddirectory.c198 int inc) udf_get_fileshortad()
215 if (inc) udf_get_fileshortad()
220 struct long_ad *udf_get_filelongad(uint8_t *ptr, int maxoffset, uint32_t *offset, int inc) udf_get_filelongad() argument
237 if (inc) udf_get_filelongad()
197 udf_get_fileshortad(uint8_t *ptr, int maxoffset, uint32_t *offset, int inc) udf_get_fileshortad() argument
H A Dinode.c1875 struct kernel_lb_addr *eloc, uint32_t elen, int inc) udf_add_aext()
1982 udf_write_aext(inode, epos, eloc, elen, inc); udf_add_aext()
1993 epos->offset + (inc ? 0 : adsize)); udf_add_aext()
2004 struct kernel_lb_addr *eloc, uint32_t elen, int inc) udf_write_aext()
2051 if (inc) udf_write_aext()
2062 struct kernel_lb_addr *eloc, uint32_t *elen, int inc) udf_next_aext()
2067 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) == udf_next_aext()
2093 struct kernel_lb_addr *eloc, uint32_t *elen, int inc) udf_current_aext()
2121 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc); udf_current_aext()
2131 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc); udf_current_aext()
1874 udf_add_aext(struct inode *inode, struct extent_position *epos, struct kernel_lb_addr *eloc, uint32_t elen, int inc) udf_add_aext() argument
2003 udf_write_aext(struct inode *inode, struct extent_position *epos, struct kernel_lb_addr *eloc, uint32_t elen, int inc) udf_write_aext() argument
2061 udf_next_aext(struct inode *inode, struct extent_position *epos, struct kernel_lb_addr *eloc, uint32_t *elen, int inc) udf_next_aext() argument
2092 udf_current_aext(struct inode *inode, struct extent_position *epos, struct kernel_lb_addr *eloc, uint32_t *elen, int inc) udf_current_aext() argument
/linux-4.1.27/drivers/md/persistent-data/
H A Ddm-btree-spine.c105 int r, inc; bn_shadow() local
108 result, &inc); bn_shadow()
109 if (!r && inc) bn_shadow()
285 vt->inc = le64_inc; init_le64_type()
H A Ddm-array.c126 if (vt->inc) inc_ablock_entries()
127 on_entries(info, ab, vt->inc); inc_ablock_entries()
187 if (vt->inc) fill_ablock()
188 vt->inc(vt->context, value); fill_ablock()
289 int r, inc; shadow_ablock() local
306 &array_validator, block, &inc); shadow_ablock()
311 if (inc) shadow_ablock()
629 bvt->inc = block_inc; dm_array_info_init()
748 if (vt->inc) array_set_value()
749 vt->inc(vt->context, value); array_set_value()
H A Ddm-space-map-common.c204 ll->bitmap_info.value_type.inc = NULL; sm_ll_init()
211 ll->ref_count_info.value_type.inc = NULL; sm_ll_init()
397 int inc; sm_ll_mutate() local
405 &dm_sm_bitmap_validator, &nb, &inc); sm_ll_mutate()
583 int r, inc; metadata_ll_commit() local
586 r = dm_tm_shadow_block(ll->tm, ll->bitmap_root, &index_validator, &b, &inc); metadata_ll_commit()
H A Ddm-bitset.c21 .inc = NULL,
H A Ddm-btree-remove.c146 int r, inc; init_child() local
153 &result->block, &inc); init_child()
159 if (inc) init_child()
H A Ddm-btree.h61 void (*inc)(void *context, const void *value); member in struct:dm_btree_value_type
H A Ddm-array.h105 * If growing the inc function for 'value' will be called the appropriate
H A Ddm-btree.c75 else if (vt->inc) inc_children()
77 vt->inc(vt->context, value_ptr(n, i)); inc_children()
/linux-4.1.27/include/linux/
H A Drtc-v3020.h8 * Copyright (C) 2006, 8D Technologies inc.
H A Djump_label.h16 * static_key_slow_{inc,dec}(). These function as a 'reference' count on the key
20 * Since this relies on modifying code, the static_key_slow_{inc,dec}() functions
H A Drio_regs.h67 #define RIO_SRC_OPS_ATOMIC_INC 0x00000080 /* [I] Atomic inc op */
81 #define RIO_DST_OPS_ATOMIC_INC 0x00000080 /* [I] Atomic inc op */
94 #define RIO_OPS_ATOMIC_INC 0x00000080 /* [I] Atomic inc op */
/linux-4.1.27/arch/mn10300/mm/
H A Dcache-dbg-inv.S18 #include "cache.inc"
H A Dcache-dbg-inv-by-reg.S16 #include "cache.inc"
H A Dcache-dbg-flush-by-tag.S18 #include "cache.inc"
H A Dmisalignment.c322 unsigned long data, *store, *postinc, disp, inc, sp; misalignment() local
487 inc = datasz = 4; misalignment()
489 inc = datasz = 2; misalignment()
497 &address, &postinc, &inc)) misalignment()
508 kdebug("inc=%lx", inc); misalignment()
509 *postinc += inc; misalignment()
522 &address, &postinc, &inc)) misalignment()
531 *postinc += inc; misalignment()
623 * before use, or, in the case of post-inc addressing, misalignment_addr()
H A Dcache-dbg-flush-by-reg.S18 #include "cache.inc"
H A Dcache-dbg-inv-by-tag.S18 #include "cache.inc"
H A Dtlb-mn10300.S19 #include <asm/frame.inc>
H A Dcache-inv-by-reg.S18 #include "cache.inc"
H A Dcache-inv-by-tag.S18 #include "cache.inc"
/linux-4.1.27/include/linux/mfd/
H A Dlpc_ich.h5 * Author: Aaron Sierra <asierra@xes-inc.com>
/linux-4.1.27/arch/ia64/include/uapi/asm/
H A Dgcc_intrin.h233 #define ia64_fetchadd4_acq(p, inc) \
238 : "=r"(ia64_intri_res) : "r"(p), "i" (inc) \
244 #define ia64_fetchadd4_rel(p, inc) \
248 : "=r"(ia64_intri_res) : "r"(p), "i" (inc) \
254 #define ia64_fetchadd8_acq(p, inc) \
259 : "=r"(ia64_intri_res) : "r"(p), "i" (inc) \
265 #define ia64_fetchadd8_rel(p, inc) \
269 : "=r"(ia64_intri_res) : "r"(p), "i" (inc) \
/linux-4.1.27/arch/arm/mach-omap2/
H A Dsram.h19 u32 m2, u32 unlock_dll, u32 f, u32 inc,
56 u32 m2, u32 unlock_dll, u32 f, u32 inc,
H A Dsram.c215 u32 m2, u32 unlock_dll, u32 f, u32 inc,
221 u32 omap3_configure_core_dpll(u32 m2, u32 unlock_dll, u32 f, u32 inc, omap3_configure_core_dpll() argument
229 m2, unlock_dll, f, inc, omap3_configure_core_dpll()
/linux-4.1.27/net/ipv4/
H A Dtcp_veno.c31 u32 inc; /* decide whether to increase cwnd */ member in struct:veno
67 veno->inc = 1; tcp_veno_init()
168 if (veno->inc && tcp_veno_cong_avoid()
171 veno->inc = 0; tcp_veno_cong_avoid()
173 veno->inc = 1; tcp_veno_cong_avoid()
/linux-4.1.27/sound/pcmcia/pdaudiocf/
H A Dpdaudiocf_pcm.c51 int inc, ret = 0, rate; pdacf_pcm_trigger() local
66 inc = 1; pdacf_pcm_trigger()
74 inc = -1; pdacf_pcm_trigger()
81 chip->pcm_running += inc; pdacf_pcm_trigger()
85 chip->pcm_running -= inc; pdacf_pcm_trigger()
/linux-4.1.27/fs/xfs/
H A Dxfs_stats.h226 #define XFS_STATS_ADD(v, inc) (per_cpu(xfsstats, current_cpu()).v += (inc))
236 # define XFS_STATS_ADD(count, inc)
/linux-4.1.27/sound/core/seq/
H A Dseq_timer.h109 static inline void snd_seq_inc_real_time(snd_seq_real_time_t *tm, snd_seq_real_time_t *inc) snd_seq_inc_real_time() argument
111 tm->tv_sec += inc->tv_sec; snd_seq_inc_real_time()
112 tm->tv_nsec += inc->tv_nsec; snd_seq_inc_real_time()
/linux-4.1.27/arch/nios2/boot/compressed/
H A Dhead.S48 addi r1, r1, 4 /* inc the src addr */
49 addi r2, r2, 4 /* inc the dest addr */
/linux-4.1.27/arch/m68k/fpsp040/
H A Ddecbin.S216 | then inc d1 (=2) to point to the next long word and reset d3 to 0
223 addql #1,%d1 |inc lw pointer in mantissa
295 addql #1,%d1 |inc zero count
299 addql #8,%d1 |and inc count by 8
300 addql #1,%d5 |inc lword counter
309 addql #1,%d1 |inc digit counter
334 addl #12,%d3 |inc d3 to next rtable entry
348 addql #8,%d1 |inc counter by 8
357 addql #1,%d1 |inc digit counter
382 addl #12,%d3 |inc d3 to next rtable entry
466 addl #12,%d3 |inc d3 to next rtable entry
H A Dscale.S216 bnes no_dir |if set, neg op, no inc
221 beqs no_dir |if clr, neg op, no inc
265 bnes no_dir2 |if set, neg op, no inc
272 beqs no_dir2 |if clr, neg op, no inc
H A Dbindec.S432 addl #12,%d3 |inc d3 to next pwrten table entry
653 addl #12,%d3 |inc d3 to next pwrten table entry
682 addql #1,%d6 | and inc ILOG
704 addl #12,%d3 |inc d3 to next pwrten table entry
711 addql #1,%d6 |and inc ILOG by 1
712 addql #1,%d4 | and inc LEN
774 addil #0x00000080,%d3 |inc at bit 7
775 addxl %d1,%d2 |continue inc
859 addil #0x00000080,%d3 |inc at bit 6
860 addxl %d1,%d2 |continue inc
/linux-4.1.27/drivers/media/dvb-frontends/
H A Dbcm3510.h4 * Copyright (C) 2001-5, B2C2 inc.
H A Dstv090x.c2260 s32 timeout, inc, steps_max, srate, car_max; stv090x_get_loop_params() local
2271 inc = srate; stv090x_get_loop_params()
2272 inc /= state->internal->mclk / 1000; stv090x_get_loop_params()
2273 inc *= 256; stv090x_get_loop_params()
2274 inc *= 256; stv090x_get_loop_params()
2275 inc /= 1000; stv090x_get_loop_params()
2280 inc *= 3; /* freq step = 3% of srate */ stv090x_get_loop_params()
2285 inc *= 4; stv090x_get_loop_params()
2291 inc *= 3; stv090x_get_loop_params()
2295 inc /= 100; stv090x_get_loop_params()
2296 if ((inc > car_max) || (inc < 0)) stv090x_get_loop_params()
2297 inc = car_max / 2; /* increment <= 1/8 Mclk */ stv090x_get_loop_params()
2306 steps_max = (car_max / inc) + 1; /* min steps = 3 */ stv090x_get_loop_params()
2309 inc = car_max / steps_max; stv090x_get_loop_params()
2311 *freq_inc = inc; stv090x_get_loop_params()
2349 static int stv090x_search_car_loop(struct stv090x_state *state, s32 inc, s32 timeout, int zigzag, s32 steps_max) stv090x_search_car_loop() argument
2365 offst_freq = -car_max + inc; stv090x_search_car_loop()
2384 offst_freq = -offst_freq - 2 * inc; stv090x_search_car_loop()
2388 offst_freq += 2 * inc; stv090x_search_car_loop()
2398 ((offst_freq - inc) < car_max) && stv090x_search_car_loop()
2399 ((offst_freq + inc) > -car_max) && stv090x_search_car_loop()
2419 s32 inc, timeout_step, trials, steps_max; stv090x_sw_algo() local
2422 stv090x_get_loop_params(state, &inc, &timeout_step, &steps_max); stv090x_sw_algo()
2467 lock = stv090x_search_car_loop(state, inc, timeout_step, zigzag, steps_max); stv090x_sw_algo()
H A Dbcm3510_priv.h4 * Copyright (C) 2001-5, B2C2 inc.
/linux-4.1.27/include/linux/netfilter/
H A Dnf_conntrack_proto_gre.h60 __be16 payload_len; /* size of ppp payload, not inc. gre header */
/linux-4.1.27/sound/mips/
H A Dhal2.c82 unsigned short inc; /* INC value */ member in struct:hal2_codec
335 codec->inc = 4; hal2_compute_rate()
345 int inc = hal2->dac.inc; hal2_set_dac_rate() local
350 ((0xffff & (inc - mod - 1)) << 16) | inc); hal2_set_dac_rate()
356 int inc = hal2->adc.inc; hal2_set_adc_rate() local
361 ((0xffff & (inc - mod - 1)) << 16) | inc); hal2_set_adc_rate()
/linux-4.1.27/arch/mn10300/include/asm/
H A Duaccess.h304 " inc %0;\n" \
305 " inc %1;\n" \
332 " inc %0;\n" \
333 " inc %1;\n" \
342 " inc %1;\n" \
/linux-4.1.27/drivers/usb/dwc2/
H A Dhcd_ddma.c60 static u16 dwc2_desclist_idx_inc(u16 idx, u16 inc, u8 speed) dwc2_desclist_idx_inc() argument
62 return (idx + inc) & dwc2_desclist_idx_inc()
67 static u16 dwc2_desclist_idx_dec(u16 idx, u16 inc, u8 speed) dwc2_desclist_idx_dec() argument
69 return (idx - inc) & dwc2_desclist_idx_dec()
218 u16 i, j, inc; dwc2_update_frame_list() local
237 inc = dwc2_frame_incr_val(qh); dwc2_update_frame_list()
249 j = (j + inc) & (FRLISTEN_64_SIZE - 1); dwc2_update_frame_list()
259 inc = (8 + qh->interval - 1) / qh->interval; dwc2_update_frame_list()
260 for (i = 0; i < inc; i++) { dwc2_update_frame_list()
542 u16 idx, inc, n_desc, ntd_max = 0; dwc2_init_isoc_dma_desc() local
545 inc = qh->interval; dwc2_init_isoc_dma_desc()
565 idx = dwc2_desclist_idx_inc(idx, inc, qh->dev_speed); dwc2_init_isoc_dma_desc()
576 idx = dwc2_desclist_idx_dec(qh->td_last, inc, qh->dev_speed); dwc2_init_isoc_dma_desc()
596 idx = dwc2_desclist_idx_dec(idx, inc * ((qh->ntd + 1) / 2), dwc2_init_isoc_dma_desc()
604 idx = dwc2_desclist_idx_dec(qh->td_last, inc, qh->dev_speed); dwc2_init_isoc_dma_desc()
H A Dhcd.h561 * Increments frame by the amount specified by inc. The addition is done
564 static inline u16 dwc2_frame_num_inc(u16 frame, u16 inc) dwc2_frame_num_inc() argument
566 return (frame + inc) & HFNUM_MAX_FRNUM; dwc2_frame_num_inc()
/linux-4.1.27/arch/xtensa/kernel/
H A Dsignal.c85 int inc = 0; flush_window_regs_user() local
90 inc = 1; flush_window_regs_user()
96 inc = 2; flush_window_regs_user()
102 inc = 3; flush_window_regs_user()
107 sp = regs->areg[((base + inc) * 4 + 1) % XCHAL_NUM_AREGS]; flush_window_regs_user()
114 base += inc; flush_window_regs_user()
/linux-4.1.27/drivers/infiniband/hw/cxgb4/
H A Dt4.h454 static inline void t4_ring_sq_db(struct t4_wq *wq, u16 inc, u8 t5, t4_ring_sq_db() argument
461 if (inc == 1 && wqe) { t4_ring_sq_db()
468 writel(PIDX_T5_V(inc), wq->sq.udb); t4_ring_sq_db()
475 writel(QID_V(wq->sq.qid) | PIDX_V(inc), wq->db); t4_ring_sq_db()
478 static inline void t4_ring_rq_db(struct t4_wq *wq, u16 inc, u8 t5, t4_ring_rq_db() argument
485 if (inc == 1 && wqe) { t4_ring_rq_db()
492 writel(PIDX_T5_V(inc), wq->rq.udb); t4_ring_rq_db()
499 writel(QID_V(wq->rq.qid) | PIDX_V(inc), wq->db); t4_ring_rq_db()
H A Dqp.c688 static int ring_kernel_sq_db(struct c4iw_qp *qhp, u16 inc) ring_kernel_sq_db() argument
695 t4_ring_sq_db(&qhp->wq, inc, ring_kernel_sq_db()
699 qhp->wq.sq.wq_pidx_inc += inc; ring_kernel_sq_db()
706 static int ring_kernel_rq_db(struct c4iw_qp *qhp, u16 inc) ring_kernel_rq_db() argument
713 t4_ring_rq_db(&qhp->wq, inc, ring_kernel_rq_db()
717 qhp->wq.rq.wq_pidx_inc += inc; ring_kernel_rq_db()
/linux-4.1.27/arch/nios2/kernel/
H A Dhead.S138 addi r1, r1, 4 /* inc the src addr */
139 addi r2, r2, 4 /* inc the dest addr */
/linux-4.1.27/arch/frv/include/asm/
H A Dchecksum.h57 unsigned int tmp, inc, sum = 0; ip_fast_csum() local
75 : "=r" (sum), "=r" (iph), "=r" (ihl), "=r" (inc), "=&r"(tmp) ip_fast_csum()
/linux-4.1.27/arch/m68k/include/asm/
H A Dmcfdma.h46 #define MCFDMA_DCR_SINC 0x0040 /* Source addr inc enable */
52 #define MCFDMA_DCR_DINC 0x0008 /* Dest addr inc enable */
/linux-4.1.27/kernel/locking/
H A Dpercpu-rwsem.c34 * there is no pending writer (atomic_read(write_ctr) == 0) and inc/dec the
120 * After that the readers can only inc/dec the slow ->slow_read_ctr counter,
H A Dqrwlock.c26 * rspin_until_writer_unlock - inc reader count & spin until writer is gone
/linux-4.1.27/arch/x86/lib/
H A Datomic64_386_32.S105 BEGIN(inc)
H A Datomic64_cx8_32.S118 incdec_return inc add adc
H A Dchecksum_32.S70 inc %esi
179 inc %esi
/linux-4.1.27/fs/xfs/libxfs/
H A Dxfs_ialloc_btree.c58 int inc) /* level change */ xfs_inobt_set_root()
64 be32_add_cpu(&agi->agi_level, inc); xfs_inobt_set_root()
72 int inc) /* level change */ xfs_finobt_set_root()
78 be32_add_cpu(&agi->agi_free_level, inc); xfs_finobt_set_root()
55 xfs_inobt_set_root( struct xfs_btree_cur *cur, union xfs_btree_ptr *nptr, int inc) xfs_inobt_set_root() argument
69 xfs_finobt_set_root( struct xfs_btree_cur *cur, union xfs_btree_ptr *nptr, int inc) xfs_finobt_set_root() argument
H A Dxfs_alloc_btree.c49 int inc) xfs_allocbt_set_root()
60 be32_add_cpu(&agf->agf_levels[btnum], inc); xfs_allocbt_set_root()
61 pag->pagf_levels[btnum] += inc; xfs_allocbt_set_root()
46 xfs_allocbt_set_root( struct xfs_btree_cur *cur, union xfs_btree_ptr *ptr, int inc) xfs_allocbt_set_root() argument
/linux-4.1.27/lib/
H A Dpercpu_test.c23 * +ul_one/-ul_one below would replace with inc/dec instructions. percpu_test_init()
/linux-4.1.27/net/netfilter/
H A Dxt_u32.c4 * Original author: Don Cohen <don@isis.cs3-inc.com>
/linux-4.1.27/crypto/
H A Dlrw.c105 static inline void inc(be128 *iv) inc() function
175 inc(iv); crypt()
260 inc(iv); lrw_crypt()
/linux-4.1.27/tools/perf/util/
H A Dhist.h278 static inline void advance_hpp(struct perf_hpp *hpp, int inc) advance_hpp() argument
280 hpp->buf += inc; advance_hpp()
281 hpp->size -= inc; advance_hpp()
/linux-4.1.27/drivers/i2c/busses/
H A Di2c-octeon.c449 int tclk, thp_base, inc, thp_idx, mdiv_idx, ndiv_idx, foscl, diff; octeon_i2c_setclock() local
466 for (inc = 0; inc <= 1; inc++) { octeon_i2c_setclock()
467 thp_idx = thp_base + inc; octeon_i2c_setclock()
H A Di2c-img-scb.c261 * So a sensible inc is the logarithmic mean: 64 (2^6), which is
1105 unsigned int i, ret, data, prescale, inc, int_bitrate, filt; img_i2c_init() local
1140 /* Find the prescale that would give us that inc (approx delay = 0) */ img_i2c_init()
1146 inc = (256 * 16 * bitrate_khz) / clk_khz; img_i2c_init()
1166 inc++; img_i2c_init()
1173 data = filt | ((inc & SCB_INC_MASK) << SCB_INC_SHIFT) | (prescale - 1); img_i2c_init()
1177 clk_period = (256 * 1000000) / (clk_khz * inc); img_i2c_init()
H A Di2c-iop3xx.c15 * Frodo Looijaard <frodol@dds.nl>, Martin Bailey<mbailey@littlefeet-inc.com>
/linux-4.1.27/arch/hexagon/lib/
H A Dmemcpy.S176 #define inc R15:14 /* inc kernel by -1 and defetch ptr by 32 */ define
362 inc = combine(#32, #-1); define
385 ptr_in_p_128kernel = vaddw(ptr_in_p_128kernel, inc);
421 ptr_in_p_128kernel = vaddw(ptr_in_p_128kernel, inc);
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/
H A Dicm.c356 int inc = MLX4_TABLE_CHUNK_SIZE / table->obj_size; mlx4_table_get_range() local
360 for (i = start; i <= end; i += inc) { mlx4_table_get_range()
370 i -= inc; mlx4_table_get_range()
/linux-4.1.27/net/sctp/
H A Dtsnmap.c359 unsigned long inc; sctp_tsnmap_grow() local
365 inc = ALIGN((size - map->len), BITS_PER_LONG) + SCTP_TSN_MAP_INCREMENT; sctp_tsnmap_grow()
366 len = min_t(u16, map->len + inc, SCTP_TSN_MAP_SIZE); sctp_tsnmap_grow()
/linux-4.1.27/drivers/isdn/hardware/eicon/
H A Ddebug.c1602 if (channel->pInterfaceStat->inc.Calls) { diva_maint_state_change_notify()
1604 "Inc Calls =%lu", channel->pInterfaceStat->inc.Calls); diva_maint_state_change_notify()
1606 if (channel->pInterfaceStat->inc.Connected) { diva_maint_state_change_notify()
1608 "Inc Connected =%lu", channel->pInterfaceStat->inc.Connected); diva_maint_state_change_notify()
1610 if (channel->pInterfaceStat->inc.User_Busy) { diva_maint_state_change_notify()
1612 "Inc Busy =%lu", channel->pInterfaceStat->inc.User_Busy); diva_maint_state_change_notify()
1614 if (channel->pInterfaceStat->inc.Call_Rejected) { diva_maint_state_change_notify()
1616 "Inc Rejected =%lu", channel->pInterfaceStat->inc.Call_Rejected); diva_maint_state_change_notify()
1618 if (channel->pInterfaceStat->inc.Wrong_Number) { diva_maint_state_change_notify()
1620 "Inc Wrong Nr =%lu", channel->pInterfaceStat->inc.Wrong_Number); diva_maint_state_change_notify()
1622 if (channel->pInterfaceStat->inc.Incompatible_Dst) { diva_maint_state_change_notify()
1624 "Inc Incomp. Dest =%lu", channel->pInterfaceStat->inc.Incompatible_Dst); diva_maint_state_change_notify()
1626 if (channel->pInterfaceStat->inc.Out_of_Order) { diva_maint_state_change_notify()
1628 "Inc Out of Order =%lu", channel->pInterfaceStat->inc.Out_of_Order); diva_maint_state_change_notify()
1630 if (channel->pInterfaceStat->inc.Ignored) { diva_maint_state_change_notify()
1632 "Inc Ignored =%lu", channel->pInterfaceStat->inc.Ignored); diva_maint_state_change_notify()
H A Dmaintidi.c1531 &pLib->InterfaceStat.inc.Calls; diva_create_parse_table()
1536 &pLib->InterfaceStat.inc.Connected; diva_create_parse_table()
1541 &pLib->InterfaceStat.inc.User_Busy; diva_create_parse_table()
1546 &pLib->InterfaceStat.inc.Call_Rejected; diva_create_parse_table()
1551 &pLib->InterfaceStat.inc.Wrong_Number; diva_create_parse_table()
1556 &pLib->InterfaceStat.inc.Incompatible_Dst; diva_create_parse_table()
1561 &pLib->InterfaceStat.inc.Out_of_Order; diva_create_parse_table()
1566 &pLib->InterfaceStat.inc.Ignored; diva_create_parse_table()
H A Dkst_ifc.h165 diva_incoming_call_statistics_t inc; member in struct:_diva_ifc_statistics
/linux-4.1.27/drivers/rtc/
H A Drtc-max6902.c3 * Copyright (C) 2006 8D Technologies inc.
H A Drtc-r9701.c8 * Copyright (C) 2006 8D Technologies inc.
H A Drtc-rx4581.c8 * Copyright (C) 2006 8D Technologies inc.
H A Drtc-v3020.c3 * Copyright (C) 2006 8D Technologies inc.
/linux-4.1.27/drivers/staging/speakup/
H A Dspk_priv_keyinfo.h86 /* with dec being even and inc being 1 greater */
/linux-4.1.27/drivers/gpu/drm/qxl/
H A Dqxl_draw.c271 unsigned num_clips, int inc) qxl_draw_dirty_fb()
305 for (i = 1, clips_ptr = clips + inc; qxl_draw_dirty_fb()
306 i < num_clips; i++, clips_ptr += inc) { qxl_draw_dirty_fb()
378 for (i = 0; i < num_clips; i++, clips_ptr += inc) { qxl_draw_dirty_fb()
266 qxl_draw_dirty_fb(struct qxl_device *qdev, struct qxl_framebuffer *qxl_fb, struct qxl_bo *bo, unsigned flags, unsigned color, struct drm_clip_rect *clips, unsigned num_clips, int inc) qxl_draw_dirty_fb() argument
H A Dqxl_display.c236 int inc = 1; qxl_crtc_page_flip() local
249 &norect, one_clip_rect, inc); qxl_crtc_page_flip()
481 int inc = 1; qxl_framebuffer_surface_dirty() local
500 inc = 2; /* skip source rects */ qxl_framebuffer_surface_dirty()
504 clips, num_clips, inc); qxl_framebuffer_surface_dirty()
/linux-4.1.27/arch/mips/kernel/
H A Dsignal32.c85 int inc = test_thread_flag(TIF_32BIT_FPREGS) ? 2 : 1; copy_fp_to_sigcontext32() local
87 for (i = 0; i < NUM_FPU_REGS; i += inc) { copy_fp_to_sigcontext32()
101 int inc = test_thread_flag(TIF_32BIT_FPREGS) ? 2 : 1; copy_fp_from_sigcontext32() local
104 for (i = 0; i < NUM_FPU_REGS; i += inc) { copy_fp_from_sigcontext32()
/linux-4.1.27/arch/mn10300/boot/compressed/
H A Dhead.S77 inc a0
/linux-4.1.27/drivers/md/
H A Ddm-thin-metadata.c409 pmd->info.value_type.inc = data_block_inc; __setup_btree_details()
420 pmd->tl_info.value_type.inc = subtree_inc; __setup_btree_details()
428 pmd->bl_info.value_type.inc = data_block_inc; __setup_btree_details()
436 pmd->details_info.value_type.inc = NULL; __setup_btree_details()
1069 /* clone the origin, an inc will do */ __create_snap()
1202 int r, inc; __reserve_metadata_snap() local
1212 &sb_validator, &copy, &inc); __reserve_metadata_snap()
1216 BUG_ON(!inc); __reserve_metadata_snap()
H A Ddm-era-target.c401 vt->inc = ws_inc; setup_writeset_tree_info()
412 vt.inc = NULL; setup_era_array_info()
997 int r, inc; metadata_take_snap() local
1024 &sb_validator, &clone, &inc); metadata_take_snap()
1030 BUG_ON(!inc); metadata_take_snap()
1034 DMERR("%s: couldn't inc writeset tree root", __func__); metadata_take_snap()
1041 DMERR("%s: couldn't inc era tree root", __func__); metadata_take_snap()
/linux-4.1.27/drivers/media/pci/ttpci/
H A Dav7110_hw.c873 u16 dx, u16 dy, int inc, u8 __user * data) LoadBitmap()
906 if (copy_from_user(av7110->bmpbuf + 1024 + i * dx, data + i * inc, dx)) { LoadBitmap()
1008 int x1, int y1, int inc, u8 __user * data) OSDSetBlock()
1016 if (inc <= 0) OSDSetBlock()
1017 inc = w; OSDSetBlock()
1040 rc = LoadBitmap(av7110, w, lpb, inc, data); OSDSetBlock()
1046 data += lpb * inc; OSDSetBlock()
1049 rc = LoadBitmap(av7110, w, brest / bpl, inc, data); OSDSetBlock()
872 LoadBitmap(struct av7110 *av7110, u16 dx, u16 dy, int inc, u8 __user * data) LoadBitmap() argument
1007 OSDSetBlock(struct av7110 *av7110, int x0, int y0, int x1, int y1, int inc, u8 __user * data) OSDSetBlock() argument
/linux-4.1.27/drivers/scsi/aic94xx/
H A Daic94xx_sds.c1319 u32 inc; asd_check_flash_type() local
1341 inc = asd_ha->hw_prof.flash.wide ? 2 : 1; asd_check_flash_type()
1346 dev_id = asd_read_reg_byte(asd_ha, reg + inc); asd_check_flash_type()
1347 sec_prot = asd_read_reg_byte(asd_ha, reg + inc + inc); asd_check_flash_type()
1411 dev_id = asd_read_reg_byte(asd_ha, reg + inc); asd_check_flash_type()
1412 sec_prot = asd_read_reg_byte(asd_ha, reg + inc + inc); asd_check_flash_type()
/linux-4.1.27/arch/sparc/mm/
H A Dviking.S58 inc %o2
81 8: inc %o1
/linux-4.1.27/include/uapi/linux/dvb/
H A Dosd.h75 // inc contains the width of one line in the data block,
76 // inc<=0 uses blockwidth as linewidth
/linux-4.1.27/arch/m32r/kernel/
H A Dhead.S87 addi r2, #-4 ; account for pre-inc store
95 addi r2, #4 ; account for pre-inc store
H A Dalign.c540 /* st inc/dec check */ emu_st()
553 /* sth inc check */ emu_st()
/linux-4.1.27/arch/alpha/lib/
H A Dev6-copy_user.S81 * the -1 is to compensate for the inc($6) done in a previous quadpack
221 * the -1 is to compensate for the inc($6) done in a previous quadpack
/linux-4.1.27/drivers/net/ethernet/freescale/
H A Dfec_ptp.c114 int inc; fec_ptp_enable_pps() local
130 inc = fep->ptp_inc; fec_ptp_enable_pps()
265 int inc; fec_ptp_start_cyclecounter() local
267 inc = 1000000000 / fep->cycle_speed; fec_ptp_start_cyclecounter()
273 writel(inc << FEC_T_INC_OFFSET, fep->hwp + FEC_ATIME_INC); fec_ptp_start_cyclecounter()
/linux-4.1.27/arch/um/kernel/
H A Dtlb.c181 #define ADD_ROUND(n, inc) (((n) + (inc)) & ~((inc) - 1))
/linux-4.1.27/drivers/leds/
H A Dleds-lt3593.c10 * Copyright (C) 2007 8D Technologies inc.
H A Dleds-pca955x.c4 * Author: Nate Case <ncase@xes-inc.com>
391 MODULE_AUTHOR("Nate Case <ncase@xes-inc.com>");
H A Dleds-gpio.c4 * Copyright (C) 2007 8D Technologies inc.
/linux-4.1.27/drivers/macintosh/
H A Dwindfarm.h56 * wf_find_control will inc the refcount for you
/linux-4.1.27/drivers/net/wireless/ti/wl1251/
H A Drx.c161 wl1251_warning("curr ID:%d, last ID inc:%d", wl1251_rx_body()
/linux-4.1.27/drivers/gpu/drm/i915/
H A Dintel_i2c.c438 int i = 0, inc, try = 0, reg_offset; gmbus_xfer() local
454 for (; i < num; i += inc) { gmbus_xfer()
455 inc = 1; gmbus_xfer()
458 inc = 2; /* an index read is two msgs */ gmbus_xfer()
/linux-4.1.27/drivers/char/agp/
H A Dalpha-agp.c30 * Get the page, inc the use count, and return it alpha_core_agp_vm_fault()
/linux-4.1.27/arch/powerpc/platforms/85xx/
H A Dxes_mpc85xx.c8 * Author: Nate Case <ncase@xes-inc.com>
/linux-4.1.27/arch/cris/boot/compressed/
H A Dhead_v32.S10 #include <mach/startup.inc>
/linux-4.1.27/arch/frv/kernel/
H A Dhead-uc-fr451.S19 #include "head.inc"
H A Dhead-mmu-fr451.S20 #include "head.inc"
H A Dhead-uc-fr401.S19 #include "head.inc"
H A Dhead-uc-fr555.S19 #include "head.inc"
/linux-4.1.27/arch/m32r/boot/compressed/
H A Dhead.S106 addi r2, #-4 ; account for pre-inc store
/linux-4.1.27/include/asm-generic/
H A Dmutex-xchg.h8 * has a reasonable atomic dec/inc then you should probably use
/linux-4.1.27/drivers/s390/cio/
H A Dqdio.h366 #define add_buf(bufnr, inc) \
367 ((bufnr + inc) & QDIO_MAX_BUFFERS_MASK)
/linux-4.1.27/arch/mips/include/asm/octeon/
H A Dcvmx-spxx-defs.h165 uint64_t inc:1; member in struct:cvmx_spxx_dbg_deskew_ctl::cvmx_spxx_dbg_deskew_ctl_s
179 uint64_t inc:1;
/linux-4.1.27/drivers/pcmcia/
H A Dcistpl.c169 u_int inc = 1, card_offset, flags; pcmcia_read_cis_mem() local
181 inc++; pcmcia_read_cis_mem()
195 for ( ; len > 0; len--, buf++, sys += inc) { pcmcia_read_cis_mem()
250 u_int inc = 1, card_offset, flags; pcmcia_write_cis_mem() local
255 inc++; pcmcia_write_cis_mem()
269 for ( ; len > 0; len--, buf++, sys += inc) { pcmcia_write_cis_mem()
/linux-4.1.27/drivers/scsi/osd/
H A Dosd_initiator.c253 unsigned inc; _osd_req_alist_elem_decode() local
261 inc = _osd_req_alist_elem_size(or, oa->len); _osd_req_alist_elem_decode()
262 if (inc > max_bytes) _osd_req_alist_elem_decode()
281 inc = _osd_req_alist_elem_size(or, oa->len); _osd_req_alist_elem_decode()
282 if (inc > max_bytes) _osd_req_alist_elem_decode()
295 return inc; _osd_req_alist_elem_decode()
1396 int inc = _osd_req_alist_elem_decode(or, cur_p, oa, osd_req_decode_get_attr_list() local
1399 if (inc < 0) { osd_req_decode_get_attr_list()
1408 cur_bytes += inc; osd_req_decode_get_attr_list()
1409 cur_p += inc; osd_req_decode_get_attr_list()
/linux-4.1.27/net/ipv6/
H A Dndisc.c716 bool inc; ndisc_recv_ns() local
763 inc = ipv6_addr_is_multicast(daddr); ndisc_recv_ns()
805 inc && ndisc_recv_ns()
832 if (inc) ndisc_recv_ns()
842 !inc || lladdr || !dev->addr_len); ndisc_recv_ns()
850 true, (ifp != NULL && inc), inc); ndisc_recv_ns()
/linux-4.1.27/arch/powerpc/platforms/powernv/
H A Dpci-ioda.c1682 unsigned long start, end, inc; pnv_pci_ioda1_tce_invalidate() local
1692 inc = 128ull << shift; pnv_pci_ioda1_tce_invalidate()
1699 inc = 16; pnv_pci_ioda1_tce_invalidate()
1702 inc = 128; pnv_pci_ioda1_tce_invalidate()
1705 end |= inc - 1; /* round up end to be different than start */ pnv_pci_ioda1_tce_invalidate()
1713 start += inc; pnv_pci_ioda1_tce_invalidate()
1726 unsigned long start, end, inc; pnv_pci_ioda2_tce_invalidate() local
1738 inc = tbl->it_offset + (((u64)startp - tbl->it_base) / sizeof(u64)); pnv_pci_ioda2_tce_invalidate()
1739 start |= (inc << shift); pnv_pci_ioda2_tce_invalidate()
1740 inc = tbl->it_offset + (((u64)endp - tbl->it_base) / sizeof(u64)); pnv_pci_ioda2_tce_invalidate()
1741 end |= (inc << shift); pnv_pci_ioda2_tce_invalidate()
1742 inc = (0x1ull << shift); pnv_pci_ioda2_tce_invalidate()
1750 start += inc; pnv_pci_ioda2_tce_invalidate()
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Dradeon_legacy_crtc.c58 u32 scale, inc, crtc_more_cntl; radeon_legacy_rmx_mode_set() local
131 inc = (fp_horz_stretch & RADEON_HORZ_AUTO_RATIO_INC) ? 1 : 0; radeon_legacy_rmx_mode_set()
132 scale = ((xres + inc) * RADEON_HORZ_STRETCH_RATIO_MAX) radeon_legacy_rmx_mode_set()
143 inc = (fp_vert_stretch & RADEON_VERT_AUTO_RATIO_INC) ? 1 : 0; radeon_legacy_rmx_mode_set()
144 scale = ((yres + inc) * RADEON_VERT_STRETCH_RATIO_MAX) radeon_legacy_rmx_mode_set()
/linux-4.1.27/arch/powerpc/platforms/pseries/
H A Diommu.c58 unsigned long start, end, inc; tce_invalidate_pSeries_sw() local
62 inc = L1_CACHE_BYTES; /* invalidate a cacheline of TCEs at a time */ tce_invalidate_pSeries_sw()
69 inc <<= 12; tce_invalidate_pSeries_sw()
74 end |= inc - 1; /* round up end to be different than start */ tce_invalidate_pSeries_sw()
79 start += inc; tce_invalidate_pSeries_sw()
/linux-4.1.27/drivers/media/usb/pvrusb2/
H A Dpvrusb2-io.c202 " bufferPool %8s inc cap=%07d cnt=%02d", pvr2_buffer_set_ready()
228 " bufferPool %8s inc cap=%07d cnt=%02d", pvr2_buffer_set_idle()
253 " bufferPool %8s inc cap=%07d cnt=%02d", pvr2_buffer_set_queued()
/linux-4.1.27/drivers/infiniband/hw/mthca/
H A Dmthca_memfree.c324 int inc = MTHCA_TABLE_CHUNK_SIZE / table->obj_size; mthca_table_get_range() local
327 for (i = start; i <= end; i += inc) { mthca_table_get_range()
337 i -= inc; mthca_table_get_range()
/linux-4.1.27/drivers/net/wireless/ath/ath9k/
H A Dar9002_phy.c188 static const int inc[4] = { 0, 100, 0, 0 }; ar9002_hw_spur_mitigate() local
306 cur_bin += inc[i]; ar9002_hw_spur_mitigate()
/linux-4.1.27/drivers/scsi/
H A Dhosts.c561 * scsi_host_get - inc a Scsi_Host ref count
562 * @shost: Pointer to Scsi_Host to inc.
/linux-4.1.27/net/core/
H A Ddev.c5516 static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify) __dev_set_promiscuity() argument
5525 dev->promiscuity += inc; __dev_set_promiscuity()
5529 * If inc causes overflow, untouch promisc and return error. __dev_set_promiscuity()
5531 if (inc < 0) __dev_set_promiscuity()
5534 dev->promiscuity -= inc; __dev_set_promiscuity()
5567 * @inc: modifier
5571 * the device reverts back to normal filtering operation. A negative inc
5575 int dev_set_promiscuity(struct net_device *dev, int inc) dev_set_promiscuity() argument
5580 err = __dev_set_promiscuity(dev, inc, true); dev_set_promiscuity()
5589 static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify) __dev_set_allmulti() argument
5596 dev->allmulti += inc; __dev_set_allmulti()
5600 * If inc causes overflow, untouch allmulti and return error. __dev_set_allmulti()
5602 if (inc < 0) __dev_set_allmulti()
5605 dev->allmulti -= inc; __dev_set_allmulti()
5624 * @inc: modifier
5629 * filtering operation. A negative @inc value is used to drop the counter
5634 int dev_set_allmulti(struct net_device *dev, int inc) dev_set_allmulti() argument
5636 return __dev_set_allmulti(dev, inc, true); dev_set_allmulti()
5749 int inc = (flags & IFF_PROMISC) ? 1 : -1; __dev_change_flags() local
5754 if (__dev_set_promiscuity(dev, inc, false) >= 0) __dev_change_flags()
5764 int inc = (flags & IFF_ALLMULTI) ? 1 : -1; __dev_change_flags() local
5767 __dev_set_allmulti(dev, inc, false); __dev_change_flags()
/linux-4.1.27/drivers/mtd/
H A Dafs.c55 u32 checksum; /* Image checksum (inc. this struct) */
/linux-4.1.27/drivers/media/usb/dvb-usb-v2/
H A Danysee.c210 int ret = 0, inc, i = 0; anysee_master_xfer() local
230 inc = 2; anysee_master_xfer()
242 inc = 1; anysee_master_xfer()
247 i += inc; anysee_master_xfer()
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Dmpc624.c3 Hardware driver for a Micro/sys inc. MPC-624 PC/104 board
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/core/
H A Dobject.c147 nv_trace(obj, "inc() == %d\n", atomic_read(&obj->refcount)); nvkm_object_ref()
/linux-4.1.27/drivers/tty/
H A Dmips_ejtag_fdc.c316 u8 inc[4]; mips_ejtag_fdc_console_write() local
343 inc[buf_len] = i; mips_ejtag_fdc_console_write()
346 count -= inc[word.bytes - 1]; mips_ejtag_fdc_console_write()
347 s += inc[word.bytes - 1]; mips_ejtag_fdc_console_write()
/linux-4.1.27/include/net/netfilter/
H A Dnf_conntrack.h81 * beware nf_ct_get() is different and don't inc refcnt.
/linux-4.1.27/include/uapi/linux/
H A Djffs2.h144 jint32_t totlen; /* Total length of this node (inc data, etc.) */
/linux-4.1.27/arch/mips/jz4740/
H A Dboard-qi_lb60.c6 * Copyright (c) 2009 Qi Hardware inc.,
/linux-4.1.27/fs/btrfs/
H A Dcompression.c391 * inc the count before we submit the bio so btrfs_submit_compressed_write()
393 * we inc the count. Otherwise, the cb might get btrfs_submit_compressed_write()
683 * inc the count before we submit the bio so btrfs_submit_compressed_read()
685 * we inc the count. Otherwise, the cb might get btrfs_submit_compressed_read()
/linux-4.1.27/sound/soc/intel/common/
H A Dsst-ipc.c61 /* wait for DSP completion (in all cases atm inc pending) */ tx_wait_done()
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_kms.c450 unsigned num_clips, int inc, do_surface_dirty_sou()
502 for (i = 1, clips_ptr = clips + inc; do_surface_dirty_sou()
503 i < num_clips; i++, clips_ptr += inc) { do_surface_dirty_sou()
520 for (i = 0; i < num_clips; i++, clips_ptr += inc) { do_surface_dirty_sou()
602 int ret, inc = 1; vmw_framebuffer_surface_dirty() local
627 inc = 2; /* skip source rects */ vmw_framebuffer_surface_dirty()
632 clips, num_clips, inc, NULL); vmw_framebuffer_surface_dirty()
445 do_surface_dirty_sou(struct vmw_private *dev_priv, struct drm_file *file_priv, struct vmw_framebuffer *framebuffer, unsigned flags, unsigned color, struct drm_clip_rect *clips, unsigned num_clips, int inc, struct vmw_fence_obj **out_fence) do_surface_dirty_sou() argument
/linux-4.1.27/drivers/usb/misc/sisusbvga/
H A Dsisusb.c1658 sisusb_check_rbc(struct sisusb_usb_data *sisusb, int *iret, u32 inc, int testn) sisusb_check_rbc() argument
1667 j += inc; sisusb_check_rbc()
1673 j += inc; sisusb_check_rbc()
1685 u32 inc; sisusb_check_ranks() local
1690 inc = 1 << (rtype[idx][2] + sisusb_check_ranks()
1694 ret |= sisusb_check_rbc(sisusb, &i2ret, inc, 2); sisusb_check_ranks()
1699 inc = 1 << (rtype[idx][2] + bw / 64 + 2); sisusb_check_ranks()
1700 ret |= sisusb_check_rbc(sisusb, &i2ret, inc, 4); sisusb_check_ranks()
1704 inc = 1 << (10 + bw / 64); sisusb_check_ranks()
1705 ret |= sisusb_check_rbc(sisusb, &i2ret, inc, 2); sisusb_check_ranks()
/linux-4.1.27/block/
H A Dgenhd.c130 int inc, end; disk_part_iter_next() local
142 inc = -1; disk_part_iter_next()
149 inc = 1; disk_part_iter_next()
154 for (; piter->idx != end; piter->idx += inc) { disk_part_iter_next()
168 piter->idx += inc; disk_part_iter_next()
/linux-4.1.27/sound/pci/asihpi/
H A Dhpi6000.c1179 /* write a block of 32bit words to the DSP HPI port using auto-inc mode */ hpi_write_block()
1194 /* must end with non auto-inc */ hpi_write_block()
1198 /** read a block of 32bit words from the DSP HPI port using auto-inc mode
1214 /* must end with non auto-inc */ hpi_read_block()
1590 gw_pci_read_asserts++; /************* inc global */ hpi6000_check_PCI2040_error_flag()
/linux-4.1.27/arch/powerpc/xmon/
H A Dxmon.c1887 int cmd, inc, i, nslash; memex() local
1929 inc = size; memex()
1938 inc = size; memex()
1943 inc = 0; memex()
1960 inc = size; memex()
2031 adrs += inc; memex()
/linux-4.1.27/drivers/infiniband/core/
H A Dmulticast.c228 static void adjust_membership(struct mcast_group *group, u8 join_state, int inc) adjust_membership() argument
234 group->members[i] += inc; adjust_membership()
/linux-4.1.27/sound/soc/intel/atom/sst/
H A Dsst_drv_interface.c274 dev_dbg(dev, "bytes copied %d inc by %ld\n", stream->cumm_bytes, bytes); sst_cdev_ack()
282 dev_dbg(dev, "bytes sent to fw %llu inc by %ld\n", sst_cdev_ack()
/linux-4.1.27/include/linux/mfd/da9055/
H A Dreg.h431 #define DA9055_RESET_US_LOW_INC 1024 /* inc val in units of us */
575 #define DA9055_TRIM_PPM_INC 19 /* min inc in units of 0.1PPM */
/linux-4.1.27/drivers/iio/light/
H A Dapds9300.c529 MODULE_AUTHOR("GlobalLogic inc.");
/linux-4.1.27/drivers/media/usb/ttusb-budget/
H A Ddvb-ttusb-budget.c251 int inc; master_xfer() local
266 inc = 2; master_xfer()
273 inc = 1; master_xfer()
284 i += inc; master_xfer()
/linux-4.1.27/include/net/
H A Dip_vs.h476 int (*register_app)(struct net *net, struct ip_vs_app *inc);
478 void (*unregister_app)(struct net *net, struct ip_vs_app *inc);
1309 int ip_vs_app_inc_get(struct ip_vs_app *inc);
1310 void ip_vs_app_inc_put(struct ip_vs_app *inc);
/linux-4.1.27/mm/
H A Drmap.c1041 * We use the irq-unsafe __{inc|mod}_zone_page_stat because do_page_add_anon_rmap()
1070 * This means the inc-and-test can be bypassed.
1119 * We use the irq-unsafe __{inc|mod}_zone_page_stat because page_remove_file_rmap()
1154 * We use the irq-unsafe __{inc|mod}_zone_page_stat because page_remove_rmap()
/linux-4.1.27/net/ceph/
H A Dosdmap.c1215 err = get_osdmap_client_data_v(p, end, "inc", &struct_v); osdmap_apply_incremental()
1359 dout("inc osdmap epoch %d max_osd %d\n", map->epoch, map->max_osd); osdmap_apply_incremental()
1365 pr_err("corrupt inc osdmap (%d) epoch %d off %d (%p of %p-%p)\n", osdmap_apply_incremental()
/linux-4.1.27/scripts/mod/
H A Dfile2alias.c244 int inc, incbcd()
253 *bcd += inc; incbcd()
267 dec += inc; incbcd()
243 incbcd(unsigned int *bcd, int inc, unsigned char max, size_t chars) incbcd() argument

Completed in 5203 milliseconds

12