/linux-4.4.14/tools/build/tests/ex/ |
H A D | inc.c | 5 int inc(void) inc() function
|
H A D | ex.c | 8 int inc(void); 18 inc(); main()
|
/linux-4.4.14/net/rds/ |
H A D | recv.c | 41 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 D | tcp_recv.c | 42 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 D | tcp.h | 74 void rds_tcp_inc_free(struct rds_incoming *inc); 75 int rds_tcp_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
|
H A D | loop.c | 78 /* 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 D | ib_recv.c | 156 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() 519 int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to) rds_ib_inc_copy_to_user() argument 529 ibinc = container_of(inc, struct rds_ib_incoming, ii_inc); rds_ib_inc_copy_to_user() 531 len = be32_to_cpu(inc->i_hdr.h_len); rds_ib_inc_copy_to_user() 883 * the inc is freed. We don't go that route, so we have to drop the rds_ib_process_recv() 896 * If we don't already have an inc on the connection then this rds_ib_process_recv() 898 * into the inc and save the inc so we can hang upcoming fragments rds_ib_process_recv()
|
H A D | iw_recv.c | 276 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 D | af_rds.c | 506 struct rds_incoming *inc; rds_sock_inc_info() local 517 list_for_each_entry(inc, &rs->rs_recv_queue, i_item) { rds_sock_inc_info() 520 rds_inc_info_copy(inc, iter, inc->i_saddr, rds_sock_inc_info()
|
H A D | rds.h | 449 int (*inc_copy_to_user)(struct rds_incoming *inc, struct iov_iter *to); 450 void (*inc_free)(struct rds_incoming *inc); 687 int rds_message_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to); 688 void rds_message_inc_free(struct rds_incoming *inc); 719 void rds_inc_init(struct rds_incoming *inc, struct rds_connection *conn, 721 void rds_inc_put(struct rds_incoming *inc); 723 struct rds_incoming *inc, gfp_t gfp); 728 void rds_inc_info_copy(struct rds_incoming *inc,
|
H A D | ib.h | 370 void rds_ib_inc_free(struct rds_incoming *inc); 371 int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
|
H A D | iw.h | 330 void rds_iw_inc_free(struct rds_incoming *inc); 331 int rds_iw_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
|
H A D | message.c | 310 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.4.14/arch/x86/include/asm/ |
H A D | xor.h | 109 " 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 D | cmpxchg.h | 156 * xadd() adds "inc" to "*ptr" and atomically returns the previous 163 #define __xadd(ptr, inc, lock) __xchg_op((ptr), (inc), xadd, lock) 164 #define xadd(ptr, inc) __xadd((ptr), (inc), LOCK_PREFIX) 165 #define xadd_sync(ptr, inc) __xadd((ptr), (inc), "lock; ") 166 #define xadd_local(ptr, inc) __xadd((ptr), (inc), "") 168 #define __add(ptr, inc, lock) \ 170 __typeof__ (*(ptr)) __ret = (inc); \ 174 : "+m" (*(ptr)) : "qi" (inc) \ 179 : "+m" (*(ptr)) : "ri" (inc) \ 184 : "+m" (*(ptr)) : "ri" (inc) \ 189 : "+m" (*(ptr)) : "ri" (inc) \ 199 * add_*() adds "inc" to "*ptr" 205 #define add_smp(ptr, inc) __add((ptr), (inc), LOCK_PREFIX) 206 #define add_sync(ptr, inc) __add((ptr), (inc), "lock; ")
|
H A D | spinlock.h | 108 register struct __raw_tickets inc = { .tail = TICKET_LOCK_INC }; arch_spin_lock() local 110 inc = xadd(&lock->tickets, inc); arch_spin_lock() 111 if (likely(inc.head == inc.tail)) arch_spin_lock() 118 inc.head = READ_ONCE(lock->tickets.head); arch_spin_lock() 119 if (__tickets_equal(inc.head, inc.tail)) arch_spin_lock() 123 __ticket_lock_spinning(lock, inc.tail); arch_spin_lock() 126 __ticket_check_and_clear_slowpath(lock, inc.head); arch_spin_lock()
|
H A D | asm.h | 30 #define _ASM_INC __ASM_SIZE(inc)
|
H A D | atomic64_32.h | 221 __alternative_atomic64(inc, inc_return, /* no output */, atomic64_inc()
|
/linux-4.4.14/net/netfilter/ipvs/ |
H A D | ip_vs_app.c | 61 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(ipvs, 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 netns_ipvs *ipvs, 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(ipvs, 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() 231 struct ip_vs_app *a, *anxt, *inc, *nxt; unregister_ip_vs_app() local 238 list_for_each_entry_safe(inc, nxt, &a->incs_list, a_list) { unregister_ip_vs_app() 239 ip_vs_app_inc_release(ipvs, inc); unregister_ip_vs_app() 268 struct ip_vs_app *inc = cp->app; ip_vs_unbind_app() local 270 if (!inc) ip_vs_unbind_app() 273 if (inc->unbind_conn) ip_vs_unbind_app() 274 inc->unbind_conn(inc, cp); ip_vs_unbind_app() 275 if (inc->done_conn) ip_vs_unbind_app() 276 inc->done_conn(inc, cp); ip_vs_unbind_app() 277 ip_vs_app_inc_put(inc); ip_vs_unbind_app() 514 struct ip_vs_app *app, *inc; ip_vs_app_idx() local 517 list_for_each_entry(inc, &app->incs_list, a_list) { ip_vs_app_idx() 519 return inc; ip_vs_app_idx() 538 struct ip_vs_app *inc, *app; ip_vs_app_seq_next() local 547 inc = v; ip_vs_app_seq_next() 548 app = inc->app; ip_vs_app_seq_next() 550 if ((e = inc->a_list.next) != &app->incs_list) ip_vs_app_seq_next() 556 list_for_each_entry(inc, &app->incs_list, a_list) { ip_vs_app_seq_next() 557 return inc; ip_vs_app_seq_next() 573 const struct ip_vs_app *inc = v; ip_vs_app_seq_show() local 576 ip_vs_proto_name(inc->protocol), ip_vs_app_seq_show() 577 ntohs(inc->port), ip_vs_app_seq_show() 578 atomic_read(&inc->usecnt), ip_vs_app_seq_show() 579 inc->name); ip_vs_app_seq_show()
|
H A D | ip_vs_proto_udp.c | 365 static int udp_register_app(struct netns_ipvs *ipvs, struct ip_vs_app *inc) udp_register_app() argument 369 __be16 port = inc->port; udp_register_app() 381 list_add_rcu(&inc->p_list, &ipvs->udp_apps[hash]); udp_register_app() 390 udp_unregister_app(struct netns_ipvs *ipvs, struct ip_vs_app *inc) udp_unregister_app() argument 395 list_del_rcu(&inc->p_list); udp_unregister_app() 403 struct ip_vs_app *inc; udp_app_conn_bind() local 414 list_for_each_entry_rcu(inc, &ipvs->udp_apps[hash], p_list) { udp_app_conn_bind() 415 if (inc->port == cp->vport) { udp_app_conn_bind() 416 if (unlikely(!ip_vs_app_inc_get(inc))) udp_app_conn_bind() 427 inc->name, ntohs(inc->port)); udp_app_conn_bind() 429 cp->app = inc; udp_app_conn_bind() 430 if (inc->init_conn) udp_app_conn_bind() 431 result = inc->init_conn(inc, cp); udp_app_conn_bind()
|
H A D | ip_vs_proto_sctp.c | 486 static int sctp_register_app(struct netns_ipvs *ipvs, struct ip_vs_app *inc) sctp_register_app() argument 490 __be16 port = inc->port; sctp_register_app() 502 list_add_rcu(&inc->p_list, &ipvs->sctp_apps[hash]); sctp_register_app() 509 static void sctp_unregister_app(struct netns_ipvs *ipvs, struct ip_vs_app *inc) sctp_unregister_app() argument 514 list_del_rcu(&inc->p_list); sctp_unregister_app() 521 struct ip_vs_app *inc; sctp_app_conn_bind() local 531 list_for_each_entry_rcu(inc, &ipvs->sctp_apps[hash], p_list) { sctp_app_conn_bind() 532 if (inc->port == cp->vport) { sctp_app_conn_bind() 533 if (unlikely(!ip_vs_app_inc_get(inc))) sctp_app_conn_bind() 544 inc->name, ntohs(inc->port)); sctp_app_conn_bind() 545 cp->app = inc; sctp_app_conn_bind() 546 if (inc->init_conn) sctp_app_conn_bind() 547 result = inc->init_conn(inc, cp); sctp_app_conn_bind()
|
H A D | ip_vs_proto_tcp.c | 594 static int tcp_register_app(struct netns_ipvs *ipvs, struct ip_vs_app *inc) tcp_register_app() argument 598 __be16 port = inc->port; tcp_register_app() 610 list_add_rcu(&inc->p_list, &ipvs->tcp_apps[hash]); tcp_register_app() 619 tcp_unregister_app(struct netns_ipvs *ipvs, struct ip_vs_app *inc) tcp_unregister_app() argument 624 list_del_rcu(&inc->p_list); tcp_unregister_app() 633 struct ip_vs_app *inc; tcp_app_conn_bind() local 644 list_for_each_entry_rcu(inc, &ipvs->tcp_apps[hash], p_list) { tcp_app_conn_bind() 645 if (inc->port == cp->vport) { tcp_app_conn_bind() 646 if (unlikely(!ip_vs_app_inc_get(inc))) tcp_app_conn_bind() 657 inc->name, ntohs(inc->port)); tcp_app_conn_bind() 659 cp->app = inc; tcp_app_conn_bind() 660 if (inc->init_conn) tcp_app_conn_bind() 661 result = inc->init_conn(inc, cp); tcp_app_conn_bind()
|
/linux-4.4.14/sound/oss/ |
H A D | midi_synth.c | 127 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.4.14/arch/cris/ |
H A D | Makefile | 26 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.4.14/drivers/dma/bestcomm/ |
H A D | ata.c | 27 /* 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 D | fec.c | 25 /* 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 D | gen_bd.c | 30 /* 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 D | bestcomm.c | 143 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.4.14/arch/unicore32/include/asm/ |
H A D | assembler.h | 100 .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.4.14/drivers/net/wan/ |
H A D | Makefile | 36 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.4.14/arch/sparc/lib/ |
H A D | memscan_64.S | 63 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.4.14/drivers/staging/lustre/include/linux/lnet/ |
H A D | lnetst.h | 152 lstcon_rpc_stat_total(lstcon_trans_stat_t *stat, int inc) lstcon_rpc_stat_total() argument 154 return inc ? ++stat->trs_rpc_stat[0] : stat->trs_rpc_stat[0]; lstcon_rpc_stat_total() 158 lstcon_rpc_stat_success(lstcon_trans_stat_t *stat, int inc) lstcon_rpc_stat_success() argument 160 return inc ? ++stat->trs_rpc_stat[1] : stat->trs_rpc_stat[1]; lstcon_rpc_stat_success() 164 lstcon_rpc_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_rpc_stat_failure() argument 166 return inc ? ++stat->trs_rpc_stat[2] : stat->trs_rpc_stat[2]; lstcon_rpc_stat_failure() 170 lstcon_sesop_stat_success(lstcon_trans_stat_t *stat, int inc) lstcon_sesop_stat_success() argument 172 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_sesop_stat_success() 176 lstcon_sesop_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_sesop_stat_failure() argument 178 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_sesop_stat_failure() 182 lstcon_sesqry_stat_active(lstcon_trans_stat_t *stat, int inc) lstcon_sesqry_stat_active() argument 184 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_sesqry_stat_active() 188 lstcon_sesqry_stat_busy(lstcon_trans_stat_t *stat, int inc) lstcon_sesqry_stat_busy() argument 190 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_sesqry_stat_busy() 194 lstcon_sesqry_stat_unknown(lstcon_trans_stat_t *stat, int inc) lstcon_sesqry_stat_unknown() argument 196 return inc ? ++stat->trs_fwk_stat[2] : stat->trs_fwk_stat[2]; lstcon_sesqry_stat_unknown() 200 lstcon_tsbop_stat_success(lstcon_trans_stat_t *stat, int inc) lstcon_tsbop_stat_success() argument 202 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_tsbop_stat_success() 206 lstcon_tsbop_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_tsbop_stat_failure() argument 208 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_tsbop_stat_failure() 212 lstcon_tsbqry_stat_idle(lstcon_trans_stat_t *stat, int inc) lstcon_tsbqry_stat_idle() argument 214 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_tsbqry_stat_idle() 218 lstcon_tsbqry_stat_run(lstcon_trans_stat_t *stat, int inc) lstcon_tsbqry_stat_run() argument 220 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_tsbqry_stat_run() 224 lstcon_tsbqry_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_tsbqry_stat_failure() argument 226 return inc ? ++stat->trs_fwk_stat[2] : stat->trs_fwk_stat[2]; lstcon_tsbqry_stat_failure() 230 lstcon_statqry_stat_success(lstcon_trans_stat_t *stat, int inc) lstcon_statqry_stat_success() argument 232 return inc ? ++stat->trs_fwk_stat[0] : stat->trs_fwk_stat[0]; lstcon_statqry_stat_success() 236 lstcon_statqry_stat_failure(lstcon_trans_stat_t *stat, int inc) lstcon_statqry_stat_failure() argument 238 return inc ? ++stat->trs_fwk_stat[1] : stat->trs_fwk_stat[1]; lstcon_statqry_stat_failure()
|
/linux-4.4.14/arch/cris/boot/rescue/ |
H A D | head_v32.S | 10 #include <mach/startup.inc>
|
/linux-4.4.14/arch/h8300/lib/ |
H A D | strncpy.S | 22 inc.l #1,er3
|
/linux-4.4.14/sound/soc/codecs/ |
H A D | pcm3008.h | 5 * Copyright (C) 2008 Lyrtech inc
|
H A D | pcm3008.c | 5 * Copyright (C) 2008 Lyrtech inc
|
/linux-4.4.14/arch/mips/include/asm/ |
H A D | spinlock.h | 66 int inc = 0x10000; arch_spin_lock() local 74 " addu %[my_ticket], %[ticket], %[inc] \n" arch_spin_lock() 101 : [inc] "r" (inc)); arch_spin_lock() 108 " addu %[my_ticket], %[ticket], %[inc] \n" arch_spin_lock() 134 : [inc] "r" (inc)); arch_spin_lock() 151 int inc = 0x10000; arch_spin_trylock() local 162 " addu %[ticket], %[ticket], %[inc] \n" arch_spin_trylock() 176 : [inc] "r" (inc)); arch_spin_trylock() 186 " addu %[ticket], %[ticket], %[inc] \n" arch_spin_trylock() 200 : [inc] "r" (inc)); arch_spin_trylock()
|
/linux-4.4.14/arch/mn10300/lib/ |
H A D | usercopy.c | 44 " inc %5\n" \ 45 " inc %6\n" \ 97 " inc %3\n" \ 149 " inc %0\n" strnlen_user()
|
H A D | memset.S | 114 inc a0
|
H A D | do_csum.S | 40 inc a0
|
/linux-4.4.14/scripts/ |
H A D | headers_check.pl | 52 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.4.14/firmware/keyspan_pda/ |
H A D | keyspan_pda.S | 234 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 D | xircom_pgs.S | 236 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.4.14/arch/arm/include/asm/ |
H A D | assembler.h | 368 .macro usraccoff, instr, reg, ptr, inc, off, cond, abort, t=TUSER() variable 370 .if \inc == 1 372 .elseif \inc == 4 375 .error "Unsupported inc macro argument" 384 .macro usracc, instr, reg, ptr, inc, cond, rept, abort variable 398 usraccoff \instr, \reg, \ptr, \inc, 0, \cond, \abort variable 400 usraccoff \instr, \reg, \ptr, \inc, \inc, \cond, \abort variable 403 add\cond \ptr, #\rept * \inc 408 .macro usracc, instr, reg, ptr, inc, cond, rept, abort, t=TUSER() 411 .if \inc == 1 412 \instr\cond\()b\()\t \reg, [\ptr], #\inc 413 .elseif \inc == 4 414 \instr\cond\()\t \reg, [\ptr], #\inc 416 .error "Unsupported inc macro argument" 428 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f variable 429 usracc str, \reg, \ptr, \inc, \cond, \rept, \abort variable 432 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f variable 433 usracc ldr, \reg, \ptr, \inc, \cond, \rept, \abort variable
|
/linux-4.4.14/arch/mips/cavium-octeon/ |
H A D | csrc-octeon.c | 140 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 D | setup.c | 878 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.4.14/drivers/video/fbdev/omap2/dss/ |
H A D | dispc_coefs.c | 289 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.4.14/include/asm-generic/ |
H A D | atomic-long.h | 169 ATOMIC_LONG_INC_DEC_OP(inc,) 170 ATOMIC_LONG_INC_DEC_OP(inc, _relaxed) 171 ATOMIC_LONG_INC_DEC_OP(inc, _acquire) 172 ATOMIC_LONG_INC_DEC_OP(inc, _release)
|
H A D | mutex-xchg.h | 8 * has a reasonable atomic dec/inc then you should probably use
|
/linux-4.4.14/drivers/staging/android/ |
H A D | sw_sync.h | 39 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 D | sw_sync.c | 125 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.4.14/arch/mn10300/kernel/ |
H A D | mn10300-watchdog-low.S | 18 #include <asm/frame.inc> 61 inc d1 define
|
H A D | fpu-nofpu-low.S | 16 #include <asm/frame.inc>
|
H A D | head.S | 19 #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 D | gdb-io-serial-low.S | 19 #include <asm/frame.inc>
|
H A D | gdb-io-ttysm-low.S | 19 #include <asm/frame.inc>
|
H A D | profile-low.S | 60 inc d3 define
|
H A D | smp-low.S | 21 #include <asm/frame.inc>
|
H A D | mn10300-serial-low.S | 19 #include <asm/frame.inc> 144 inc d3 # advance the buffer pointer define
|
H A D | gdb-low.S | 20 #include <asm/frame.inc>
|
H A D | fpu-low.S | 16 #include <asm/frame.inc>
|
/linux-4.4.14/arch/xtensa/include/asm/ |
H A D | asmmacro.h | 20 * __loopi ar, at, size, inc 24 * inc increment 42 * inc increment
|
/linux-4.4.14/fs/ceph/ |
H A D | mdsmap.c | 88 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 D | mds_client.h | 131 u32 s_cap_gen; /* inc each time we get mds stale msg */
|
/linux-4.4.14/arch/h8300/include/asm/ |
H A D | bitops.h | 83 "inc.l #1,%0\n" test_bit() 117 "inc.l #1,%0\n\t" \ 143 "inc.l #1,%0\n\t" \
|
/linux-4.4.14/drivers/md/persistent-data/ |
H A D | dm-btree-spine.c | 105 int r, inc; bn_shadow() local 108 result, &inc); bn_shadow() 109 if (!r && inc) bn_shadow() 277 vt->inc = le64_inc; init_le64_type()
|
H A D | dm-array.c | 126 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 D | dm-space-map-common.c | 204 ll->bitmap_info.value_type.inc = NULL; sm_ll_init() 211 ll->ref_count_info.value_type.inc = NULL; sm_ll_init() 395 int inc; sm_ll_mutate() local 403 &dm_sm_bitmap_validator, &nb, &inc); sm_ll_mutate() 581 int r, inc; metadata_ll_commit() local 584 r = dm_tm_shadow_block(ll->tm, ll->bitmap_root, &index_validator, &b, &inc); metadata_ll_commit()
|
H A D | dm-bitset.c | 21 .inc = NULL,
|
H A D | dm-btree-remove.c | 146 int r, inc; init_child() local 153 &result->block, &inc); init_child() 159 if (inc) init_child()
|
H A D | dm-btree.h | 61 void (*inc)(void *context, const void *value); member in struct:dm_btree_value_type
|
H A D | dm-array.h | 105 * If growing the inc function for 'value' will be called the appropriate
|
H A D | dm-btree.c | 80 else if (vt->inc) inc_children() 82 vt->inc(vt->context, value_ptr(n, i)); inc_children()
|
/linux-4.4.14/drivers/crypto/vmx/ |
H A D | aes_ctr.c | 118 u64 inc; p8_aes_ctr_crypt() local 148 inc = (nbytes & AES_BLOCK_MASK) / AES_BLOCK_SIZE; p8_aes_ctr_crypt() 149 if (inc > 0) p8_aes_ctr_crypt() 150 while (inc--) p8_aes_ctr_crypt()
|
/linux-4.4.14/fs/udf/ |
H A D | directory.c | 198 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 D | inode.c | 1870 struct kernel_lb_addr *eloc, uint32_t elen, int inc) udf_add_aext() 1977 udf_write_aext(inode, epos, eloc, elen, inc); udf_add_aext() 1988 epos->offset + (inc ? 0 : adsize)); udf_add_aext() 1999 struct kernel_lb_addr *eloc, uint32_t elen, int inc) udf_write_aext() 2046 if (inc) udf_write_aext() 2057 struct kernel_lb_addr *eloc, uint32_t *elen, int inc) udf_next_aext() 2062 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) == udf_next_aext() 2088 struct kernel_lb_addr *eloc, uint32_t *elen, int inc) udf_current_aext() 2116 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc); udf_current_aext() 2126 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc); udf_current_aext() 1869 udf_add_aext(struct inode *inode, struct extent_position *epos, struct kernel_lb_addr *eloc, uint32_t elen, int inc) udf_add_aext() argument 1998 udf_write_aext(struct inode *inode, struct extent_position *epos, struct kernel_lb_addr *eloc, uint32_t elen, int inc) udf_write_aext() argument 2056 udf_next_aext(struct inode *inode, struct extent_position *epos, struct kernel_lb_addr *eloc, uint32_t *elen, int inc) udf_next_aext() argument 2087 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.4.14/include/linux/ |
H A D | rtc-v3020.h | 8 * Copyright (C) 2006, 8D Technologies inc.
|
H A D | rio_regs.h | 67 #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 */
|
H A D | jump_label.h | 49 * the key or branch direction via static_branch_{inc,dec}. Thus,
|
/linux-4.4.14/arch/mn10300/mm/ |
H A D | cache-dbg-inv.S | 18 #include "cache.inc"
|
H A D | cache-dbg-inv-by-reg.S | 16 #include "cache.inc"
|
H A D | cache-dbg-flush-by-tag.S | 18 #include "cache.inc"
|
H A D | misalignment.c | 322 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 D | cache-dbg-flush-by-reg.S | 18 #include "cache.inc"
|
H A D | cache-dbg-inv-by-tag.S | 18 #include "cache.inc"
|
H A D | tlb-mn10300.S | 19 #include <asm/frame.inc>
|
H A D | cache-inv-by-reg.S | 18 #include "cache.inc"
|
H A D | cache-inv-by-tag.S | 18 #include "cache.inc"
|
/linux-4.4.14/include/linux/mfd/ |
H A D | lpc_ich.h | 5 * Author: Aaron Sierra <asierra@xes-inc.com>
|
/linux-4.4.14/kernel/trace/ |
H A D | ring_buffer_benchmark.c | 111 int inc; read_page() local 123 for (i = 0; i < commit && !test_error ; i += inc) { read_page() 130 inc = -1; read_page() 137 inc = event->array[0] + 4; read_page() 140 inc = 8; read_page() 153 inc = event->array[0] + 4; read_page() 162 inc = ((event->type_len + 1) * 4); read_page() 167 if (inc <= 0) { read_page()
|
/linux-4.4.14/arch/ia64/include/uapi/asm/ |
H A D | gcc_intrin.h | 233 #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.4.14/net/ipv4/ |
H A D | tcp_veno.c | 31 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.4.14/sound/pcmcia/pdaudiocf/ |
H A D | pdaudiocf_pcm.c | 51 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.4.14/drivers/media/platform/sti/bdisp/ |
H A D | bdisp-hw.c | 249 * @inc: resize increment 256 static dma_addr_t bdisp_hw_get_hf_addr(u16 inc) bdisp_hw_get_hf_addr() argument 261 if ((bdisp_h_filter[i].min < inc) && bdisp_hw_get_hf_addr() 262 (inc <= bdisp_h_filter[i].max)) bdisp_hw_get_hf_addr() 270 * @inc: resize increment 277 static dma_addr_t bdisp_hw_get_vf_addr(u16 inc) bdisp_hw_get_vf_addr() argument 282 if ((bdisp_v_filter[i].min < inc) && bdisp_hw_get_vf_addr() 283 (inc <= bdisp_v_filter[i].max)) bdisp_hw_get_vf_addr() 293 * @inc: resize increment in 6.10 format 300 static int bdisp_hw_get_inc(u32 from, u32 to, u16 *inc) bdisp_hw_get_inc() argument 308 *inc = 1 << 10; bdisp_hw_get_inc() 317 *inc = (u16)tmp; bdisp_hw_get_inc()
|
H A D | bdisp-debug.c | 255 u32 inc; bdisp_dbg_dump_rsf() local 262 inc = val & 0xFFFF; bdisp_dbg_dump_rsf() 263 seq_printf(s, "H: %d(6.10) / scale~%dx0.1 - ", inc, 1024 * 10 / inc); bdisp_dbg_dump_rsf() 265 inc = val >> 16; bdisp_dbg_dump_rsf() 266 seq_printf(s, "V: %d(6.10) / scale~%dx0.1", inc, 1024 * 10 / inc); bdisp_dbg_dump_rsf()
|
/linux-4.4.14/sound/core/seq/ |
H A D | seq_timer.h | 109 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.4.14/fs/xfs/ |
H A D | xfs_stats.h | 232 #define XFS_STATS_ADD(mp, v, inc) \ 234 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->v += (inc); \ 235 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->v += (inc); \
|
/linux-4.4.14/arch/nios2/boot/compressed/ |
H A D | head.S | 48 addi r1, r1, 4 /* inc the src addr */ 49 addi r2, r2, 4 /* inc the dest addr */
|
/linux-4.4.14/arch/m68k/fpsp040/ |
H A D | decbin.S | 216 | 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 D | scale.S | 216 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 D | bindec.S | 432 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.4.14/drivers/media/dvb-frontends/ |
H A D | bcm3510.h | 4 * Copyright (C) 2001-5, B2C2 inc.
|
H A D | stv090x.c | 2260 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 D | bcm3510_priv.h | 4 * Copyright (C) 2001-5, B2C2 inc.
|
/linux-4.4.14/include/linux/netfilter/ |
H A D | nf_conntrack_proto_gre.h | 60 __be16 payload_len; /* size of ppp payload, not inc. gre header */
|
/linux-4.4.14/sound/mips/ |
H A D | hal2.c | 82 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.4.14/arch/mn10300/include/asm/ |
H A D | uaccess.h | 304 " inc %0;\n" \ 305 " inc %1;\n" \ 332 " inc %0;\n" \ 333 " inc %1;\n" \ 342 " inc %1;\n" \
|
/linux-4.4.14/drivers/usb/dwc2/ |
H A D | hcd_ddma.c | 60 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()
|
/linux-4.4.14/arch/xtensa/kernel/ |
H A D | signal.c | 85 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.4.14/drivers/infiniband/hw/cxgb4/ |
H A D | t4.h | 458 static inline void t4_ring_sq_db(struct t4_wq *wq, u16 inc, union t4_wr *wqe) t4_ring_sq_db() argument 464 if (inc == 1 && wq->sq.bar2_qid == 0 && wqe) { t4_ring_sq_db() 473 writel(PIDX_T5_V(inc) | QID_V(wq->sq.bar2_qid), t4_ring_sq_db() 481 writel(QID_V(wq->sq.qid) | PIDX_V(inc), wq->db); t4_ring_sq_db() 484 static inline void t4_ring_rq_db(struct t4_wq *wq, u16 inc, t4_ring_rq_db() argument 491 if (inc == 1 && wq->rq.bar2_qid == 0 && wqe) { t4_ring_rq_db() 500 writel(PIDX_T5_V(inc) | QID_V(wq->rq.bar2_qid), t4_ring_rq_db() 508 writel(QID_V(wq->rq.qid) | PIDX_V(inc), wq->db); t4_ring_rq_db()
|
H A D | qp.c | 705 static int ring_kernel_sq_db(struct c4iw_qp *qhp, u16 inc) ring_kernel_sq_db() argument 712 t4_ring_sq_db(&qhp->wq, inc, NULL); ring_kernel_sq_db() 715 qhp->wq.sq.wq_pidx_inc += inc; ring_kernel_sq_db() 722 static int ring_kernel_rq_db(struct c4iw_qp *qhp, u16 inc) ring_kernel_rq_db() argument 729 t4_ring_rq_db(&qhp->wq, inc, NULL); ring_kernel_rq_db() 732 qhp->wq.rq.wq_pidx_inc += inc; ring_kernel_rq_db()
|
/linux-4.4.14/arch/m68k/include/asm/ |
H A D | mcfdma.h | 46 #define MCFDMA_DCR_SINC 0x0040 /* Source addr inc enable */ 52 #define MCFDMA_DCR_DINC 0x0008 /* Dest addr inc enable */
|
/linux-4.4.14/arch/nios2/kernel/ |
H A D | head.S | 138 addi r1, r1, 4 /* inc the src addr */ 139 addi r2, r2, 4 /* inc the dest addr */
|
/linux-4.4.14/arch/frv/include/asm/ |
H A D | checksum.h | 57 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.4.14/arch/x86/lib/ |
H A D | atomic64_386_32.S | 102 BEGIN(inc)
|
H A D | atomic64_cx8_32.S | 104 incdec_return inc add adc
|
H A D | checksum_32.S | 68 inc %esi 175 inc %esi
|
/linux-4.4.14/lib/ |
H A D | percpu_test.c | 23 * +ul_one/-ul_one below would replace with inc/dec instructions. percpu_test_init()
|
/linux-4.4.14/net/netfilter/ |
H A D | xt_u32.c | 4 * Original author: Don Cohen <don@isis.cs3-inc.com>
|
/linux-4.4.14/crypto/ |
H A D | lrw.c | 105 static inline void inc(be128 *iv) inc() function 175 inc(iv); crypt() 260 inc(iv); lrw_crypt()
|
/linux-4.4.14/drivers/i2c/busses/ |
H A D | i2c-octeon.c | 446 int tclk, thp_base, inc, thp_idx, mdiv_idx, ndiv_idx, foscl, diff; octeon_i2c_setclock() local 463 for (inc = 0; inc <= 1; inc++) { octeon_i2c_setclock() 464 thp_idx = thp_base + inc; octeon_i2c_setclock()
|
H A D | i2c-img-scb.c | 261 * So a sensible inc is the logarithmic mean: 64 (2^6), which is 1112 unsigned int i, ret, data, prescale, inc, int_bitrate, filt; img_i2c_init() local 1153 /* Find the prescale that would give us that inc (approx delay = 0) */ img_i2c_init() 1159 inc = (256 * 16 * bitrate_khz) / clk_khz; img_i2c_init() 1179 inc++; img_i2c_init() 1186 data = filt | ((inc & SCB_INC_MASK) << SCB_INC_SHIFT) | (prescale - 1); img_i2c_init() 1190 clk_period = (256 * 1000000) / (clk_khz * inc); img_i2c_init()
|
H A D | i2c-iop3xx.c | 15 * Frodo Looijaard <frodol@dds.nl>, Martin Bailey<mbailey@littlefeet-inc.com>
|
/linux-4.4.14/arch/hexagon/lib/ |
H A D | memcpy.S | 176 #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.4.14/drivers/gpu/drm/virtio/ |
H A D | virtgpu_fb.c | 130 int inc = 1; virtio_gpu_surface_dirty() local 144 for (i = 1, clips_ptr = clips + inc; virtio_gpu_surface_dirty() 145 i < num_clips; i++, clips_ptr += inc) { virtio_gpu_surface_dirty()
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
H A D | icm.c | 356 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.4.14/net/sctp/ |
H A D | tsnmap.c | 359 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.4.14/fs/xfs/libxfs/ |
H A D | xfs_alloc_btree.c | 49 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
|
H A D | xfs_ialloc_btree.c | 58 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
|
/linux-4.4.14/tools/perf/util/ |
H A D | hist.h | 285 static inline void advance_hpp(struct perf_hpp *hpp, int inc) advance_hpp() argument 287 hpp->buf += inc; advance_hpp() 288 hpp->size -= inc; advance_hpp()
|
/linux-4.4.14/drivers/staging/speakup/ |
H A D | spk_priv_keyinfo.h | 86 /* with dec being even and inc being 1 greater */
|
/linux-4.4.14/drivers/rtc/ |
H A D | rtc-max6902.c | 3 * Copyright (C) 2006 8D Technologies inc.
|
H A D | rtc-r9701.c | 8 * Copyright (C) 2006 8D Technologies inc.
|
H A D | rtc-rx4581.c | 8 * Copyright (C) 2006 8D Technologies inc.
|
H A D | rtc-v3020.c | 3 * Copyright (C) 2006 8D Technologies inc.
|
/linux-4.4.14/drivers/isdn/hardware/eicon/ |
H A D | debug.c | 1602 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 D | maintidi.c | 1531 &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 D | kst_ifc.h | 165 diva_incoming_call_statistics_t inc; member in struct:_diva_ifc_statistics
|
/linux-4.4.14/drivers/gpu/drm/qxl/ |
H A D | qxl_draw.c | 271 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 D | qxl_display.c | 236 int inc = 1; qxl_crtc_page_flip() local 253 &norect, one_clip_rect, inc); qxl_crtc_page_flip() 489 int inc = 1; qxl_framebuffer_surface_dirty() local 508 inc = 2; /* skip source rects */ qxl_framebuffer_surface_dirty() 512 clips, num_clips, inc); qxl_framebuffer_surface_dirty()
|
/linux-4.4.14/arch/mn10300/boot/compressed/ |
H A D | head.S | 77 inc a0
|
/linux-4.4.14/drivers/scsi/aic94xx/ |
H A D | aic94xx_sds.c | 1320 u32 inc; asd_check_flash_type() local 1342 inc = asd_ha->hw_prof.flash.wide ? 2 : 1; asd_check_flash_type() 1347 dev_id = asd_read_reg_byte(asd_ha, reg + inc); asd_check_flash_type() 1348 sec_prot = asd_read_reg_byte(asd_ha, reg + inc + inc); asd_check_flash_type() 1412 dev_id = asd_read_reg_byte(asd_ha, reg + inc); asd_check_flash_type() 1413 sec_prot = asd_read_reg_byte(asd_ha, reg + inc + inc); asd_check_flash_type()
|
/linux-4.4.14/drivers/iio/light/ |
H A D | bh1750.c | 61 int inc; member in struct:bh1750_chip_info 199 for (i = chip_info->mtreg_min; i <= chip_info->mtreg_max; i += chip_info->inc) bh1750_show_int_time_available()
|
H A D | apds9300.c | 528 MODULE_AUTHOR("GlobalLogic inc.");
|
/linux-4.4.14/drivers/media/pci/ttpci/ |
H A D | av7110_hw.c | 873 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.4.14/arch/sparc/mm/ |
H A D | viking.S | 58 inc %o2 81 8: inc %o1
|
/linux-4.4.14/arch/alpha/lib/ |
H A D | ev6-copy_user.S | 81 * 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.4.14/include/uapi/linux/dvb/ |
H A D | osd.h | 75 // inc contains the width of one line in the data block, 76 // inc<=0 uses blockwidth as linewidth
|
/linux-4.4.14/arch/m32r/kernel/ |
H A D | head.S | 87 addi r2, #-4 ; account for pre-inc store 95 addi r2, #4 ; account for pre-inc store
|
H A D | align.c | 540 /* st inc/dec check */ emu_st() 553 /* sth inc check */ emu_st()
|
/linux-4.4.14/drivers/net/ethernet/freescale/ |
H A D | fec_ptp.c | 114 int inc; fec_ptp_enable_pps() local 129 inc = fep->ptp_inc; fec_ptp_enable_pps() 263 int inc; fec_ptp_start_cyclecounter() local 265 inc = 1000000000 / fep->cycle_speed; fec_ptp_start_cyclecounter() 271 writel(inc << FEC_T_INC_OFFSET, fep->hwp + FEC_ATIME_INC); fec_ptp_start_cyclecounter()
|
/linux-4.4.14/drivers/md/ |
H A D | dm-era-target.c | 403 vt->inc = ws_inc; setup_writeset_tree_info() 414 vt.inc = NULL; setup_era_array_info() 1001 int r, inc; metadata_take_snap() local 1028 &sb_validator, &clone, &inc); metadata_take_snap() 1034 BUG_ON(!inc); metadata_take_snap() 1038 DMERR("%s: couldn't inc writeset tree root", __func__); metadata_take_snap() 1045 DMERR("%s: couldn't inc era tree root", __func__); metadata_take_snap()
|
H A D | dm-thin-metadata.c | 410 pmd->info.value_type.inc = data_block_inc; __setup_btree_details() 421 pmd->tl_info.value_type.inc = subtree_inc; __setup_btree_details() 429 pmd->bl_info.value_type.inc = data_block_inc; __setup_btree_details() 437 pmd->details_info.value_type.inc = NULL; __setup_btree_details() 1071 /* clone the origin, an inc will do */ __create_snap() 1204 int r, inc; __reserve_metadata_snap() local 1220 &sb_validator, ©, &inc); __reserve_metadata_snap() 1224 BUG_ON(!inc); __reserve_metadata_snap() 1561 * Remove from the mapping tree, taking care to inc the __remove_range()
|
/linux-4.4.14/arch/um/kernel/ |
H A D | tlb.c | 191 #define ADD_ROUND(n, inc) (((n) + (inc)) & ~((inc) - 1))
|
/linux-4.4.14/drivers/leds/ |
H A D | leds-lt3593.c | 10 * Copyright (C) 2007 8D Technologies inc.
|
H A D | leds-pca955x.c | 4 * Author: Nate Case <ncase@xes-inc.com> 390 MODULE_AUTHOR("Nate Case <ncase@xes-inc.com>");
|
H A D | leds-gpio.c | 4 * Copyright (C) 2007 8D Technologies inc.
|
/linux-4.4.14/drivers/net/wireless/ti/wl1251/ |
H A D | rx.c | 161 wl1251_warning("curr ID:%d, last ID inc:%d", wl1251_rx_body()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
H A D | intel_i2c.c | 483 int i = 0, inc, try = 0; gmbus_xfer() local 497 for (; i < num; i += inc) { gmbus_xfer() 498 inc = 1; gmbus_xfer() 501 inc = 2; /* an index read is two msgs */ gmbus_xfer()
|
/linux-4.4.14/drivers/char/agp/ |
H A D | alpha-agp.c | 30 * Get the page, inc the use count, and return it alpha_core_agp_vm_fault()
|
/linux-4.4.14/arch/cris/boot/compressed/ |
H A D | head_v32.S | 10 #include <mach/startup.inc>
|
/linux-4.4.14/kernel/locking/ |
H A D | qrwlock.c | 46 * rspin_until_writer_unlock - inc reader count & spin until writer is gone
|
/linux-4.4.14/arch/powerpc/platforms/85xx/ |
H A D | xes_mpc85xx.c | 8 * Author: Nate Case <ncase@xes-inc.com>
|
/linux-4.4.14/arch/mips/kernel/ |
H A D | signal.c | 76 int inc = test_thread_flag(TIF_32BIT_FPREGS) ? 2 : 1; copy_fp_to_sigcontext() local 78 for (i = 0; i < NUM_FPU_REGS; i += inc) { copy_fp_to_sigcontext() 95 int inc = test_thread_flag(TIF_32BIT_FPREGS) ? 2 : 1; copy_fp_from_sigcontext() local 98 for (i = 0; i < NUM_FPU_REGS; i += inc) { copy_fp_from_sigcontext()
|
/linux-4.4.14/arch/frv/kernel/ |
H A D | head-uc-fr451.S | 19 #include "head.inc"
|
H A D | head-mmu-fr451.S | 20 #include "head.inc"
|
H A D | head-uc-fr401.S | 19 #include "head.inc"
|
H A D | head-uc-fr555.S | 19 #include "head.inc"
|
/linux-4.4.14/arch/m32r/boot/compressed/ |
H A D | head.S | 106 addi r2, #-4 ; account for pre-inc store
|
/linux-4.4.14/drivers/s390/cio/ |
H A D | qdio.h | 366 #define add_buf(bufnr, inc) \ 367 ((bufnr + inc) & QDIO_MAX_BUFFERS_MASK)
|
/linux-4.4.14/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_kms.h | 285 unsigned num_clips, int inc, 312 unsigned num_clips, int inc,
|
H A D | vmwgfx_stdu.c | 985 * @inc: Increment to use when looping over @clips. 1000 unsigned num_clips, int inc, vmw_kms_stdu_surface_dirty() 1016 ret = vmw_kms_update_proxy(srf, clips, num_clips, inc); vmw_kms_stdu_surface_dirty() 1031 dest_x, dest_y, num_clips, inc, vmw_kms_stdu_surface_dirty() 993 vmw_kms_stdu_surface_dirty(struct vmw_private *dev_priv, struct vmw_framebuffer *framebuffer, struct drm_clip_rect *clips, struct drm_vmw_rect *vclips, struct vmw_resource *srf, s32 dest_x, s32 dest_y, unsigned num_clips, int inc, struct vmw_fence_obj **out_fence) vmw_kms_stdu_surface_dirty() argument
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
H A D | cvmx-spxx-defs.h | 165 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.4.14/drivers/pcmcia/ |
H A D | cistpl.c | 168 u_int inc = 1, card_offset, flags; pcmcia_read_cis_mem() local 180 inc++; pcmcia_read_cis_mem() 194 for ( ; len > 0; len--, buf++, sys += inc) { pcmcia_read_cis_mem() 249 u_int inc = 1, card_offset, flags; pcmcia_write_cis_mem() local 254 inc++; pcmcia_write_cis_mem() 268 for ( ; len > 0; len--, buf++, sys += inc) { pcmcia_write_cis_mem()
|
/linux-4.4.14/drivers/scsi/osd/ |
H A D | osd_initiator.c | 253 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.4.14/net/ipv6/ |
H A D | ndisc.c | 719 bool inc; ndisc_recv_ns() local 766 inc = ipv6_addr_is_multicast(daddr); ndisc_recv_ns() 820 inc && ndisc_recv_ns() 847 if (inc) ndisc_recv_ns() 857 !inc || lladdr || !dev->addr_len); ndisc_recv_ns() 864 true, (ifp != NULL && inc), inc); ndisc_recv_ns()
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
H A D | radeon_legacy_crtc.c | 58 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.4.14/drivers/infiniband/hw/mthca/ |
H A D | mthca_memfree.c | 324 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.4.14/drivers/media/usb/pvrusb2/ |
H A D | pvrusb2-io.c | 202 " 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.4.14/drivers/scsi/ |
H A D | hosts.c | 579 * scsi_host_get - inc a Scsi_Host ref count 580 * @shost: Pointer to Scsi_Host to inc.
|
/linux-4.4.14/net/core/ |
H A D | dev.c | 5704 static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify) __dev_set_promiscuity() argument 5713 dev->promiscuity += inc; __dev_set_promiscuity() 5717 * If inc causes overflow, untouch promisc and return error. __dev_set_promiscuity() 5719 if (inc < 0) __dev_set_promiscuity() 5722 dev->promiscuity -= inc; __dev_set_promiscuity() 5755 * @inc: modifier 5759 * the device reverts back to normal filtering operation. A negative inc 5763 int dev_set_promiscuity(struct net_device *dev, int inc) dev_set_promiscuity() argument 5768 err = __dev_set_promiscuity(dev, inc, true); dev_set_promiscuity() 5777 static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify) __dev_set_allmulti() argument 5784 dev->allmulti += inc; __dev_set_allmulti() 5788 * If inc causes overflow, untouch allmulti and return error. __dev_set_allmulti() 5790 if (inc < 0) __dev_set_allmulti() 5793 dev->allmulti -= inc; __dev_set_allmulti() 5812 * @inc: modifier 5817 * filtering operation. A negative @inc value is used to drop the counter 5822 int dev_set_allmulti(struct net_device *dev, int inc) dev_set_allmulti() argument 5824 return __dev_set_allmulti(dev, inc, true); dev_set_allmulti() 5937 int inc = (flags & IFF_PROMISC) ? 1 : -1; __dev_change_flags() local 5942 if (__dev_set_promiscuity(dev, inc, false) >= 0) __dev_change_flags() 5952 int inc = (flags & IFF_ALLMULTI) ? 1 : -1; __dev_change_flags() local 5955 __dev_set_allmulti(dev, inc, false); __dev_change_flags()
|
/linux-4.4.14/drivers/tty/ |
H A D | mips_ejtag_fdc.c | 316 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.4.14/drivers/staging/comedi/drivers/ |
H A D | mpc624.c | 3 * Hardware driver for a Micro/sys inc. MPC-624 PC/104 board
|
/linux-4.4.14/drivers/mtd/ |
H A D | afs.c | 55 u32 checksum; /* Image checksum (inc. this struct) */
|
/linux-4.4.14/drivers/media/usb/dvb-usb-v2/ |
H A D | anysee.c | 210 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.4.14/fs/btrfs/ |
H A D | compression.c | 388 * inc the count before we submit the bio so btrfs_submit_compressed_write() 390 * we inc the count. Otherwise, the cb might get btrfs_submit_compressed_write() 679 * inc the count before we submit the bio so btrfs_submit_compressed_read() 681 * we inc the count. Otherwise, the cb might get btrfs_submit_compressed_read()
|
/linux-4.4.14/include/net/netfilter/ |
H A D | nf_conntrack.h | 81 * beware nf_ct_get() is different and don't inc refcnt.
|
/linux-4.4.14/include/uapi/linux/ |
H A D | jffs2.h | 144 jint32_t totlen; /* Total length of this node (inc data, etc.) */
|
/linux-4.4.14/arch/mips/jz4740/ |
H A D | board-qi_lb60.c | 6 * Copyright (c) 2009 Qi Hardware inc.,
|
/linux-4.4.14/sound/soc/intel/common/ |
H A D | sst-ipc.c | 61 /* wait for DSP completion (in all cases atm inc pending) */ tx_wait_done()
|
/linux-4.4.14/drivers/usb/misc/sisusbvga/ |
H A D | sisusb.c | 1658 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.4.14/block/ |
H A D | genhd.c | 131 int inc, end; disk_part_iter_next() local 143 inc = -1; disk_part_iter_next() 150 inc = 1; disk_part_iter_next() 155 for (; piter->idx != end; piter->idx += inc) { disk_part_iter_next() 169 piter->idx += inc; disk_part_iter_next()
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
H A D | iommu.c | 127 unsigned long start, end, inc; tce_invalidate_pSeries_sw() local 131 inc = L1_CACHE_BYTES; /* invalidate a cacheline of TCEs at a time */ tce_invalidate_pSeries_sw() 138 inc <<= 12; tce_invalidate_pSeries_sw() 143 end |= inc - 1; /* round up end to be different than start */ tce_invalidate_pSeries_sw() 148 start += inc; tce_invalidate_pSeries_sw()
|
/linux-4.4.14/sound/pci/asihpi/ |
H A D | hpi6000.c | 1179 /* 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.4.14/arch/powerpc/platforms/powernv/ |
H A D | pci-ioda.c | 1651 unsigned long start, end, inc; pnv_pci_ioda1_tce_invalidate() local 1662 inc = 128ull << shift; pnv_pci_ioda1_tce_invalidate() 1669 inc = 16; pnv_pci_ioda1_tce_invalidate() 1672 inc = 128; pnv_pci_ioda1_tce_invalidate() 1675 end |= inc - 1; /* round up end to be different than start */ pnv_pci_ioda1_tce_invalidate() 1683 start += inc; pnv_pci_ioda1_tce_invalidate() 1755 unsigned long start, end, inc; pnv_pci_ioda2_do_tce_invalidate() local 1765 inc = (0x1ull << shift); pnv_pci_ioda2_do_tce_invalidate() 1773 start += inc; pnv_pci_ioda2_do_tce_invalidate()
|
/linux-4.4.14/drivers/infiniband/core/ |
H A D | multicast.c | 228 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.4.14/sound/soc/intel/atom/sst/ |
H A D | sst_drv_interface.c | 277 dev_dbg(dev, "bytes copied %d inc by %ld\n", stream->cumm_bytes, bytes); sst_cdev_ack() 285 dev_dbg(dev, "bytes sent to fw %llu inc by %ld\n", sst_cdev_ack()
|
/linux-4.4.14/include/linux/mfd/da9055/ |
H A D | reg.h | 431 #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.4.14/drivers/media/usb/ttusb-budget/ |
H A D | dvb-ttusb-budget.c | 251 int inc; master_xfer() local 266 inc = 2; master_xfer() 273 inc = 1; master_xfer() 284 i += inc; master_xfer()
|
/linux-4.4.14/include/net/ |
H A D | ip_vs.h | 470 int (*register_app)(struct netns_ipvs *ipvs, struct ip_vs_app *inc); 472 void (*unregister_app)(struct netns_ipvs *ipvs, struct ip_vs_app *inc); 1312 int ip_vs_app_inc_get(struct ip_vs_app *inc); 1313 void ip_vs_app_inc_put(struct ip_vs_app *inc);
|