Home
last modified time | relevance | path

Searched refs:tail (Results 451 - 475 of 2278) sorted by relevance

1...<<11121314151617181920>>...92

/kernel/linux/linux-5.10/include/uapi/rdma/
H A Drvt-abi.h24 * This structure is used to contain the head pointer, tail pointer,
32 RDMA_ATOMIC_UAPI(__u32, tail);
51 * This structure is used to contain the head pointer, tail pointer,
63 RDMA_ATOMIC_UAPI(__u32, tail);
/kernel/linux/linux-6.6/drivers/staging/rtl8712/
H A Drtl871x_event.h87 /*volatile*/ int tail; member
96 /*volatile*/ int tail; member
/kernel/linux/linux-6.6/include/uapi/rdma/
H A Drvt-abi.h24 * This structure is used to contain the head pointer, tail pointer,
32 RDMA_ATOMIC_UAPI(__u32, tail);
51 * This structure is used to contain the head pointer, tail pointer,
63 RDMA_ATOMIC_UAPI(__u32, tail);
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/rdma/
H A Drvt-abi.h33 RDMA_ATOMIC_UAPI(__u32, tail);
44 RDMA_ATOMIC_UAPI(__u32, tail);
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/rdma/
H A Drvt-abi.h33 RDMA_ATOMIC_UAPI(__u32, tail);
44 RDMA_ATOMIC_UAPI(__u32, tail);
/third_party/musl/src/signal/riscv32/
H A Dsigsetjmp.s8 tail setjmp
23 tail __sigsetjmp_tail
/third_party/musl/src/signal/riscv64/
H A Dsigsetjmp.s8 tail setjmp
23 tail __sigsetjmp_tail
/third_party/skia/gn/
H A Ddehydrate_sksl.py19 head, tail = os.path.split(noExt)
22 target = os.path.join(targetDir, tail)
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
H A Di915_perf.c214 #define OA_TAKEN(tail, head) ((tail - head) & (OA_BUFFER_SIZE - 1))
219 * There's a HW race condition between OA unit tail pointer register updates and
220 * writes to memory whereby the tail pointer can sometimes get ahead of what's
225 * by checking for a zeroed report-id field in tail reports, we want to account
230 * in the OA buffer, starting from the tail reported by the HW until we find a
241 * Note for posterity: previously the driver used to define an effective tail
242 * pointer that lagged the real pointer by a 'tail margin' measured in bytes
300 * be used as a mask to align the OA tail pointer.
438 * oa_buffer_check_unlocked - check for data and update tail pt
493 u32 head, tail, aged_tail; oa_buffer_check_unlocked() local
656 u32 head, tail; gen8_append_oa_reports() local
953 u32 head, tail; gen7_append_oa_reports() local
[all...]
/kernel/linux/linux-5.10/net/mac80211/
H A Dwpa.c38 int tail; in ieee80211_tx_h_michael_mic_add() local
66 tail = MICHAEL_MIC_LEN; in ieee80211_tx_h_michael_mic_add()
68 tail += IEEE80211_TKIP_ICV_LEN; in ieee80211_tx_h_michael_mic_add()
70 if (WARN(skb_tailroom(skb) < tail || in ieee80211_tx_h_michael_mic_add()
72 "mmic: not enough head/tail (%d/%d,%d/%d)\n", in ieee80211_tx_h_michael_mic_add()
74 skb_tailroom(skb), tail)) in ieee80211_tx_h_michael_mic_add()
200 int len, tail; in tkip_encrypt_skb() local
215 tail = 0; in tkip_encrypt_skb()
217 tail = IEEE80211_TKIP_ICV_LEN; in tkip_encrypt_skb()
219 if (WARN_ON(skb_tailroom(skb) < tail || in tkip_encrypt_skb()
412 int hdrlen, len, tail; ccmp_encrypt_skb() local
648 int hdrlen, len, tail; gcmp_encrypt_skb() local
[all...]
/kernel/linux/linux-6.6/net/mac80211/
H A Dwpa.c38 int tail; in ieee80211_tx_h_michael_mic_add() local
66 tail = MICHAEL_MIC_LEN; in ieee80211_tx_h_michael_mic_add()
68 tail += IEEE80211_TKIP_ICV_LEN; in ieee80211_tx_h_michael_mic_add()
70 if (WARN(skb_tailroom(skb) < tail || in ieee80211_tx_h_michael_mic_add()
72 "mmic: not enough head/tail (%d/%d,%d/%d)\n", in ieee80211_tx_h_michael_mic_add()
74 skb_tailroom(skb), tail)) in ieee80211_tx_h_michael_mic_add()
200 int len, tail; in tkip_encrypt_skb() local
215 tail = 0; in tkip_encrypt_skb()
217 tail = IEEE80211_TKIP_ICV_LEN; in tkip_encrypt_skb()
219 if (WARN_ON(skb_tailroom(skb) < tail || in tkip_encrypt_skb()
424 int hdrlen, len, tail; ccmp_encrypt_skb() local
624 int hdrlen, len, tail; gcmp_encrypt_skb() local
[all...]
/third_party/node/deps/npm/node_modules/lru-cache/dist/commonjs/
H A Dindex.js217 #tail;
249 get tail() {
250 return c.#tail;
338 this.#tail = 0;
547 for (let i = this.#tail; true;) {
572 if (i === this.#tail) {
854 ? this.#tail
863 this.#next[this.#tail] = index;
864 this.#prev[index] = this.#tail;
865 this.#tail
[all...]
/third_party/node/deps/npm/node_modules/lru-cache/dist/esm/
H A Dindex.js214 #tail;
246 get tail() {
247 return c.#tail;
335 this.#tail = 0;
544 for (let i = this.#tail; true;) {
569 if (i === this.#tail) {
851 ? this.#tail
860 this.#next[this.#tail] = index;
861 this.#prev[index] = this.#tail;
862 this.#tail
[all...]
/third_party/lwip/src/apps/mqtt/
H A Dmqtt.c309 * @param tail Pointer to request queue tail pointer
313 mqtt_append_request(struct mqtt_request_t **tail, struct mqtt_request_t *r) in mqtt_append_request() argument
319 LWIP_ASSERT("mqtt_append_request: tail != NULL", tail != NULL); in mqtt_append_request()
322 for (iter = *tail; iter != NULL; iter = iter->next) { in mqtt_append_request()
330 *tail = r; in mqtt_append_request()
351 * @param tail Pointer to request queue tail pointer
356 mqtt_take_request(struct mqtt_request_t **tail, u16_ argument
391 mqtt_request_time_elapsed(struct mqtt_request_t **tail, u8_t t) mqtt_request_time_elapsed() argument
420 mqtt_clear_requests(struct mqtt_request_t **tail) mqtt_clear_requests() argument
[all...]
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/
H A Dlf_ring.h40 volatile FILLP_ULONG tail; member
45 volatile FILLP_ULONG tail; member
/kernel/linux/linux-5.10/scripts/
H A Dextract-ikconfig22 tail -c+$(($pos+8)) "$1" | zcat > $tmp1 2> /dev/null
36 tail -c+$pos "$img" | $3 > $tmp2 2> /dev/null
/kernel/linux/linux-5.10/include/asm-generic/
H A Dqspinlock_types.h30 u16 tail; member
34 u16 tail; member
58 * 16-17: tail index
59 * 18-31: tail cpu (+1)
64 * 9-10: tail index
65 * 11-31: tail cpu (+1)
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/hive_isp_css_common/
H A Ddebug_global.h61 u32 tail; member
76 u32 tail; member
/kernel/linux/linux-6.6/include/asm-generic/
H A Dqspinlock_types.h30 u16 tail; member
34 u16 tail; member
58 * 16-17: tail index
59 * 18-31: tail cpu (+1)
64 * 9-10: tail index
65 * 11-31: tail cpu (+1)
/kernel/linux/linux-6.6/include/linux/
H A Drcu_segcblist.h23 struct rcu_head **tail; member
27 #define RCU_CBLIST_INITIALIZER(n) { .head = NULL, .tail = &n.head }
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/hive_isp_css_common/
H A Ddebug_global.h61 u32 tail; member
76 u32 tail; member
/kernel/linux/linux-6.6/scripts/
H A Dextract-ikconfig22 tail -c+$(($pos+8)) "$1" | zcat > $tmp1 2> /dev/null
36 tail -c+$pos "$img" | $3 > $tmp2 2> /dev/null
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha.h55 SHA_CTX head, tail, md; member
60 SHA256_CTX head, tail, md; member
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha.h55 SHA_CTX head, tail, md; member
60 SHA256_CTX head, tail, md; member
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/
H A Dhclge_mbx.h165 u32 tail; member
173 (arq.tail = (arq.tail + 1) % HCLGE_MBX_MAX_ARQ_MSG_NUM)

Completed in 13 milliseconds

1...<<11121314151617181920>>...92