Home
last modified time | relevance | path

Searched refs:x25 (Results 1 – 25 of 621) sorted by relevance

12345678910>>...25

/OK3568_Linux_fs/kernel/net/x25/
H A Dx25_in.c35 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()
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()
62 skb_dequeue(&x25->fragment_queue)) != NULL) { in x25_queue_rx_frame()
63 skb_pull(skbo, (x25->neighbour->extended) ? in x25_queue_rx_frame()
71 x25->fraglen = 0; in x25_queue_rx_frame()
[all …]
H A Dx25_subr.c36 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()
61 while (skb_peek(&x25->ack_queue) && x25->va != nr) { in x25_frames_acked()
62 skb = skb_dequeue(&x25->ack_queue); in x25_frames_acked()
[all …]
H A Dx25_out.c53 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()
94 if (x25->neighbour->extended) in x25_output()
118 struct x25_sock *x25 = x25_sk(sk); in x25_send_iframe() local
123 if (x25->neighbour->extended) { in x25_send_iframe()
124 skb->data[2] = (x25->vs << 1) & 0xFE; in x25_send_iframe()
126 skb->data[3] |= (x25->vr << 1) & 0xFE; in x25_send_iframe()
129 skb->data[2] |= (x25->vs << 1) & 0x0E; in x25_send_iframe()
130 skb->data[2] |= (x25->vr << 5) & 0xE0; in x25_send_iframe()
[all …]
H A Dx25_timer.c29 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
72 mod_timer(&x25->timer, jiffies + x25->t23); in x25_start_t23timer()
[all …]
H A Daf_x25.c514 struct x25_sock *x25; in x25_alloc_socket() local
522 x25 = x25_sk(sk); in x25_alloc_socket()
523 skb_queue_head_init(&x25->ack_queue); in x25_alloc_socket()
524 skb_queue_head_init(&x25->fragment_queue); in x25_alloc_socket()
525 skb_queue_head_init(&x25->interrupt_in_queue); in x25_alloc_socket()
526 skb_queue_head_init(&x25->interrupt_out_queue); in x25_alloc_socket()
535 struct x25_sock *x25; in x25_create() local
553 x25 = x25_sk(sk); in x25_create()
563 x25->t21 = sysctl_x25_call_request_timeout; in x25_create()
564 x25->t22 = sysctl_x25_reset_request_timeout; in x25_create()
[all …]
H A Dx25_proc.c81 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()
105 x25->t21 / HZ, x25->t22 / HZ, x25->t23 / HZ, in x25_seq_socket_show()
H A DMakefile6 obj-$(CONFIG_X25) += x25.o
8 x25-y := af_x25.o x25_dev.o x25_facilities.o x25_in.o \
11 x25-$(CONFIG_SYSCTL) += sysctl_net_x25.o
H A DKconfig20 You can read more about X.25 at <https://www.sangoma.com/tutorials/x25/> and
23 <file:Documentation/networking/x25.rst> and
24 <file:Documentation/networking/x25-iface.rst>.
34 will be called x25. If unsure, say N.
/OK3568_Linux_fs/kernel/arch/arm64/crypto/
H A Dsha512-core.S_shipped79 stp x25,x26,[sp,#64]
85 ldp x24,x25,[x0,#4*8]
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)
162 add x21,x21,x25 // d+=h
165 add x25,x25,x28 // h+=Maj(a,b,c)
[all …]
/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/share/i18n/charmaps/
HDISO_10646.gz ... SIGN 46<percent-sign> /x00/x25 PERCENT SIGN 47<ampersand> /x00/x26 ...
/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/share/i18n/charmaps/
HDISO_10646.gz ... SIGN 46<percent-sign> /x00/x25 PERCENT SIGN 47<ampersand> /x00/x26 ...
/OK3568_Linux_fs/kernel/lib/crypto/
H A Dcurve25519-fiat32.c246 { const u32 x25 = in2[1]; in fe_add_impl() local
249 out[1] = (x7 + x25); in fe_add_impl()
289 { const u32 x25 = in2[1]; in fe_sub_impl() local
292 out[1] = ((0x3fffffe + x7) - x25); in fe_sub_impl()
332 { const u32 x25 = in2[1]; in fe_mul_impl() local
335 { u64 x41 = (((u64)x23 * x7) + ((u64)x25 * x5)); in fe_mul_impl()
336 { u64 x42 = ((((u64)(0x2 * x25) * x7) + ((u64)x23 * x9)) + ((u64)x27 * x5)); in fe_mul_impl()
337 { u64 x43 = (((((u64)x25 * x9) + ((u64)x27 * x7)) + ((u64)x23 * x11)) + ((u64)x29 * x5)); in fe_mul_impl()
338 …{ u64 x44 = (((((u64)x27 * x9) + (0x2 * (((u64)x25 * x11) + ((u64)x29 * x7)))) + ((u64)x23 * x13))… in fe_mul_impl()
339 …{ u64 x45 = (((((((u64)x27 * x11) + ((u64)x29 * x9)) + ((u64)x25 * x13)) + ((u64)x31 * x7)) + ((u6… in fe_mul_impl()
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/kernel/
H A Dentry.S240 stp x24, x25, [sp, #16 * 12]
457 ldp x24, x25, [sp, #16 * 12]
542 ldr x25, [tsk, TSK_STACK]
543 eor x25, x25, x19
544 and x25, x25, #~(THREAD_SIZE - 1)
545 cbnz x25, 9998f
547 ldr_this_cpu x25, irq_stack_ptr, x26
549 add x26, x25, x26
833 mrs x25, esr_el1
837 mov x1, x25
[all …]
/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/etc/
H A Drpc26 x25.inr 100022
51 x25 100114 na.x25
/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/etc/
H A Drpc26 x25.inr 100022
51 x25 100114 na.x25
/OK3568_Linux_fs/u-boot/drivers/rknand/
H A Drk_zftl_arm_v8.S415 str x25, [sp, 64]
427 mov x25, x1
473 ldr x2, [x25, #:lo12:.LANCHOR4]
488 ldr x25, [sp, 64]
498 ldr x25, [sp, 64]
553 stp x25, x26, [sp, 64]
555 adrp x25, .LANCHOR16
558 add x25, x25, :lo12:.LANCHOR16
571 ldp x25, x26, [sp, 64]
583 ldrb w0, [x25]
[all …]
H A Drk_zftl_spl_arm_v8.S415 str x25, [sp, 64]
427 mov x25, x1
473 ldr x2, [x25, #:lo12:.LANCHOR4]
488 ldr x25, [sp, 64]
498 ldr x25, [sp, 64]
553 stp x25, x26, [sp, 64]
555 adrp x25, .LANCHOR16
558 add x25, x25, :lo12:.LANCHOR16
571 ldp x25, x26, [sp, 64]
583 ldrb w0, [x25]
[all …]
/OK3568_Linux_fs/kernel/drivers/rk_nand/
H A Drk_zftl_arm64.S570 str x25, [sp, 64]
583 ldr x25, [x4, 1040]
586 add x24, x25, x23
595 ldrh w1, [x25, x23]
611 ldrh w0, [x25, x23]
651 ldr x25, [sp, 64]
757 stp x25, x26, [sp, 64]
763 add x25, x0, 48
765 add x25, x25, x2
779 ldp x25, x26, [sp, 64]
[all …]
H A Drk_ftl_arm_v8.S481 stp x25, x26, [sp, 64]
487 add x25, x0, 256
489 add x25, x25, x2
503 ldp x25, x26, [sp, 64]
524 ldrsb w0, [x25, x20]
895 stp x25, x26, [sp, 64]
914 mov x25, 0
924 cmp x25, x27
936 ldp x25, x26, [sp, 64]
965 ldrb w0, [x21, x25]
[all …]
H A Drk_ftlv5_arm64.S784 stp x25, x26, [sp, 64]
790 add x25, x0, 256
792 add x25, x25, x2
806 ldp x25, x26, [sp, 64]
828 ldrsb w0, [x25, x20]
1449 stp x25, x26, [sp, 64]
1464 sxtw x25, w23
1466 lsl x1, x25, 4
1483 add x21, x21, x25
1491 ldp x25, x26, [sp, 64]
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Dsvga.rst31 NORMAL_VGA - Standard 80x25 mode available on all display adapters.
55 the standard 80x25 mode.
61 0 0F00 80x25
74 "0 0F00 80x25" means that the first menu item (the menu items are numbered
75 from "0" to "9" and from "a" to "z") is a 80x25 mode with ID=0x0f00 (see the
90 the standard modes (80x25 and 80x50) followed by "special" modes (80x28 and
128 (Usually 940=80x43, 941=132x25, 942=132x44, 943=80x60, 944=100x60,
133 0x0f00 standard 80x25, don't reset mode if already set (=FFFF)
145 E.g., 0x1950 corresponds to a 80x25 mode, 0x2b84 to 132x43 etc.
151 0xffff equivalent to 0x0f00 (standard 80x25)
[all …]
/OK3568_Linux_fs/kernel/drivers/rkflash/
H A Drk_sftl_arm_v8_clang.S126 stp x26, x25, [sp, #32] // 16-byte Folded Spill
616 adrp x25, p_erase_count_table
620 ldr x10, [x25, :lo12:p_erase_count_table]
679 ldr x8, [x25, :lo12:p_erase_count_table]
731 ldr x12, [x25, :lo12:p_erase_count_table]
774 ldr x11, [x25, :lo12:p_erase_count_table]
801 ldp x26, x25, [sp, #32] // 16-byte Folded Reload
1322 stp x26, x25, [sp, #32] // 16-byte Folded Spill
1551 sub x12, x25, #1 // =1
1581 sub x11, x25, x11
[all …]
H A Drk_sftl_arm_v8.S411 str x25, [sp, 64]
513 ldr x25, [sp, 64]
1811 stp x25, x26, [sp, 64]
1849 ldp x25, x26, [sp, 64]
1897 str x25, [sp, 64]
1898 add x25, x20, 264
1914 ldr x25, [sp, 64]
1919 ldrb w0, [x25, x22]
2184 stp x25, x26, [sp, 64]
2652 ldp x25, x26, [sp, 64]
[all …]
/OK3568_Linux_fs/u-boot/drivers/rkflash/
H A Drk_sftl_arm_v8.S926 stp x25, x26, [sp, 64]
949 mov x25, x1
984 ldr x2, [x25, #:lo12:.LANCHOR41]
1017 ldp x25, x26, [sp, 64]
1932 stp x25, x26, [sp, 64]
1935 adrp x25, .LC4
1939 add x25, x25, :lo12:.LC4
1953 ldp x25, x26, [sp, 64]
1989 mov x0, x25
2009 stp x25, x26, [sp, 64]
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/boot/dts/
H A Dmpc7448hpc2.dts157 0x800 0x0 0x0 0x2 &RT0 0x25 0x0
162 0x1000 0x0 0x0 0x1 &RT0 0x25 0x0
171 0x1800 0x0 0x0 0x4 &RT0 0x25 0x0
176 0x2000 0x0 0x0 0x3 &RT0 0x25 0x0

12345678910>>...25