Searched refs:th (Results 126 - 150 of 187) sorted by relevance

12345678

/linux-master/drivers/net/ethernet/mellanox/mlx5/core/steering/
H A Ddr_icm_pool.c35 u64 th; member in struct:mlx5dr_icm_pool
343 return pool->hot_memory_size > pool->th;
549 pool->th = max_hot_size;
/linux-master/tools/perf/tests/shell/
H A Dtest_intel_pt.sh85 pthread_t th;
87 pthread_create(&th, NULL, threadfunc, NULL);
89 pthread_join(th, NULL);
/linux-master/net/sched/
H A Dcls_route.c486 unsigned int h, th; local
546 th = to_hash(fold->handle);
548 b = rtnl_dereference(head->table[th]);
/linux-master/tools/testing/selftests/powerpc/mm/
H A Dtlbie_test.c397 static void set_pthread_cpu(pthread_t th, int cpu) argument
404 pthread_setaffinity_np(th, sizeof(cpu_set_t), &run_cpu_mask);
/linux-master/drivers/w1/slaves/
H A Dw1_therm.c1826 s8 th = 0, tl = 0; local
1832 th = scratchpad.rom[2]; /* TH is byte 2 */
1840 return sprintf(buf, "%hd %hd\n", tl, th);
1851 s8 tl, th; /* 1 byte per value + temp ring order */ local
1899 th = int_to_short(temp);
1901 /* Reorder if required th and tl */
1902 if (tl > th)
1903 swap(tl, th);
1907 * (th : byte 2 - tl: byte 3)
1911 new_config_register[0] = th; /* Byt
[all...]
/linux-master/tools/testing/selftests/net/
H A Dtcp_mmap.c384 pthread_t th; local
392 res = pthread_create(&th, &attr, child_thread,
/linux-master/drivers/infiniband/hw/bnxt_re/
H A Dqplib_res.h521 u32 th)
525 key = BNXT_QPLIB_INIT_DBHDR(info->xid, DBC_DBC_TYPE_SRQ_ARM, th, info->toggle);
520 bnxt_qplib_srq_arm_db(struct bnxt_qplib_db_info *info, u32 th) argument
/linux-master/net/mptcp/
H A Doptions.c368 const struct tcphdr *th = tcp_hdr(skb); local
375 length = (th->doff * 4) - sizeof(struct tcphdr);
376 ptr = (const unsigned char *)(th + 1);
930 /* here we can process OoO, in-window pkts, only in-sequence 4th ack
1250 static void mptcp_set_rwin(struct tcp_sock *tp, struct tcphdr *th) argument
1294 if (unlikely(th->syn))
1304 th->window = htons(new_win);
1344 void mptcp_write_options(struct tcphdr *th, __be32 *ptr, struct tcp_sock *tp, argument
1636 mptcp_set_rwin(tp, th);
/linux-master/include/linux/
H A Dtcp.h29 static inline unsigned int __tcp_hdrlen(const struct tcphdr *th) argument
31 return th->doff * 4;
/linux-master/drivers/hwtracing/intel_th/
H A Dgth.c594 struct intel_th *th = to_intel_th(thdev); local
607 if (INTEL_TH_CAP(th, tscu_enable))
747 struct intel_th *th = dev_get_drvdata(dev->parent); local
801 ret = intel_th_output_enable(th, gth->output[i].port_type);
/linux-master/include/net/
H A Dmptcp.h148 void mptcp_write_options(struct tcphdr *th, __be32 *ptr, struct tcp_sock *tp,
/linux-master/net/netfilter/
H A Dnft_payload.c95 struct tcphdr *th, _tcph; local
97 th = skb_header_pointer(pkt->skb, thoff, sizeof(_tcph), &_tcph);
98 if (!th)
101 pkt->inneroff = thoff + __tcp_hdrlen(th);
/linux-master/sound/soc/uniphier/
H A Daio.h346 int aiodma_rb_set_threshold(struct uniphier_aio_sub *sub, u64 size, u32 th);
H A Daio-core.c1122 int aiodma_rb_set_threshold(struct uniphier_aio_sub *sub, u64 size, u32 th) argument
1126 if (size <= th)
1129 regmap_write(r, CDA2D_RBMXBTH(sub->swm->rb.map), th);
1130 regmap_write(r, CDA2D_RBMXRTH(sub->swm->rb.map), th);
/linux-master/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_main.c748 unsigned char *th; local
761 th = skb_inner_transport_header(skb);
763 th = skb_transport_header(skb);
767 hdrlen = (th - skb->data) + (((struct tcphdr *)th)->doff << 2);
/linux-master/drivers/perf/
H A Darm_pmuv3.c998 u32 th; local
1036 th = ATTR_CFG_GET_FLD(attr, threshold);
1037 if (th > threshold_max(cpu_pmu)) {
1042 if (IS_ENABLED(CONFIG_ARM64) && th) {
1043 config_base |= FIELD_PREP(ARMV8_PMU_EVTYPE_TH, th);
/linux-master/drivers/net/ethernet/qlogic/qede/
H A Dqede_fp.c892 struct tcphdr *th; local
895 th = tcp_hdr(skb);
897 th->check = ~tcp_v4_check(skb->len - skb_transport_offset(skb),
906 struct tcphdr *th; local
909 th = tcp_hdr(skb);
911 th->check = ~tcp_v6_check(skb->len - skb_transport_offset(skb),
1682 /* map last frags into 4th, 5th .... */
/linux-master/tools/power/pm-graph/
H A Dsleepgraph.py4291 th {border: 1px solid black;background:#222;color:white;}\n\
4382 th = '\t<th>{0}</th>\n'
4394 html += '<table>\n<tr>\n' + th.format('#') +\
4395 th.format('Mode') + th.format('Host') + th.format('Kernel') +\
4396 th.format('Test Time') + th
[all...]
/linux-master/net/netfilter/ipvs/
H A Dip_vs_core.c1066 struct tcphdr _tcph, *th; local
1068 th = skb_header_pointer(skb, nh_len, sizeof(_tcph), &_tcph);
1069 if (th == NULL)
1071 return th->rst;
1079 struct tcphdr _tcph, *th; local
1081 th = skb_header_pointer(skb, iph->len, sizeof(_tcph), &_tcph);
1082 if (th == NULL)
1084 return th->syn;
/linux-master/tools/perf/util/
H A Dcs-etm.c2677 struct thread *th; local
2688 th = machine__findnew_thread(&etm->session->machines.host,
2691 if (!th)
2694 thread__put(th);
2702 struct thread *th; local
2726 th = machine__findnew_thread(&etm->session->machines.host,
2729 if (!th)
2732 thread__put(th);
H A Dmachine.h172 void machine__remove_thread(struct machine *machine, struct thread *th);
/linux-master/arch/arm/lib/
H A Ddiv64.S115 @ (the 33th bit) this is a false positive so resume the loop.
/linux-master/drivers/gpu/drm/radeon/
H A Dr600_dpm.h141 int r600_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th);
/linux-master/net/core/
H A Dfilter.c7291 struct tcphdr *, th, u32, th_len)
7296 if (unlikely(!sk || th_len < sizeof(*th)))
7306 if (!th->ack || th->rst || th->syn)
7323 ret = __cookie_v4_check((struct iphdr *)iph, th);
7334 ret = __cookie_v6_check((struct ipv6hdr *)iph, th);
7364 struct tcphdr *, th, u32, th_len)
7370 if (unlikely(!sk || th_len < sizeof(*th) || th_len != th
[all...]
H A Dflow_dissector.c808 struct tcphdr *th, _th; local
813 th = __skb_header_pointer(skb, thoff, sizeof(_th), data, hlen, &_th);
814 if (!th)
817 if (unlikely(__tcp_hdrlen(th) < sizeof(_th)))
823 key_tcp->flags = (*(__be16 *) &tcp_flag_word(th) & htons(0x0FFF));

Completed in 331 milliseconds

12345678