| /linux/lib/crypto/powerpc/ |
| H A D | sha256-spe-asm.S | 103 rotrwi rT0,e,6; /* 1: S1 = e rotr 6 */ \ 104 rotrwi rT1,e,11; /* 1: S1' = e rotr 11 */ \ 105 rotrwi rT2,e,25; /* 1: S1" = e rotr 25 */ \ 106 xor rT0,rT0,rT1; /* 1: S1 = S1 xor S1' */ \ 108 xor rT0,rT0,rT2; /* 1: S1 = S1 xor S1" */ \ 112 add h,h,rT0; /* 1: temp1 = h + S1 */ \ 128 rotrwi rT0,d,6; /* 2: S1 = e rotr 6 */ \ 130 rotrwi rT1,d,11; /* 2: S1' = e rotr 11 */ \ 132 rotrwi rT2,d,25; /* 2: S1" = e rotr 25 */ \ 133 xor rT0,rT0,rT1; /* 2: S1 = S1 xor S1' */ \ [all …]
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | btf_dedup_split.c | 20 btf__add_struct(btf1, "s1", 4); /* [3] struct s1 { */ in test_split_simple() 28 "[3] STRUCT 's1' size=4 vlen=1\n" in test_split_simple() 32 struct s1 {\n\ in test_split_simple() 53 btf__add_field(btf2, "f1", 6, 0, 0); /* struct s1 f1; */ in test_split_simple() 61 /* duplicated struct s1 */ in test_split_simple() 62 btf__add_struct(btf2, "s1", 4); /* [6] struct s1 { */ in test_split_simple() 70 "[3] STRUCT 's1' size=4 vlen=1\n" in test_split_simple() 77 "[6] STRUCT 's1' siz in test_split_simple() [all...] |
| /linux/arch/s390/lib/ |
| H A D | string.c | 156 * @s1: One string 159 * returns 0 if @s1 and @s2 are equal, 160 * < 0 if @s1 is less than @s2 161 * > 0 if @s1 is greater than @s2 164 int strcmp(const char *s1, const char *s2) in strcmp() argument 170 "0: clst %[s1],%[s2]\n" in strcmp() 173 " ic %[ret],0(%[s1])\n" in strcmp() 177 : [ret] "+&d" (ret), [s1] "+&a" (s1), [s2] "+&a" (s2) in strcmp() 185 static inline int clcle(const char *s1, unsigned long l1, in clcle() argument 188 union register_pair r1 = { .even = (unsigned long)s1, .odd = l1, }; in clcle() [all …]
|
| /linux/net/dccp/ccids/lib/ |
| H A D | packet_history.c | |
| /linux/arch/loongarch/kernel/ |
| H A D | relocate_kernel.S | 35 PTR_L s1, s0, 0 39 andi s2, s1, IND_DESTINATION 42 and s3, s1, t0 /* store destination addr in s3 */ 47 andi s2, s1, IND_INDIRECTION 50 and s0, s1, t0 55 andi s2, s1, IND_DONE 61 andi s2, s1, IND_SOURCE 64 and s1, s1, t0 69 REG_L s4, s1, 0 72 PTR_ADDI s1, s1, SZREG
|
| /linux/Documentation/devicetree/bindings/regulator/ |
| H A D | qcom,smd-rpm-regulator.yaml | 25 For mp5496, s1, s2, l2, l5 27 For pm2250, s1, s2, s3, s4, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, 30 For pm6125 s1, s2, s3, s4, s5, s6, s7, s8, l1, l2, l3, l5, l6, l7, l8, l9, 33 For pm660, s1, s2, s3, s4, s5, s6, l1, l2, l3, l5, l6, l7, l8, l9, l10, l22, 36 For pm660l s1, s2, s3, s5, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, bob 38 For pm8226, s1, s2, s3, s4, s5, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, 42 For pm8841, s1, s2, s3, s4, s5, s6, s7, s8 44 For pm8909, s1, s2, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13, 47 For pm8916, s1, s2, s3, s4, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, 50 For pm8937, s1, s2, s3, s4, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, [all …]
|
| /linux/tools/testing/selftests/powerpc/stringloops/ |
| H A D | memcmp.c | 34 int test_memcmp(const void *s1, const void *s2, size_t n); 37 static void test_one(char *s1, char *s2, unsigned long max_offset, in test_one() argument 47 y = memcmp(s1+offset, s2+offset, size); in test_one() 48 x = test_memcmp(s1+offset, s2+offset, size); in test_one() 55 printf("%02x ", s1[i]); in test_one() 65 printf("vmx enter/exit not paired.(offset:%ld size:%ld s1:%p s2:%p vc:%d\n", in test_one() 66 offset, size, s1, s2, vmx_count); in test_one() 77 char *p, *s1, *s2; in testcase() local 88 /* Put s1/s2 at the end of a page */ in testcase() 89 s1 = p + MAP_SIZE - alloc_size; in testcase() [all …]
|
| /linux/lib/crypto/x86/ |
| H A D | sha256-avx-asm.S | 154 ## compute s0 four at a time and s1 two at a time 174 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 177 add y0, y2 # y2 = S1 + CH 178 add _XFER(%rsp), y2 # y2 = k + w + S1 + CH 180 add y2, h # h = h + S1 + CH + k + w 184 add h, d # d = d + h + S1 + CH + k + w 188 add y1, h # h = h + S1 + CH + k + w + S0 191 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 207 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 212 add y0, y2 # y2 = S1 + CH [all …]
|
| H A D | sha256-ssse3-asm.S | 148 ## compute s0 four at a time and s1 two at a time 169 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 173 add y0, y2 # y2 = S1 + CH 174 add _XFER(%rsp) , y2 # y2 = k + w + S1 + CH 177 add y2, h # h = h + S1 + CH + k + w 181 add h, d # d = d + h + S1 + CH + k + w 185 add y1, h # h = h + S1 + CH + k + w + S0 188 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 207 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 212 add y0, y2 # y2 = S1 + CH [all …]
|
| H A D | sha256-avx2-asm.S | 166 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 168 vpaddd X0, XTMP0, XTMP0 # XTMP0 = W[-7] + W[-16]# y1 = (e >> 6)# S1 169 rorx $6, e, y1 # y1 = (e >> 6) # S1 172 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 187 add y0, y2 # y2 = S1 + CH # -- 192 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # -- 196 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# -- 215 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 219 rorx $6, e, y1 # y1 = (e >> 6) # S1 220 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 [all …]
|
| H A D | sha512-avx2-asm.S | 189 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 191 rorx $14, e, y1 # y1 = (e >> 14) # S1 194 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 207 add y0, y2 # y2 = S1 + CH # -- 211 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # -- 213 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# -- 252 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 256 rorx $14, e, y1 # y1 = (e >> 14) # S1 257 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 271 add y0, y2 # y2 = S1 + CH # -- [all …]
|
| /linux/tools/perf/pmu-events/arch/arm64/ampere/ampereonex/ |
| H A D | mmu.json | 45 "PublicDescrition": "Data-side S1 page walk cache lookup", 48 "BriefDescription": "Data-side S1 page walk cache lookup" 51 "PublicDescrition": "Data-side S1 page walk cache refill", 54 "BriefDescription": "Data-side S1 page walk cache refill" 69 "PublicDescription": "Data-side S1 table walk fault", 72 "BriefDescription": "Data-side S1 table walk fault" 129 "PublicDescrition": "Instruction-side S1 page walk cache lookup", 132 "BriefDescription": "Instruction-side S1 page walk cache lookup" 135 "PublicDescrition": "Instruction-side S1 page walk cache refill", 138 "BriefDescription": "Instruction-side S1 page walk cache refill" [all …]
|
| /linux/fs/ntfs3/ |
| H A D | upcase.c | 36 int ntfs_cmp_names(const __le16 *s1, size_t l1, const __le16 *s2, size_t l2, in ntfs_cmp_names() argument 46 for (; len; s1++, s2++, len--) { in ntfs_cmp_names() 47 diff1 = le16_to_cpu(*s1) - le16_to_cpu(*s2); in ntfs_cmp_names() 58 for (; len; s1++, s2++, len--) { in ntfs_cmp_names() 59 diff2 = upcase_unicode_char(upcase, le16_to_cpu(*s1)) - in ntfs_cmp_names() 72 const u16 *s1 = uni1->name; in ntfs_cmp_names_cpu() local 83 for (; len; s1++, s2++, len--) { in ntfs_cmp_names_cpu() 84 diff1 = *s1 - le16_to_cpu(*s2); in ntfs_cmp_names_cpu() 95 for (; len; s1++, s2++, len--) { in ntfs_cmp_names_cpu() 96 diff2 = upcase_unicode_char(upcase, *s1) - in ntfs_cmp_names_cpu()
|
| /linux/drivers/regulator/ |
| H A D | qcom-rpmh-regulator.c | 143 * "ldo%s1" for RPMh resource "ldoa1". 916 RPMH_VREG("smps1", "smp%s1", &pmic4_ftsmps426, "vdd-s1"), 929 RPMH_VREG("ldo1", "ldo%s1", &pmic4_nldo, "vdd-l1-l27"), 957 RPMH_VREG("lvs1", "vs%s1", &pmic4_lvs, "vin-lvs-1-2"), 963 RPMH_VREG("smps1", "smp%s1", &pmic5_ftsmps510, "vdd-s1"), 968 RPMH_VREG("bob", "bob%s1", &pmic4_bob, "vdd-bob"), 973 RPMH_VREG("smps1", "smp%s1", &pmic4_ftsmps426, "vdd-s1"), 981 RPMH_VREG("smps1", "smp%s1", &pmic5_ftsmps510, "vdd-s1"), 991 RPMH_VREG("ldo1", "ldo%s1", &pmic5_nldo, "vdd-l1-l8-l11"), 1013 RPMH_VREG("smps1", "smp%s1", &pmic5_ftsmps510, "vdd-s1"), [all …]
|
| /linux/scripts/coccinelle/null/ |
| H A D | deref_null.cocci | 44 statement S1,S2; 48 if@p1 ((E == NULL && ...) || ...) S1 else S2 57 statement S1,S2,S3,S4; 65 ... when != if (...) S1 else S2 118 statement S1,S2,S3,S4; 126 ... when != if (...) S1 else S2 178 statement S1,S2,S3,S4; 186 ... when != if (...) S1 else S2 240 statement S1,S2; 244 if@p1 ((E == NULL && ...) || ...) S1 else S2 [all …]
|
| /linux/arch/x86/boot/ |
| H A D | string.c | 32 int memcmp(const void *s1, const void *s2, size_t len) in memcmp() argument 36 : "=@ccnz" (diff), "+D" (s1), "+S" (s2), "+c" (len)); in memcmp() 43 int bcmp(const void *s1, const void *s2, size_t len) in bcmp() argument 45 return memcmp(s1, s2, len); in bcmp() 50 const unsigned char *s1 = (const unsigned char *)str1; in strcmp() local 54 while (*s1 || *s2) { in strcmp() 55 delta = *s1 - *s2; in strcmp() 58 s1++; in strcmp() 160 * @s1: The string to be searched 163 char *strstr(const char *s1, const char *s2) in strstr() argument [all …]
|
| /linux/arch/arm/boot/dts/aspeed/ |
| H A D | aspeed-bmc-ampere-mtjade.dts | 117 channels = "s0", "s1"; 126 channels = "s0", "s1"; 135 channels = "s0", "s1"; 144 channels = "s0", "s1"; 153 channels = "s0", "s1"; 162 channels = "s0", "s1"; 171 channels = "s0", "s1"; 180 channels = "s0", "s1"; 189 channels = "s0", "s1"; 198 channels = "s0", "s1"; [all …]
|
| /linux/kernel/trace/rv/monitors/sleep/ |
| H A D | sleep.h | 65 S1, enumerator 117 __set_bit(S1, mon->states); in ltl_start() 168 __set_bit(S1, next); in ltl_possible_next_states() 174 case S1: in ltl_possible_next_states() 176 __set_bit(S1, next); in ltl_possible_next_states() 190 __set_bit(S1, next); in ltl_possible_next_states() 206 __set_bit(S1, next); in ltl_possible_next_states() 216 __set_bit(S1, next); in ltl_possible_next_states() 226 __set_bit(S1, next); in ltl_possible_next_states() 234 __set_bit(S1, next); in ltl_possible_next_states() [all …]
|
| /linux/arch/sparc/include/asm/ |
| H A D | prom.h | 24 #define of_compat_cmp(s1, s2, l) strncmp((s1), (s2), (l)) argument 25 #define of_prop_cmp(s1, s2) strcasecmp((s1), (s2)) argument 26 #define of_node_cmp(s1, s2) strcmp((s1), (s2)) argument
|
| /linux/tools/perf/tests/ |
| H A D | sample-parsing.c | 21 if (s1->m != s2->m) { \ 28 if (memcmp(&s1->m, &s2->m, sizeof(s1->m))) { \ 43 static bool samples_same(struct perf_sample *s1, in samples_same() argument 89 for (i = 0; i < s1->read.group.nr; i++) { in samples_same() 103 for (i = 0; i < s1->callchain->nr; i++) in samples_same() 109 if (memcmp(s1->raw_data, s2->raw_data, s1->raw_size)) { in samples_same() 118 for (i = 0; i < s1->branch_stack->nr; i++) { in samples_same() 129 struct regs_dump *s1_regs = perf_sample__user_regs(s1); in samples_same() 145 if (memcmp(s1->user_stack.data, s2->user_stack.data, in samples_same() 146 s1->user_stack.size)) { in samples_same() [all …]
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | btf_dump_test_case_ordering.c | 9 struct s1 {}; struct 22 struct s1 s1; member 27 struct s1 s1; member
|
| /linux/arch/riscv/kernel/ |
| H A D | kexec_relocate.S | 17 * s1: (const) Phys address to jump to after relocation 25 mv s1, a1 104 mv a2, s1 114 mv s1, zero 154 * s1: (const) Phys address of the FDT image 158 mv s1, a2 167 mv a1, s1 178 mv s1, zero
|
| /linux/include/linux/ |
| H A D | zutil.h | 57 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;} 82 unsigned long s1 = adler & 0xffff; in zlib_adler32() local 97 s1 += *buf++; in zlib_adler32() 98 s2 += s1; in zlib_adler32() 100 s1 %= BASE; in zlib_adler32() 103 return (s2 << 16) | s1; in zlib_adler32()
|
| /linux/arch/arm64/boot/dts/freescale/ |
| H A D | fsl-ls1088a-tqmls1088a-mbls10xxa.dts | 32 qsgmii-s1-p1 = &qsgmii1_phy1; 33 qsgmii-s1-p2 = &qsgmii1_phy2; 34 qsgmii-s1-p3 = &qsgmii1_phy3; 35 qsgmii-s1-p4 = &qsgmii1_phy4; 40 rgmii-s1 = &rgmii_phy1;
|
| /linux/arch/arm64/crypto/ |
| H A D | sm4-neon-core.S | 40 #define transpose_4x4(s0, s1, s2, s3) \ argument 41 zip1 RTMP0.4s, s0.4s, s1.4s; \ 43 zip2 RTMP2.4s, s0.4s, s1.4s; \ 46 zip2 s1.2d, RTMP0.2d, RTMP1.2d; \ 50 #define transpose_4x4_2x(s0, s1, s2, s3, s4, s5, s6, s7) \ argument 51 zip1 RTMP0.4s, s0.4s, s1.4s; \ 53 zip2 RTMP2.4s, s0.4s, s1.4s; \ 60 zip2 s1.2d, RTMP0.2d, RTMP1.2d; \ 68 #define rotate_clockwise_4x4(s0, s1, s2, s3) \ argument 69 zip1 RTMP0.4s, s1.4s, s0.4s; \ [all …]
|