Home
last modified time | relevance | path

Searched refs:more (Results 1 - 25 of 289) sorted by relevance

12345678910>>...12

/kernel/linux/linux-5.10/arch/um/drivers/
H A Dslip_common.c10 if(slip->more > 0){ in slip_proto_read()
12 while(i < slip->more){ in slip_proto_read()
18 slip->more - i); in slip_proto_read()
19 slip->more = slip->more - i; in slip_proto_read()
23 slip->more = 0; in slip_proto_read()
39 slip->more = n - (i + 1); in slip_proto_read()
H A Dmconsole_user.c127 int err, int more) in mconsole_reply_len()
145 if (len == total) reply.more = more; in mconsole_reply_len()
146 else reply.more = 1; in mconsole_reply_len()
165 int mconsole_reply(struct mc_request *req, const char *str, int err, int more) in mconsole_reply() argument
167 return mconsole_reply_len(req, str, strlen(str), err, more); in mconsole_reply()
126 mconsole_reply_len(struct mc_request *req, const char *str, int total, int err, int more) mconsole_reply_len() argument
H A Dmconsole.h30 u32 more; member
73 int len, int err, int more);
75 int more);
/kernel/linux/linux-6.6/arch/um/drivers/
H A Dslip_common.c10 if(slip->more > 0){ in slip_proto_read()
12 while(i < slip->more){ in slip_proto_read()
18 slip->more - i); in slip_proto_read()
19 slip->more = slip->more - i; in slip_proto_read()
23 slip->more = 0; in slip_proto_read()
39 slip->more = n - (i + 1); in slip_proto_read()
H A Dmconsole_user.c127 int err, int more) in mconsole_reply_len()
145 if (len == total) reply.more = more; in mconsole_reply_len()
146 else reply.more = 1; in mconsole_reply_len()
165 int mconsole_reply(struct mc_request *req, const char *str, int err, int more) in mconsole_reply() argument
167 return mconsole_reply_len(req, str, strlen(str), err, more); in mconsole_reply()
126 mconsole_reply_len(struct mc_request *req, const char *str, int total, int err, int more) mconsole_reply_len() argument
H A Dmconsole.h30 u32 more; member
73 int len, int err, int more);
75 int more);
/kernel/linux/linux-5.10/net/tipc/
H A Dtrace.h129 int tipc_skb_dump(struct sk_buff *skb, bool more, char *buf);
130 int tipc_list_dump(struct sk_buff_head *list, bool more, char *buf);
133 int tipc_node_dump(struct tipc_node *n, bool more, char *buf);
138 TP_PROTO(struct sk_buff *skb, bool more, const char *header),
140 TP_ARGS(skb, more, header),
144 __dynamic_array(char, buf, (more) ? SKB_LMAX : SKB_LMIN)
149 tipc_skb_dump(skb, more, __get_str(buf));
157 TP_PROTO(struct sk_buff *skb, bool more, const char *header), \
158 TP_ARGS(skb, more, header))
165 TP_PROTO(struct sk_buff_head *list, bool more, cons
[all...]
/kernel/linux/linux-6.6/net/tipc/
H A Dtrace.h129 int tipc_skb_dump(struct sk_buff *skb, bool more, char *buf);
130 int tipc_list_dump(struct sk_buff_head *list, bool more, char *buf);
133 int tipc_node_dump(struct tipc_node *n, bool more, char *buf);
138 TP_PROTO(struct sk_buff *skb, bool more, const char *header),
140 TP_ARGS(skb, more, header),
144 __dynamic_array(char, buf, (more) ? SKB_LMAX : SKB_LMIN)
149 tipc_skb_dump(skb, more, __get_str(buf));
157 TP_PROTO(struct sk_buff *skb, bool more, const char *header), \
158 TP_ARGS(skb, more, header))
165 TP_PROTO(struct sk_buff_head *list, bool more, cons
[all...]
/kernel/linux/linux-5.10/crypto/
H A Dalgif_hash.c27 bool more; member
77 if (!ctx->more) { in hash_sendmsg()
86 ctx->more = false; in hash_sendmsg()
114 ctx->more = msg->msg_flags & MSG_MORE; in hash_sendmsg()
115 if (!ctx->more) { in hash_sendmsg()
150 } else if (!ctx->more) in hash_sendpage()
156 if (ctx->more) in hash_sendpage()
161 if (!ctx->more) { in hash_sendpage()
175 ctx->more = flags & MSG_MORE; in hash_sendpage()
206 if (!result && !ctx->more) { in hash_recvmsg()
241 bool more; hash_accept() local
[all...]
/kernel/linux/linux-5.10/arch/mips/include/uapi/asm/
H A Dbitfield.h5 * for more details.
16 #define __BITFIELD_FIELD(field, more) \
18 more
22 #define __BITFIELD_FIELD(field, more) \
23 more \
/kernel/linux/linux-6.6/arch/mips/include/uapi/asm/
H A Dbitfield.h5 * for more details.
16 #define __BITFIELD_FIELD(field, more) \
18 more
22 #define __BITFIELD_FIELD(field, more) \
23 more \
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/asm-mips/asm/
H A Dbitfield.h22 #define __BITFIELD_FIELD(field,more) field; more
24 #define __BITFIELD_FIELD(field,more) more field;
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/asm-mips/asm/
H A Dbitfield.h22 #define __BITFIELD_FIELD(field,more) field; more
24 #define __BITFIELD_FIELD(field,more) more field;
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/
H A Djr3_pci.c335 int more = 1; in jr3_check_firmware() local
343 while (more) { in jr3_check_firmware()
347 more = more && read_idm_word(data, size, &pos, &count); in jr3_check_firmware()
348 if (more && count == 0xffff) in jr3_check_firmware()
351 more = more && read_idm_word(data, size, &pos, &addr); in jr3_check_firmware()
352 while (more && count > 0) { in jr3_check_firmware()
355 more = more in jr3_check_firmware()
369 int more = 1; jr3_write_firmware() local
[all...]
/kernel/linux/linux-6.6/drivers/comedi/drivers/
H A Djr3_pci.c321 int more = 1; in jr3_check_firmware() local
329 while (more) { in jr3_check_firmware()
333 more = more && read_idm_word(data, size, &pos, &count); in jr3_check_firmware()
334 if (more && count == 0xffff) in jr3_check_firmware()
337 more = more && read_idm_word(data, size, &pos, &addr); in jr3_check_firmware()
338 while (more && count > 0) { in jr3_check_firmware()
341 more = more in jr3_check_firmware()
355 int more = 1; jr3_write_firmware() local
[all...]
/kernel/linux/linux-6.6/crypto/
H A Dalgif_hash.c27 bool more; member
78 continuing = ctx->more; in hash_sendmsg()
164 ctx->more = msg->msg_flags & MSG_MORE; in hash_sendmsg()
175 ctx->more = false; in hash_sendmsg()
202 if (!result && !ctx->more) { in hash_recvmsg()
209 if (!result || ctx->more) { in hash_recvmsg()
210 ctx->more = false; in hash_recvmsg()
238 bool more; in hash_accept() local
248 more = ctx->more; in hash_accept()
[all...]
/kernel/linux/linux-5.10/include/crypto/
H A Dscatterwalk.h78 unsigned int more) in scatterwalk_pagedone()
92 if (more && walk->offset >= walk->sg->offset + walk->sg->length) in scatterwalk_pagedone()
97 int more) in scatterwalk_done()
99 if (!more || walk->offset >= walk->sg->offset + walk->sg->length || in scatterwalk_done()
101 scatterwalk_pagedone(walk, out, more); in scatterwalk_done()
77 scatterwalk_pagedone(struct scatter_walk *walk, int out, unsigned int more) scatterwalk_pagedone() argument
96 scatterwalk_done(struct scatter_walk *walk, int out, int more) scatterwalk_done() argument
/kernel/linux/linux-6.6/include/crypto/
H A Dscatterwalk.h73 unsigned int more) in scatterwalk_pagedone()
82 if (more && walk->offset >= walk->sg->offset + walk->sg->length) in scatterwalk_pagedone()
87 int more) in scatterwalk_done()
89 if (!more || walk->offset >= walk->sg->offset + walk->sg->length || in scatterwalk_done()
91 scatterwalk_pagedone(walk, out, more); in scatterwalk_done()
72 scatterwalk_pagedone(struct scatter_walk *walk, int out, unsigned int more) scatterwalk_pagedone() argument
86 scatterwalk_done(struct scatter_walk *walk, int out, int more) scatterwalk_done() argument
/kernel/linux/linux-5.10/arch/powerpc/mm/
H A Dhugetlbpage.c77 * For more details look for comment in __pte_alloc(). in __hugepte_alloc()
366 unsigned long more; in hugetlb_free_pmd_range() local
386 * there may be more than one entry at this level for a in hugetlb_free_pmd_range()
390 more = addr + (1 << hugepd_shift(*(hugepd_t *)pmd)); in hugetlb_free_pmd_range()
391 if (more > next) in hugetlb_free_pmd_range()
392 next = more; in hugetlb_free_pmd_range()
433 unsigned long more; in hugetlb_free_pud_range() local
436 * there may be more than one entry at this level for a in hugetlb_free_pud_range()
440 more = addr + (1 << hugepd_shift(*(hugepd_t *)pud)); in hugetlb_free_pud_range()
441 if (more > nex in hugetlb_free_pud_range()
503 unsigned long more; hugetlb_free_pgd_range() local
[all...]
/kernel/linux/linux-6.6/arch/powerpc/mm/
H A Dhugetlbpage.c78 * For more details look for comment in __pte_alloc(). in __hugepte_alloc()
304 /* Return true when the entry to be freed maps more than the area being freed */
371 unsigned long more; in hugetlb_free_pmd_range() local
391 * there may be more than one entry at this level for a in hugetlb_free_pmd_range()
395 more = addr + (1UL << hugepd_shift(*(hugepd_t *)pmd)); in hugetlb_free_pmd_range()
396 if (more > next) in hugetlb_free_pmd_range()
397 next = more; in hugetlb_free_pmd_range()
430 unsigned long more; in hugetlb_free_pud_range() local
433 * there may be more than one entry at this level for a in hugetlb_free_pud_range()
437 more in hugetlb_free_pud_range()
492 unsigned long more; hugetlb_free_pgd_range() local
[all...]
/kernel/linux/linux-5.10/drivers/net/mdio/
H A Dmdio-cavium.h19 #define OCT_MDIO_BITFIELD_FIELD(field, more) \
21 more
24 #define OCT_MDIO_BITFIELD_FIELD(field, more) \
25 more \
/kernel/linux/linux-6.6/drivers/net/mdio/
H A Dmdio-cavium.h19 #define OCT_MDIO_BITFIELD_FIELD(field, more) \
21 more
24 #define OCT_MDIO_BITFIELD_FIELD(field, more) \
25 more \
/kernel/linux/linux-5.10/arch/loongarch/include/uapi/asm/
H A Dbitfield.h13 #define __BITFIELD_FIELD(field, more) \
14 more \
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/asm-loongarch/asm/
H A Dbitfield.h25 #define __BITFIELD_FIELD(field, more) \
26 more \
/kernel/linux/linux-5.10/drivers/firmware/google/
H A Dvpd_decode.c15 u8 more; in vpd_decode_len() local
26 more = in[i] & 0x80; in vpd_decode_len()
30 } while (more); in vpd_decode_len()

Completed in 9 milliseconds

12345678910>>...12