Home
last modified time | relevance | path

Searched refs:LEN (Results 1 – 25 of 36) sorted by relevance

12

/linux/arch/m68k/fpsp040/
H A Dbindec.S43 | A6. Calculate LEN.
44 | LEN is the number of digits to be displayed. The
49 | If LEN is computed to be greater than 17, set OPERR in
50 | USER_FPSR. LEN is stored in d4.
54 | of decimal places needed to insure LEN integer digits
85 | A13. Check for LEN digits.
86 | If the int operation results in more than LEN digits,
87 | or less than LEN -1 digits, adjust ILOG and repeat from
89 | result is exactly 10^LEN, decrement ILOG and divide
93 | The binstr routine is used to convert the LEN digit
[all …]
H A Dbinstr.S7 | Input: 64-bit binary integer in d2:d3, desired length (LEN) in
12 | Output: LEN bcd digits representing the 64-bit integer.
19 | LEN digits are formed.
43 | A7. Decrement d6 (LEN counter) and repeat the loop until zero.
49 | d0: LEN counter
79 subql #1,%d0 |for dbf d0 would have LEN+1 passes
120 swap %d7 |put LEN counter in word d7a
127 swap %d7 |put LEN counter in word d7a
/linux/tools/testing/selftests/net/netfilter/
H A Dconntrack_reverse_clash.c26 #define LEN 512 macro
72 char buf[LEN]; in main()
101 if (sendto(s1, buf, LEN, 0, (struct sockaddr *)&sa2, sizeof(sa2)) != LEN) in main()
104 if (recvfrom(s2, buf, LEN, 0, (struct sockaddr *)&peer, &plen) < 0) in main()
110 if (sendto(s2, buf, LEN, 0, (struct sockaddr *)&sa1, sizeof(sa1)) != LEN) in main()
113 if (recvfrom(s1, buf, LEN, 0, (struct sockaddr *)&peer, &plen) < 0) in main()
/linux/arch/x86/crypto/
H A Daes-ctr-avx-x86_64.S288 .set LEN, %ecx // Remaining length in bytes. define
371 add $-8*VL, LEN
382 add $-8*VL, LEN
385 sub $-8*VL, LEN
393 cmp $4*VL, LEN
408 add $-4*VL, LEN
409 cmp $1*VL-1, LEN
412 cmp $2*VL-1, LEN
415 cmp $3*VL-1, LEN
418 cmp $4*VL-1, LEN
[all …]
H A Daes-xts-avx-x86_64.S156 .set LEN, %ecx // Remaining length in bytes define
624 lea -16(LEN), %eax
626 cmovnz %eax, LEN
638 add $-4*VL, LEN // shorter than 'sub 4*VL' when VL=32
718 add $-4*VL, LEN
738 add $3*VL, LEN // Undo extra sub of 4*VL, then sub VL.
747 sub $VL, LEN
750 add $VL-16, LEN // Undo extra sub of VL, then sub 16.
752 add $4*VL-16, LEN // Undo extra sub of 4*VL, then sub 16.
764 sub $16, LEN
[all …]
/linux/lib/crc/arm/
H A Dcrc32-core.S112 LEN .req r1
134 0: bic LEN, LEN, #15
141 sub LEN, LEN, #0x40
142 cmp LEN, #0x40
148 sub LEN, LEN, #0x40
174 cmp LEN, #0x40
196 teq LEN, #0
200 subs LEN, LEN, #0x10
/linux/arch/riscv/crypto/
H A Daes-riscv64-zvkned-zvkb.S55 #define LEN a3 macro
64 addi t0, LEN, 15
112 vsetvli t0, LEN, e8, m4, ta, ma
120 sub LEN, LEN, t0
125 bnez LEN, 1b
H A Dghash-riscv64-zvkg.S53 #define LEN a3 macro
67 addi LEN, LEN, -16
68 bnez LEN, .Lnext_block
H A Daes-riscv64-zvkned-zvbb-zvkg.S56 #define LEN a3 macro
98 ble LEN, t0, .Linit_single_block\@
273 andi TAIL_LEN, LEN, 15
280 sub LEN, LEN, TAIL_LEN
281 addi LEN, LEN, -16
283 srli LEN32, LEN, 2
/linux/Documentation/input/devices/
H A Diforce-protocol.rst40 2B OP LEN DATA CS
51 The 2B, LEN and CS fields have disappeared, probably because USB handles
63 LEN= Varies from device to device
80 LEN= Varies
95 LEN= 0e
145 LEN= 08
158 LEN= 03
168 LEN= 07
181 LEN= 0a
201 LEN= 03
[all …]
/linux/lib/crc/x86/
H A Dcrc-pclmul-template.S247 .set LEN, %rdx define
256 .set LEN, %ecx define
300 cmp $VL, LEN
319 cmp $4*VL-1, LEN
342 add $-4*VL, LEN // Shorter than 'sub 4*VL' when VL=32
346 cmp $4*VL-1, LEN // Shorter than 'cmp 4*VL' when VL=32
355 add $-4*VL, LEN
356 cmp $4*VL-1, LEN
410 neg LEN // Needed for indexing shuf_table
438 vpblendvb %xmm3, -16(BUF,LEN), %xmm1, %xmm1
/linux/lib/crypto/s390/
H A Dchacha-s390.S45 #define LEN %r4 macro
304 aghi LEN,-0x40
316 clgfi LEN,0x40
330 aghi LEN,-0x40
343 clgfi LEN,0x40
357 aghi LEN,-0x40
370 clgfi LEN,0x40
403 brct LEN,.Loop_tail_4x
411 #undef LEN
429 #define LEN %r4 macro
[all …]
/linux/tools/testing/selftests/mm/
H A Dpagemap_ioctl.c42 #define LEN(region) ((region.end - region.start)/page_size) macro
232 sum += LEN(vec[i]); in get_reads()
391 ksft_test_result(ret == 1 && LEN(vec[0]) == 2 && in sanity_tests_sd()
393 ret2 == 2 && LEN(vec2[0]) == 1 && vec2[0].start == (uintptr_t)mem && in sanity_tests_sd()
394 LEN(vec2[1]) == vec_size - 3 && in sanity_tests_sd()
424 ksft_test_result(ret == 1 && LEN(vec[0]) == mem_size/page_size, in sanity_tests_sd()
717 ksft_test_result(written == 1 && LEN(vec[0]) == mem_size/page_size, in base_tests()
733 ksft_test_result(written == 1 && LEN(vec[0]) >= vec_size - 2 && LEN(vec[0]) <= vec_size, in base_tests()
757 ksft_test_result(written == 1 && LEN(ve in base_tests()
[all...]
/linux/lib/crypto/x86/
H A Dsha256-ni-asm.S188 #define LEN %ecx macro
307 mov LEN, LEN
356 add %ebx, LEN // LEN += buffered - 64
362 sub $64, LEN
414 sub $64, LEN
424 add $64, LEN
433 sub LEN, %ebx // ebx = 64 - LEN
443 cmp $56, LEN
/linux/security/apparmor/include/
H A Dmatch.h107 #define UNPACK_ARRAY(TABLE, BLOB, LEN, TTYPE, BTYPE, NTOHX) \ argument
109 typeof(LEN) __i; \
114 memcpy(__t, __b, (LEN) * sizeof(BTYPE)); \
116 for (__i = 0; __i < LEN; __i++) { \
/linux/arch/sparc/net/
H A Dbpf_jit_asm_32.S94 #define bpf_slow_path_common(LEN) \ argument
100 mov (LEN), %o3; \
130 #define bpf_negative_common(LEN) \ argument
136 mov (LEN), %o2; \
/linux/tools/power/cpupower/debug/i386/
H A Ddump_psb.c15 #define LEN (0x100000 - 0xc0000) macro
185 for (p = mem; p - mem < LEN; p+=16) { in main()
192 munmap(mem, LEN); in main()
/linux/lib/zlib_inflate/
H A Dinflate.c427 state->mode = LEN; /* decode codes */ in zlib_inflate()
577 state->mode = LEN; in zlib_inflate()
579 case LEN: in zlib_inflate()
696 if (state->length == 0) state->mode = LEN; in zlib_inflate()
702 state->mode = LEN; in zlib_inflate()
H A Dinflate.h36 LEN, /* i: waiting for length/lit code */ enumerator
/linux/Documentation/driver-api/surface_aggregator/
H A Dssh.rst6 .. |LEN| replace:: ``LEN`` substdef
66 * - |LEN|
75 the frame structure (|TYPE|, |LEN|, and |SEQ| fields) is placed directly
78 the frame has ``LEN=0``), the CRC of the payload is still present and will
79 evaluate to ``0xffff``. The |LEN| field does not include any of the CRCs, it
97 A message consists of |SYN|, followed by the frame (|TYPE|, |LEN|, |SEQ| and
98 CRC) and, if specified in the frame (i.e. ``LEN > 0``), payload bytes,
/linux/drivers/infiniband/hw/hfi1/
H A Duser_sdma.c592 u32 tidlen = EXP_TID_GET(req->tids[req->tididx], LEN) * in compute_data_length()
603 LEN) * PAGE_SIZE; in compute_data_length()
867 tidlen = EXP_TID_GET(tidval, LEN) * PAGE_SIZE, in check_header_template()
981 if ((req->tidoffset) == (EXP_TID_GET(tidval, LEN) * in set_txreq_header()
994 omfactor = EXP_TID_GET(tidval, LEN) * PAGE_SIZE >= in set_txreq_header()
1084 if ((req->tidoffset) == (EXP_TID_GET(tidval, LEN) * in set_txreq_header_ahg()
1096 omfactor = ((EXP_TID_GET(tidval, LEN) * in set_txreq_header_ahg()
H A Dexp_rcv.h142 EXP_TID_SET(LEN, npages); in create_tid()
/linux/tools/include/linux/
H A Dfilter.h70 #define BPF_ENDIAN(TYPE, DST, LEN) \ argument
76 .imm = LEN })
/linux/drivers/net/ethernet/huawei/hinic/
H A Dhinic_hw_eqs.c497 val = HINIC_AEQ_CTRL_1_CLEAR(val, LEN) & in get_ctrl1_val()
501 ctrl1 = HINIC_AEQ_CTRL_1_SET(eq->q_len, LEN) | in get_ctrl1_val()
514 val = HINIC_CEQ_CTRL_1_CLEAR(val, LEN) & in get_ctrl1_val()
517 ctrl1 = HINIC_CEQ_CTRL_1_SET(eq->q_len, LEN) | in get_ctrl1_val()
/linux/drivers/media/i2c/
H A Dtw9910.c147 #define LEN 0x40 /* 0 : 8-bit YCrCb 4:2:2 output format */ macro
662 val = LEN; in tw9910_set_frame()
664 ret = tw9910_mask_set(client, OPFORM, LEN, val); in tw9910_set_frame()

12