Home
last modified time | relevance | path

Searched refs:nth (Results 1 – 25 of 46) sorted by relevance

12

/OK3568_Linux_fs/kernel/net/netfilter/
H A Dnf_synproxy_core.c444 struct iphdr *niph, struct tcphdr *nth, in synproxy_send_tcp() argument
447 nth->check = ~tcp_v4_check(tcp_hdr_size, niph->saddr, niph->daddr, 0); in synproxy_send_tcp()
449 nskb->csum_start = (unsigned char *)nth - nskb->head; in synproxy_send_tcp()
476 struct tcphdr *nth; in synproxy_send_client_synack() local
482 tcp_hdr_size = sizeof(*nth) + synproxy_options_size(opts); in synproxy_send_client_synack()
492 nth = skb_put(nskb, tcp_hdr_size); in synproxy_send_client_synack()
493 nth->source = th->dest; in synproxy_send_client_synack()
494 nth->dest = th->source; in synproxy_send_client_synack()
495 nth->seq = htonl(__cookie_v4_init_sequence(iph, th, &mss)); in synproxy_send_client_synack()
496 nth->ack_seq = htonl(ntohl(th->seq) + 1); in synproxy_send_client_synack()
[all …]
H A Dxt_statistic.c43 nval = (oval == info->u.nth.every) ? 0 : oval + 1; in statistic_mt()
64 atomic_set(&info->master->count, info->u.nth.count); in statistic_mt_check()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/algorithms/
H A Dnth_element.hpp47 void nth_element(RandomIt first, RandomIt nth, RandomIt last)
49 std::nth_element(first, nth, last);
53 void nth_element(RandomIt first, RandomIt nth, RandomIt last, Compare comp)
55 std::nth_element(first, nth, last, comp);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/kdbush/0.1.1-1/include/
H A Dkdbush.hpp13 struct nth { struct
23 using TNumber = decltype(nth<0, TPoint>::get(std::declval<TPoint>()));
25 std::is_same<TNumber, decltype(nth<1, TPoint>::get(std::declval<TPoint>()))>::value,
59 points.emplace_back(nth<0, TPoint>::get(*p), nth<1, TPoint>::get(*p)); in fill()
/OK3568_Linux_fs/kernel/drivers/clk/
H A Dclk-cs2000-cp.c23 #define Ratio_Add(x, nth) (6 + (x * 4) + (nth)) argument
24 #define Ratio_Val(x, nth) ((x >> (24 - (8 * nth))) & 0xFF) argument
25 #define Val_Ratio(x, nth) ((x & 0xFF) << (24 - (8 * nth))) argument
/OK3568_Linux_fs/buildroot/package/sofia-sip/
H A Dsofia-sip.mk24 --enable-nth \
29 --disable-nth \
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dvidioc-dbg-g-register.rst66 selects the nth non-sub-device chip on the TV card. The number zero
72 selects the nth sub-device.
145 - Match the nth chip on the card, zero for the bridge chip. Does not
149 - Match the nth sub-device.
H A Dvidioc-dbg-g-chip-info.rst57 selects the nth bridge 'chip' on the TV card. You can enumerate all
65 selects the nth sub-device. This allows you to enumerate over all
141 - Match the nth chip on the card, zero for the bridge chip. Does not
145 - Match the nth sub-device.
/OK3568_Linux_fs/kernel/drivers/net/usb/
H A Dcdc_ncm.c1189 } nth; in cdc_ncm_fill_tx_frame() local
1262 nth.nth16 = skb_put_zero(skb_out, sizeof(struct usb_cdc_ncm_nth16)); in cdc_ncm_fill_tx_frame()
1263 nth.nth16->dwSignature = cpu_to_le32(USB_CDC_NCM_NTH16_SIGN); in cdc_ncm_fill_tx_frame()
1264 nth.nth16->wHeaderLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_nth16)); in cdc_ncm_fill_tx_frame()
1265 nth.nth16->wSequence = cpu_to_le16(ctx->tx_seq++); in cdc_ncm_fill_tx_frame()
1268 nth.nth32 = skb_put_zero(skb_out, sizeof(struct usb_cdc_ncm_nth32)); in cdc_ncm_fill_tx_frame()
1269 nth.nth32->dwSignature = cpu_to_le32(USB_CDC_NCM_NTH32_SIGN); in cdc_ncm_fill_tx_frame()
1270 nth.nth32->wHeaderLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_nth32)); in cdc_ncm_fill_tx_frame()
1271 nth.nth32->wSequence = cpu_to_le16(ctx->tx_seq++); in cdc_ncm_fill_tx_frame()
1389 nth.nth16 = (struct usb_cdc_ncm_nth16 *)skb_out->data; in cdc_ncm_fill_tx_frame()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dfill_bucket.cpp14 template <> struct nth<0, mbgl::GeometryCoordinate> { struct
18 template <> struct nth<1, mbgl::GeometryCoordinate> { struct
H A Dfill_extrusion_bucket.cpp16 struct nth<0, mbgl::GeometryCoordinate> { struct
23 struct nth<1, mbgl::GeometryCoordinate> { struct
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/earcut/0.12.4/include/mapbox/
H A Dearcut.hpp13 template <std::size_t I, typename T> struct nth { struct
195 const double p20 = util::nth<0, Point>::get(p2); in linkedList()
196 const double p10 = util::nth<0, Point>::get(p1); in linkedList()
197 const double p11 = util::nth<1, Point>::get(p1); in linkedList()
198 const double p21 = util::nth<1, Point>::get(p2); in linkedList()
740 …Node* p = nodes.construct(static_cast<N>(i), util::nth<0, Point>::get(pt), util::nth<1, Point>::ge… in insertNode()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/earcut/
H A Dearcut.hpp37 template <std::size_t I, typename T> struct nth { struct
225 const double p20 = util::nth<0, Point>::get(p2); in linkedList()
226 const double p10 = util::nth<0, Point>::get(p1); in linkedList()
227 const double p11 = util::nth<1, Point>::get(p1); in linkedList()
228 const double p21 = util::nth<1, Point>::get(p2); in linkedList()
803 …Node* p = nodes.construct(static_cast<N>(i), util::nth<0, Point>::get(pt), util::nth<1, Point>::ge… in insertNode()
/OK3568_Linux_fs/kernel/include/uapi/linux/netfilter/
H A Dxt_statistic.h32 } nth; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/netfilter/
H A Dxt_statistic.h32 } nth; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/netfilter/
H A Dxt_statistic.h32 } nth; member
/OK3568_Linux_fs/kernel/net/l2tp/
H A Dl2tp_core.h226 struct l2tp_tunnel *l2tp_tunnel_get_nth(const struct net *net, int nth);
231 struct l2tp_session *l2tp_session_get_nth(struct l2tp_tunnel *tunnel, int nth);
H A Dl2tp_core.c225 struct l2tp_tunnel *l2tp_tunnel_get_nth(const struct net *net, int nth) in l2tp_tunnel_get_nth() argument
233 if (++count > nth && in l2tp_tunnel_get_nth()
288 struct l2tp_session *l2tp_session_get_nth(struct l2tp_tunnel *tunnel, int nth) in l2tp_session_get_nth() argument
297 if (++count > nth) { in l2tp_session_get_nth()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/supercluster/0.2.2/include/
H A Dsupercluster.hpp46 struct nth<0, Cluster> { struct
52 struct nth<1, Cluster> { struct
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dconfigfs-spear-pcie-gadget17 For nth PCIe Device Controller /config/pcie-gadget.n/:
H A Dsysfs-bus-usb-devices-usbsevseg42 To set the nth decimal place, give this field
H A Dsysfs-kernel-livepatch67 sympos number corresponding to the nth occurrence of the symbol
/OK3568_Linux_fs/kernel/Documentation/fault-injection/
H A Dfault-injection.rst192 - /proc/<pid>/fail-nth,
193 /proc/self/task/<tid>/fail-nth:
391 Systematic faults using fail-nth
414 sprintf(buf, "/proc/self/task/%ld/fail-nth", syscall(SYS_gettid));
/OK3568_Linux_fs/kernel/Documentation/usb/
H A Dmisc_usbsevseg.rst47 to set the nth decimal place calculate 10 ** n
/OK3568_Linux_fs/kernel/drivers/usb/renesas_usbhs/
H A Dmod_gadget.c410 int nth = le16_to_cpu(ctrl->wIndex) & USB_ENDPOINT_NUMBER_MASK; in usbhsg_recip_run_handle() local
416 uep = usbhsg_gpriv_to_nth_uep(gpriv, nth); in usbhsg_recip_run_handle()
443 dev_dbg(dev, "%s (pipe %d :%s)\n", handler->name, nth, msg); in usbhsg_recip_run_handle()

12