Home
last modified time | relevance | path

Searched +full:0 +full:x25 (Results 1 – 25 of 1036) sorted by relevance

12345678910>>...42

/kernel/linux/linux-4.19/net/x25/
Dx25_in.c26 #define pr_fmt(fmt) "X25: " fmt
35 #include <net/x25.h>
40 struct x25_sock *x25 = x25_sk(sk); in x25_queue_rx_frame() local
43 x25->fraglen += skb->len; in x25_queue_rx_frame()
44 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
46 return 0; in x25_queue_rx_frame()
49 if (!more && x25->fraglen > 0) { /* End of fragment */ in x25_queue_rx_frame()
50 int len = x25->fraglen + skb->len; in x25_queue_rx_frame()
57 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
61 skbo = skb_dequeue(&x25->fragment_queue); in x25_queue_rx_frame()
[all …]
Dx25_subr.c26 #define pr_fmt(fmt) "X25: " fmt
34 #include <net/x25.h>
41 struct x25_sock *x25 = x25_sk(sk); in x25_clear_queues() local
44 skb_queue_purge(&x25->ack_queue); in x25_clear_queues()
45 skb_queue_purge(&x25->interrupt_in_queue); in x25_clear_queues()
46 skb_queue_purge(&x25->interrupt_out_queue); in x25_clear_queues()
47 skb_queue_purge(&x25->fragment_queue); in x25_clear_queues()
59 struct x25_sock *x25 = x25_sk(sk); in x25_frames_acked() local
60 int modulus = x25->neighbour->extended ? X25_EMODULUS : X25_SMODULUS; in x25_frames_acked()
65 if (x25->va != nr) in x25_frames_acked()
[all …]
Dx25_out.c31 #include <net/x25.h>
40 while (pacsize-- > 0) in x25_pacsize_to_bytes()
57 int sent=0, noblock = X25_SKB_CB(skb)->flags & MSG_DONTWAIT; in x25_output()
58 struct x25_sock *x25 = x25_sk(sk); in x25_output() local
59 int header_len = x25->neighbour->extended ? X25_EXT_MIN_LEN : in x25_output()
61 int max_len = x25_pacsize_to_bytes(x25->facilities.pacsize_out); in x25_output()
70 while (skb->len > 0) { in x25_output()
98 if (skb->len > 0) { in x25_output()
99 if (x25->neighbour->extended) in x25_output()
123 struct x25_sock *x25 = x25_sk(sk); in x25_send_iframe() local
[all …]
Dx25_timer.c27 #include <net/x25.h>
34 struct x25_sock *x25 = x25_sk(sk); in x25_init_timers() local
36 timer_setup(&x25->timer, x25_timer_expiry, 0); in x25_init_timers()
54 struct x25_sock *x25 = x25_sk(sk); in x25_start_t2timer() local
56 mod_timer(&x25->timer, jiffies + x25->t2); in x25_start_t2timer()
61 struct x25_sock *x25 = x25_sk(sk); in x25_start_t21timer() local
63 mod_timer(&x25->timer, jiffies + x25->t21); in x25_start_t21timer()
68 struct x25_sock *x25 = x25_sk(sk); in x25_start_t22timer() local
70 mod_timer(&x25->timer, jiffies + x25->t22); in x25_start_t22timer()
75 struct x25_sock *x25 = x25_sk(sk); in x25_start_t23timer() local
[all …]
Dx25_proc.c26 #include <net/x25.h>
62 return 0; in x25_seq_route_show()
86 struct x25_sock *x25; in x25_seq_socket_show() local
97 x25 = x25_sk(s); in x25_seq_socket_show()
99 if (!x25->neighbour || (dev = x25->neighbour->dev) == NULL) in x25_seq_socket_show()
102 devname = x25->neighbour->dev->name; in x25_seq_socket_show()
106 !x25->dest_addr.x25_addr[0] ? "*" : x25->dest_addr.x25_addr, in x25_seq_socket_show()
107 !x25->source_addr.x25_addr[0] ? "*" : x25->source_addr.x25_addr, in x25_seq_socket_show()
108 devname, x25->lci & 0x0FFF, x25->state, x25->vs, x25->vr, in x25_seq_socket_show()
109 x25->va, x25_display_timer(s) / HZ, x25->t2 / HZ, in x25_seq_socket_show()
[all …]
Daf_x25.c38 #define pr_fmt(fmt) "X25: " fmt
62 #include <net/x25.h>
70 int sysctl_x25_forward = 0;
98 rc = 0; in x25_parse_address_block()
103 needed = 1 + ((len >> 4) + (len & 0x0f) + 1) / 2; in x25_parse_address_block()
115 *called_addr->x25_addr = 0; in x25_parse_address_block()
116 *calling_addr->x25_addr = 0; in x25_parse_address_block()
129 called_len = (*p >> 0) & 0x0F; in x25_addr_ntoa()
130 calling_len = (*p >> 4) & 0x0F; in x25_addr_ntoa()
136 for (i = 0; i < (called_len + calling_len); i++) { in x25_addr_ntoa()
[all …]
/kernel/linux/linux-5.10/net/x25/
Dx25_in.c21 #define pr_fmt(fmt) "X25: " fmt
30 #include <net/x25.h>
35 struct x25_sock *x25 = x25_sk(sk); in x25_queue_rx_frame() local
38 x25->fraglen += skb->len; in x25_queue_rx_frame()
39 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
41 return 0; in x25_queue_rx_frame()
44 if (!more && x25->fraglen > 0) { /* End of fragment */ in x25_queue_rx_frame()
45 int len = x25->fraglen + skb->len; in x25_queue_rx_frame()
52 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
56 skbo = skb_dequeue(&x25->fragment_queue); in x25_queue_rx_frame()
[all …]
Dx25_subr.c21 #define pr_fmt(fmt) "X25: " fmt
29 #include <net/x25.h>
36 struct x25_sock *x25 = x25_sk(sk); in x25_clear_queues() local
39 skb_queue_purge(&x25->ack_queue); in x25_clear_queues()
40 skb_queue_purge(&x25->interrupt_in_queue); in x25_clear_queues()
41 skb_queue_purge(&x25->interrupt_out_queue); in x25_clear_queues()
42 skb_queue_purge(&x25->fragment_queue); in x25_clear_queues()
54 struct x25_sock *x25 = x25_sk(sk); in x25_frames_acked() local
55 int modulus = x25->neighbour->extended ? X25_EMODULUS : X25_SMODULUS; in x25_frames_acked()
60 if (x25->va != nr) in x25_frames_acked()
[all …]
Dx25_out.c26 #include <net/x25.h>
35 while (pacsize-- > 0) in x25_pacsize_to_bytes()
52 int sent=0, noblock = X25_SKB_CB(skb)->flags & MSG_DONTWAIT; in x25_output()
53 struct x25_sock *x25 = x25_sk(sk); in x25_output() local
54 int header_len = x25->neighbour->extended ? X25_EXT_MIN_LEN : in x25_output()
56 int max_len = x25_pacsize_to_bytes(x25->facilities.pacsize_out); in x25_output()
65 while (skb->len > 0) { in x25_output()
93 if (skb->len > 0) { in x25_output()
94 if (x25->neighbour->extended) in x25_output()
118 struct x25_sock *x25 = x25_sk(sk); in x25_send_iframe() local
[all …]
Dx25_timer.c22 #include <net/x25.h>
29 struct x25_sock *x25 = x25_sk(sk); in x25_init_timers() local
31 timer_setup(&x25->timer, x25_timer_expiry, 0); in x25_init_timers()
49 struct x25_sock *x25 = x25_sk(sk); in x25_start_t2timer() local
51 mod_timer(&x25->timer, jiffies + x25->t2); in x25_start_t2timer()
56 struct x25_sock *x25 = x25_sk(sk); in x25_start_t21timer() local
58 mod_timer(&x25->timer, jiffies + x25->t21); in x25_start_t21timer()
63 struct x25_sock *x25 = x25_sk(sk); in x25_start_t22timer() local
65 mod_timer(&x25->timer, jiffies + x25->t22); in x25_start_t22timer()
70 struct x25_sock *x25 = x25_sk(sk); in x25_start_t23timer() local
[all …]
Dx25_proc.c21 #include <net/x25.h>
57 return 0; in x25_seq_route_show()
81 struct x25_sock *x25; in x25_seq_socket_show() local
92 x25 = x25_sk(s); in x25_seq_socket_show()
94 if (!x25->neighbour || (dev = x25->neighbour->dev) == NULL) in x25_seq_socket_show()
97 devname = x25->neighbour->dev->name; in x25_seq_socket_show()
101 !x25->dest_addr.x25_addr[0] ? "*" : x25->dest_addr.x25_addr, in x25_seq_socket_show()
102 !x25->source_addr.x25_addr[0] ? "*" : x25->source_addr.x25_addr, in x25_seq_socket_show()
103 devname, x25->lci & 0x0FFF, x25->state, x25->vs, x25->vr, in x25_seq_socket_show()
104 x25->va, x25_display_timer(s) / HZ, x25->t2 / HZ, in x25_seq_socket_show()
[all …]
Daf_x25.c33 #define pr_fmt(fmt) "X25: " fmt
57 #include <net/x25.h>
65 int sysctl_x25_forward = 0;
93 rc = 0; in x25_parse_address_block()
98 needed = 1 + ((len >> 4) + (len & 0x0f) + 1) / 2; in x25_parse_address_block()
110 *called_addr->x25_addr = 0; in x25_parse_address_block()
111 *calling_addr->x25_addr = 0; in x25_parse_address_block()
124 called_len = (*p >> 0) & 0x0F; in x25_addr_ntoa()
125 calling_len = (*p >> 4) & 0x0F; in x25_addr_ntoa()
131 for (i = 0; i < (called_len + calling_len); i++) { in x25_addr_ntoa()
[all …]
/kernel/linux/linux-5.10/arch/arm64/crypto/
Dsha512-core.S_shipped74 add x29,sp,#0
79 stp x25,x26,[sp,#64]
85 ldp x24,x25,[x0,#4*8]
97 rev x3,x3 // 0
102 and x17,x25,x24
128 bic x28,x25,x23
149 add x25,x25,x19 // h+=K[i]
153 add x25,x25,x5 // h+=X[i]
158 add x25,x25,x17 // h+=Ch(e,f,g)
160 add x25,x25,x16 // h+=Sigma1(e)
[all …]
/kernel/linux/linux-4.19/arch/arm64/crypto/
Dsha512-core.S_shipped74 add x29,sp,#0
79 stp x25,x26,[sp,#64]
85 ldp x24,x25,[x0,#4*8]
97 rev x3,x3 // 0
102 and x17,x25,x24
128 bic x28,x25,x23
149 add x25,x25,x19 // h+=K[i]
153 add x25,x25,x5 // h+=X[i]
158 add x25,x25,x17 // h+=Ch(e,f,g)
160 add x25,x25,x16 // h+=Sigma1(e)
[all …]
/kernel/linux/linux-4.19/drivers/video/fbdev/sis/
Doem300.h55 {0x08,0x08,0x08,0x08},
56 {0x08,0x08,0x08,0x08},
57 {0x08,0x08,0x08,0x08},
58 {0x2c,0x2c,0x2c,0x2c},
59 {0x08,0x08,0x08,0x08},
60 {0x08,0x08,0x08,0x08},
61 {0x08,0x08,0x08,0x08},
62 {0x20,0x20,0x20,0x20}
67 {0x20,0x20,0x20,0x20},
68 {0x20,0x20,0x20,0x20},
[all …]
Doem310.h55 0x00,0x00,0x00, /* 800x600 */
56 0x0b,0x0b,0x0b, /* 1024x768 */
57 0x08,0x08,0x08, /* 1280x1024 */
58 0x00,0x00,0x00, /* 640x480 (unknown) */
59 0x00,0x00,0x00, /* 1024x600 (unknown) */
60 0x00,0x00,0x00, /* 1152x864 (unknown) */
61 0x08,0x08,0x08, /* 1280x960 (guessed) */
62 0x00,0x00,0x00, /* 1152x768 (unknown) */
63 0x08,0x08,0x08, /* 1400x1050 */
64 0x08,0x08,0x08, /* 1280x768 (guessed) */
[all …]
/kernel/linux/linux-5.10/drivers/video/fbdev/sis/
Doem300.h55 {0x08,0x08,0x08,0x08},
56 {0x08,0x08,0x08,0x08},
57 {0x08,0x08,0x08,0x08},
58 {0x2c,0x2c,0x2c,0x2c},
59 {0x08,0x08,0x08,0x08},
60 {0x08,0x08,0x08,0x08},
61 {0x08,0x08,0x08,0x08},
62 {0x20,0x20,0x20,0x20}
67 {0x20,0x20,0x20,0x20},
68 {0x20,0x20,0x20,0x20},
[all …]
Doem310.h55 0x00,0x00,0x00, /* 800x600 */
56 0x0b,0x0b,0x0b, /* 1024x768 */
57 0x08,0x08,0x08, /* 1280x1024 */
58 0x00,0x00,0x00, /* 640x480 (unknown) */
59 0x00,0x00,0x00, /* 1024x600 (unknown) */
60 0x00,0x00,0x00, /* 1152x864 (unknown) */
61 0x08,0x08,0x08, /* 1280x960 (guessed) */
62 0x00,0x00,0x00, /* 1152x768 (unknown) */
63 0x08,0x08,0x08, /* 1400x1050 */
64 0x08,0x08,0x08, /* 1280x768 (guessed) */
[all …]
/kernel/linux/linux-4.19/arch/arm64/kernel/
Dentry.S57 .irp n,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29
66 #define BAD_SYNC 0
75 .if \el == 0
94 tbnz x0, #THREAD_SHIFT, 0f
99 0:
151 nop // Patched to SMC/HVC #0
161 stp x0, x1, [sp, #16 * 0]
173 stp x24, x25, [sp, #16 * 12]
177 .if \el == 0
194 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
[all …]
/kernel/linux/linux-4.19/Documentation/
Dsvga.txt30 NORMAL_VGA - Standard 80x25 mode available on all display adapters.
36 0..35 - Menu item number (when you have used the menu to view the list of
38 to use). 0..9 correspond to "0".."9", 10..35 to "a".."z". Warning: the
43 0x.... - Hexadecimal video mode ID (also displayed on the menu, see below
54 the standard 80x25 mode.
60 0 0F00 80x25
61 1 0F01 80x50
62 2 0F02 80x43
63 3 0F03 80x26
73 "0 0F00 80x25" means that the first menu item (the menu items are numbered
[all …]
/kernel/linux/linux-5.10/Documentation/admin-guide/
Dsvga.rst31 NORMAL_VGA - Standard 80x25 mode available on all display adapters.
37 0..35 - Menu item number (when you have used the menu to view the list of
39 to use). 0..9 correspond to "0".."9", 10..35 to "a".."z". Warning: the
44 0x.... - Hexadecimal video mode ID (also displayed on the menu, see below
55 the standard 80x25 mode.
61 0 0F00 80x25
62 1 0F01 80x50
63 2 0F02 80x43
64 3 0F03 80x26
74 "0 0F00 80x25" means that the first menu item (the menu items are numbered
[all …]
/kernel/linux/linux-5.10/crypto/
Dtestmgr.h33 * @ksize: Length of @key in bytes (0 if no key)
101 * @crypt_error: When @novrfy=0, the expected error from encrypt(). When
190 "\x90\xEF\xA0\x0D\xF3\x77\x4A\x25\x9F\x2E\x62\xB4\xC5\xD9\x9C\xB5"
209 "\x5e\x32\x39\x6d\xc1\x1d\x7d\x50\x3b\x9f\x7a\xad\xf0\x2e\x25\x53"
223 "\x7F\xAF\xB8\xE0\xA3\xDF\xC7\x37\x72\x3E\xE6\xB4\xB7\xD9\x3A\x25"
231 "\xF8\x3F\x31\x25\x1E\x06\x68\xB4\x27\x84\x81\x38\x01\x57\x96\x41"
266 "\x41\xE4\x25\x99\xAC\xFC\xD2\x0F\x02\xD3\xD1\x54\x06\x1A\x51\x77"
287 "\x98\x42\xF0\x02\x00\x25\x38\xC5\x85\x69\x8A\x7D\x2F\x95\x6C\x43"
312 "\xbe\xa9\x85\xcb\x9c\x8d\xf9\x8f\xeb\x32\x91\xa2\x25\x84\x8f\xf5"
330 "\x41\xE4\x25\x99\xAC\xFC\xD2\x0F\x02\xD3\xD1\x54\x06\x1A\x51\x77"
[all …]
/kernel/linux/linux-5.10/drivers/hid/i2c-hid/
Di2c-hid-dmi-quirks.c40 {0x1e, 0x00, /* Length of descriptor */
41 0x00, 0x01, /* Version of descriptor */
42 0xdb, 0x01, /* Length of report descriptor */
43 0x21, 0x00, /* Location of report descriptor */
44 0x24, 0x00, /* Location of input report */
45 0x1b, 0x00, /* Max input report length */
46 0x25, 0x00, /* Location of output report */
47 0x11, 0x00, /* Max output report length */
48 0x22, 0x00, /* Location of command register */
49 0x23, 0x00, /* Location of data register */
[all …]
/kernel/linux/linux-4.19/drivers/hid/i2c-hid/
Di2c-hid-dmi-quirks.c40 {0x1e, 0x00, /* Length of descriptor */
41 0x00, 0x01, /* Version of descriptor */
42 0xdb, 0x01, /* Length of report descriptor */
43 0x21, 0x00, /* Location of report descriptor */
44 0x24, 0x00, /* Location of input report */
45 0x1b, 0x00, /* Max input report length */
46 0x25, 0x00, /* Location of output report */
47 0x11, 0x00, /* Max output report length */
48 0x22, 0x00, /* Location of command register */
49 0x23, 0x00, /* Location of data register */
[all …]
/kernel/linux/linux-4.19/crypto/
Dtestmgr.h165 "\x90\xEF\xA0\x0D\xF3\x77\x4A\x25\x9F\x2E\x62\xB4\xC5\xD9\x9C\xB5"
184 "\x5e\x32\x39\x6d\xc1\x1d\x7d\x50\x3b\x9f\x7a\xad\xf0\x2e\x25\x53"
198 "\x7F\xAF\xB8\xE0\xA3\xDF\xC7\x37\x72\x3E\xE6\xB4\xB7\xD9\x3A\x25"
206 "\xF8\x3F\x31\x25\x1E\x06\x68\xB4\x27\x84\x81\x38\x01\x57\x96\x41"
241 "\x41\xE4\x25\x99\xAC\xFC\xD2\x0F\x02\xD3\xD1\x54\x06\x1A\x51\x77"
262 "\x98\x42\xF0\x02\x00\x25\x38\xC5\x85\x69\x8A\x7D\x2F\x95\x6C\x43"
287 "\xbe\xa9\x85\xcb\x9c\x8d\xf9\x8f\xeb\x32\x91\xa2\x25\x84\x8f\xf5"
305 "\x41\xE4\x25\x99\xAC\xFC\xD2\x0F\x02\xD3\xD1\x54\x06\x1A\x51\x77"
329 "\xbe\xa9\x85\xcb\x9c\x8d\xf9\x8f\xeb\x32\x91\xa2\x25\x84\x8f\xf5"
349 "\x1B\x7D\xF1\xFB\xAC\x79\xC5\xDF\x1A\x00\xC9\xB2\xC1\x61\x25\x33"
[all …]

12345678910>>...42