| /linux/net/tls/ |
| H A D | tls_strp.c | 32 struct skb_shared_info *shinfo = skb_shinfo(strp->anchor); in tls_strp_anchor_free() 37 consume_skb(strp->anchor); in tls_strp_anchor_free() 38 strp->anchor = NULL; in tls_strp_anchor_free() 74 skb = tls_strp_skb_copy(strp, strp->anchor, strp->stm.offset, in tls_strp_msg_make_copy() 90 DEBUG_NET_WARN_ON_ONCE(!strp->anchor->decrypted); in tls_strp_msg_detach() 109 swap(strp->anchor, skb); in tls_strp_msg_detach() 133 strp->anchor = skb; in tls_strp_msg_cow() 147 struct skb_shared_info *shinfo = skb_shinfo(strp->anchor); in tls_strp_msg_hold() 159 __skb_queue_tail(dst, strp->anchor); in tls_strp_msg_hold() 160 strp->anchor = skb; in tls_strp_msg_hold() [all …]
|
| H A D | tls.h | 215 DEBUG_NET_WARN_ON_ONCE(!ctx->strp.msg_ready || !ctx->strp.anchor->len); in tls_strp_msg() 216 return ctx->strp.anchor; in tls_strp_msg()
|
| /linux/Documentation/driver-api/usb/ |
| H A D | anchors.rst | 4 What is anchor? 11 for them. The anchor is a data structure takes care of 18 There's no API to allocate an anchor. It is simply declared 25 Once it has no more URBs associated with it, the anchor can be 31 An association of URBs to an anchor is made by an explicit 35 all URBs associated with an anchor. 44 This function kills all URBs associated with an anchor. The URBs 51 All URBs of an anchor are unanchored en masse. 56 This function waits for all URBs associated with an anchor to finish 63 Returns true if no URBs are associated with an anchor. Locking [all …]
|
| /linux/fs/jfs/ |
| H A D | jfs_unicode.h | 24 wchar_t *anchor = ucs1; /* save the start of result string */ in UniStrcpy() local 27 return anchor; in UniStrcpy() 38 __le16 *anchor = ucs1; in UniStrncpy_le() local 46 return anchor; in UniStrncpy_le() 70 __le16 *anchor = ucs1; in UniStrncpy_to_le() local 78 return anchor; in UniStrncpy_to_le() 87 wchar_t *anchor = ucs1; in UniStrncpy_from_le() local 95 return anchor; in UniStrncpy_from_le()
|
| H A D | jfs_metapage.c | 86 struct meta_anchor *anchor = folio->private; in folio_to_mp() local 88 if (!anchor) in folio_to_mp() 90 return anchor->mp[offset >> L2PSIZE]; in folio_to_mp() 138 struct meta_anchor *anchor = folio->private; in inc_io() local 140 atomic_inc(&anchor->io_count); in inc_io() 146 struct meta_anchor *anchor = folio->private; in dec_io() local 148 if (anchor->status == BLK_STS_OK) in dec_io() 149 anchor->status = status; in dec_io() 151 if (atomic_dec_and_test(&anchor->io_count)) in dec_io() 152 handler(folio, anchor->status); in dec_io()
|
| /linux/fs/nls/ |
| H A D | nls_ucs2_utils.h | 52 wchar_t *anchor = ucs1; /* save a pointer to start of ucs1 */ in UniStrcat() local 59 return anchor; in UniStrcat() 101 wchar_t *anchor = ucs1; /* save the start of result string */ in UniStrcpy() local 105 return anchor; in UniStrcpy() 141 wchar_t *anchor = ucs1; /* save pointer to string 1 */ in UniStrncat() local 151 return anchor; in UniStrncat() 188 wchar_t *anchor = ucs1; in UniStrncpy() local 196 return anchor; in UniStrncpy() 204 wchar_t *anchor = ucs1; in UniStrncpy_le() local 212 return anchor; in UniStrncpy_le()
|
| /linux/lib/zstd/compress/ |
| H A D | zstd_double_fast.c | 117 const BYTE* anchor = istart; in ZSTD_compressBlock_doubleFast_noDict_generic() local 194 … ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, REPCODE1_TO_OFFBASE, mLength); in ZSTD_compressBlock_doubleFast_noDict_generic() 210 …while (((ip>anchor) & (matchl0>prefixLowest)) && (ip[-1] == matchl0[-1])) { ip--; matchl0--; mLeng… in ZSTD_compressBlock_doubleFast_noDict_generic() 252 return (size_t)(iend - anchor); in ZSTD_compressBlock_doubleFast_noDict_generic() 272 …while (((ip>anchor) & (matchs0>prefixLowest)) && (ip[-1] == matchs0[-1])) { ip--; matchs0--; mLeng… in ZSTD_compressBlock_doubleFast_noDict_generic() 291 … ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, OFFSET_TO_OFFBASE(offset), mLength); in ZSTD_compressBlock_doubleFast_noDict_generic() 296 anchor = ip; in ZSTD_compressBlock_doubleFast_noDict_generic() 317 ZSTD_storeSeq(seqStore, 0, anchor, iend, REPCODE1_TO_OFFBASE, rLength); in ZSTD_compressBlock_doubleFast_noDict_generic() 319 anchor = ip; in ZSTD_compressBlock_doubleFast_noDict_generic() 342 const BYTE* anchor = istart; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local [all …]
|
| H A D | zstd_fast.c | 208 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_noDict_generic() local 374 return (size_t)(iend - anchor); in ZSTD_compressBlock_fast_noDict_generic() 386 while (((ip0>anchor) & (match0>prefixStart)) && (ip0[-1] == match0[-1])) { in ZSTD_compressBlock_fast_noDict_generic() 397 ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength); in ZSTD_compressBlock_fast_noDict_generic() 400 anchor = ip0; in ZSTD_compressBlock_fast_noDict_generic() 416 ZSTD_storeSeq(seqStore, 0 /*litLen*/, anchor, iend, REPCODE1_TO_OFFBASE, rLength); in ZSTD_compressBlock_fast_noDict_generic() 417 anchor = ip0; in ZSTD_compressBlock_fast_noDict_generic() 495 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_dictMatchState_generic() local 571 … ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, REPCODE1_TO_OFFBASE, mLength); in ZSTD_compressBlock_fast_dictMatchState_generic() 585 while (((ip0 > anchor) & (dictMatch > dictStart)) in ZSTD_compressBlock_fast_dictMatchState_generic() [all …]
|
| H A D | zstd_ldm.c | 332 static void ZSTD_ldm_limitTableUpdate(ZSTD_MatchState_t* ms, const BYTE* anchor) in ZSTD_ldm_limitTableUpdate() argument 334 U32 const curr = (U32)(anchor - ms->window.base); in ZSTD_ldm_limitTableUpdate() 365 BYTE const* anchor = istart; in ZSTD_ldm_generateSequences_internal() local 375 return iend - anchor; in ZSTD_ldm_generateSequences_internal() 420 if (split < anchor) { in ZSTD_ldm_generateSequences_internal() 445 split, anchor, pMatch, lowMatchPtr, dictStart, dictEnd); in ZSTD_ldm_generateSequences_internal() 453 ZSTD_ldm_countBackwardsMatch(split, anchor, pMatch, lowPrefixPtr); in ZSTD_ldm_generateSequences_internal() 481 seq->litLength = (U32)(split - backwardMatchLength - anchor); in ZSTD_ldm_generateSequences_internal() 491 anchor = split + forwardMatchLength; in ZSTD_ldm_generateSequences_internal() 501 if (anchor > ip + hashed) { in ZSTD_ldm_generateSequences_internal() [all …]
|
| H A D | zstd_lazy.c | 1526 const BYTE* anchor = istart; in ZSTD_compressBlock_lazy_generic() local 1615 …size_t const step = ((size_t)(ip-anchor) >> kSearchStrength) + 1; /* jump faster over incompress… in ZSTD_compressBlock_lazy_generic() 1710 while ( ((start > anchor) & (start - OFFBASE_TO_OFFSET(offBase) > prefixLowest)) in ZSTD_compressBlock_lazy_generic() 1718 …while ((start>anchor) && (match>mStart) && (start[-1] == match[-1])) { start--; match--; matchLeng… in ZSTD_compressBlock_lazy_generic() 1724 { size_t const litLength = (size_t)(start - anchor); in ZSTD_compressBlock_lazy_generic() 1725 ZSTD_storeSeq(seqStore, litLength, anchor, iend, (U32)offBase, matchLength); in ZSTD_compressBlock_lazy_generic() 1726 anchor = ip = start + matchLength; in ZSTD_compressBlock_lazy_generic() 1749 ZSTD_storeSeq(seqStore, 0, anchor, iend, REPCODE1_TO_OFFBASE, matchLength); in ZSTD_compressBlock_lazy_generic() 1751 anchor = ip; in ZSTD_compressBlock_lazy_generic() 1764 ZSTD_storeSeq(seqStore, 0, anchor, iend, REPCODE1_TO_OFFBASE, matchLength); in ZSTD_compressBlock_lazy_generic() [all …]
|
| H A D | zstd_opt.c | 1088 const BYTE* anchor = istart; in ZSTD_compressBlock_opt_generic() local 1124 { U32 const litlen = (U32)(ip - anchor); in ZSTD_compressBlock_opt_generic() 1352 assert(lastStretch.litlen == (ip - anchor) + last_pos); in ZSTD_compressBlock_opt_generic() 1420 (int)(anchor - istart), (unsigned)llen, (unsigned)mlen); in ZSTD_compressBlock_opt_generic() 1424 … ip = anchor + llen; /* last "sequence" is a bunch of literals => don't progress anchor */ in ZSTD_compressBlock_opt_generic() 1428 assert(anchor + llen <= iend); in ZSTD_compressBlock_opt_generic() 1429 ZSTD_updateStats(optStatePtr, llen, anchor, offBase, mlen); in ZSTD_compressBlock_opt_generic() 1430 ZSTD_storeSeq(seqStore, llen, anchor, iend, offBase, mlen); in ZSTD_compressBlock_opt_generic() 1431 anchor += advance; in ZSTD_compressBlock_opt_generic() 1432 ip = anchor; in ZSTD_compressBlock_opt_generic() [all …]
|
| /linux/scripts/ |
| H A D | generate_builtin_ranges.awk | 56 # may need to insert an anchor record later that must be at the start of the 58 # So, we use (addr << 1) + 1 to allow a possible anchor record to be placed at 92 # We collect the address of the anchor (or first symbol in the section if there 93 # is no explicit anchor) to allow users of the range data to calculate address 127 # (LLD) Convert an anchor record from lld format to ld format. 133 ARGIND == 2 && map_is_lld && !anchor && NF == 7 && raw_addr == "0x"$1 && $6 == "=" && $7 == "." { 152 # We only care about these while processing a section for which no anchor has 159 ARGIND == 2 && map_is_lld && sect && !anchor && NF == 5 && $5 ~ /^[_A-Za-z][_A-Za-z0-9]*$/ { 205 # be used to identify an anchor record. 229 anchor [all...] |
| /linux/drivers/infiniband/hw/mlx5/ |
| H A D | fs.c | 2595 if (ft_prio->anchor.ft) in steering_anchor_create_ft() 2612 ft_prio->anchor.ft = ft; in steering_anchor_create_ft() 2619 if (ft_prio->anchor.ft) { in steering_anchor_destroy_ft() 2620 mlx5_destroy_flow_table(ft_prio->anchor.ft); in steering_anchor_destroy_ft() 2621 ft_prio->anchor.ft = NULL; in steering_anchor_destroy_ft() 2633 if (ft_prio->anchor.fg_drop) in steering_anchor_create_fg_drop() 2643 fg = mlx5_create_flow_group(ft_prio->anchor.ft, flow_group_in); in steering_anchor_create_fg_drop() 2649 ft_prio->anchor.fg_drop = fg; in steering_anchor_create_fg_drop() 2660 if (ft_prio->anchor.fg_drop) { in steering_anchor_destroy_fg_drop() 2661 mlx5_destroy_flow_group(ft_prio->anchor.fg_drop); in steering_anchor_destroy_fg_drop() [all …]
|
| /linux/drivers/mtd/ubi/ |
| H A D | fastmap-wl.c | 75 struct ubi_wl_entry *ubi_wl_get_fm_peb(struct ubi_device *ubi, int anchor) in ubi_wl_get_fm_peb() argument 82 if (anchor) in ubi_wl_get_fm_peb() 442 struct ubi_wl_entry *anchor; in ubi_ensure_anchor_pebs() local 453 anchor = ubi_wl_get_fm_peb(ubi, 1); in ubi_ensure_anchor_pebs() 454 if (anchor) { in ubi_ensure_anchor_pebs() 455 ubi->fm_anchor = anchor; in ubi_ensure_anchor_pebs()
|
| /linux/drivers/net/ethernet/mellanox/mlx5/core/steering/sws/ |
| H A D | dr_ste_v3.c | 83 u32 reformat_id, u8 anchor, in dr_ste_v3_set_insert_hdr() argument 89 start_anchor, anchor); in dr_ste_v3_set_insert_hdr() 106 u8 anchor, u8 offset, int size) in dr_ste_v3_set_remove_hdr() argument 111 start_anchor, anchor); in dr_ste_v3_set_remove_hdr()
|
| H A D | dr_ste_v1.h | 160 u8 anchor, u8 offset, int size); 161 void dr_ste_v1_set_remove_hdr(u8 *hw_ste_p, u8 *s_action, u8 anchor,
|
| H A D | dr_ste.h | 214 u8 anchor, u8 offset, int size); 215 void (*set_remove_hdr)(u8 *hw_ste_p, u8 *s_action, u8 anchor,
|
| /linux/Documentation/input/ |
| H A D | shape.svg | 33 …0" font-family="sans-serif" font-size="144px" stroke-width=".025in" text-anchor="middle" xml:space… 36 …0" font-family="sans-serif" font-size="144px" stroke-width=".025in" text-anchor="middle" xml:space… 37 …0" font-family="sans-serif" font-size="144px" stroke-width=".025in" text-anchor="middle" xml:space… 38 …0" font-family="sans-serif" font-size="144px" stroke-width=".025in" text-anchor="end" xml:space="p…
|
| H A D | interactive.svg | 18 …ans-serif" font-size="144px" stroke="#000000" stroke-width=".025in" text-anchor="middle" xml:space…
|
| /linux/drivers/usb/serial/ |
| H A D | opticon.c | 46 struct usb_anchor anchor; member 159 usb_kill_anchored_urbs(&priv->anchor); in opticon_close() 238 usb_anchor_urb(urb, &priv->anchor); in opticon_write() 362 init_usb_anchor(&priv->anchor); in opticon_port_probe()
|
| /linux/Documentation/filesystems/ |
| H A D | udf.rst | 63 anchor= Override standard anchor location. (default= 256)
|
| /linux/drivers/net/ethernet/mellanox/mlx5/core/steering/hws/ |
| H A D | mlx5hws.h | 191 u8 anchor; member 204 u8 anchor; member
|
| H A D | action.c | 501 attr->insert_header.insert_anchor = action->reformat.anchor; in hws_action_fill_stc_attr() 540 attr->remove_words.start_anchor = action->remove_header.anchor; in hws_action_fill_stc_attr() 948 action[i].reformat.anchor = MLX5_HEADER_ANCHOR_PACKET_START; in hws_action_handle_insert_with_ptr() 1490 action[i].reformat.anchor = hdrs[i].anchor; in mlx5hws_action_create_insert_header() 1540 action->remove_header.anchor = attr->anchor; in mlx5hws_action_create_remove_header()
|
| /linux/fs/udf/ |
| H A D | super.c | 224 unsigned int anchor; member 609 uopt->anchor = result.uint_32; in udf_parse_param() 1864 struct anchorVolDescPtr *anchor; in udf_load_sequence() local 1868 anchor = (struct anchorVolDescPtr *)bh->b_data; in udf_load_sequence() 1871 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation); in udf_load_sequence() 1872 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength); in udf_load_sequence() 1877 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation); in udf_load_sequence() 1878 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength); in udf_load_sequence() 2032 sbi->s_anchor = uopt->anchor; in udf_load_vrs()
|
| /linux/drivers/char/xillybus/ |
| H A D | xillyusb.c | 105 struct usb_anchor anchor; member 458 usb_kill_anchored_urbs(&ep->anchor); in endpoint_quiesce() 509 init_usb_anchor(&ep->anchor); in endpoint_alloc() 736 usb_anchor_urb(urb, &ep->anchor); in try_queue_bulk_in() 840 usb_anchor_urb(urb, &ep->anchor); in try_queue_bulk_out()
|