Home
last modified time | relevance | path

Searched refs:s2 (Results 1 – 25 of 118) sorted by relevance

12345

/f-stack/freebsd/contrib/ngatm/netnatm/api/
H A Dunisap.c163 COMMON_OVERLAP(s1, s2); in unisve_overlap_addr()
165 return (s1->type == s2->type && s1->plan == s2->plan && in unisve_overlap_addr()
166 s1->len == s2->len && memcmp(s1->addr, s2->addr, s1->len) == 0); in unisve_overlap_addr()
173 COMMON_OVERLAP(s1, s2); in unisve_overlap_selector()
182 COMMON_OVERLAP(s1, s2); in unisve_overlap_blli_id2()
192 COMMON_OVERLAP(s1, s2); in unisve_overlap_blli_id3()
194 if (s1->proto != s2->proto) in unisve_overlap_blli_id3()
202 if (s1->ipi == s2->ipi) { in unisve_overlap_blli_id3()
205 if (s1->oui == s2->oui && s1->pid == s2->pid) in unisve_overlap_blli_id3()
217 COMMON_OVERLAP(s1, s2); in unisve_overlap_bhli()
[all …]
/f-stack/freebsd/crypto/rijndael/
H A Drijndael-alg-fst.c864 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt() local
875 s2 = GETU32(pt + 8) ^ rk[2]; in rijndaelEncrypt()
957 Te2[(s2 >> 8) & 0xff] ^ in rijndaelEncrypt()
962 Te1[(s2 >> 16) & 0xff] ^ in rijndaelEncrypt()
996 s2 = in rijndaelEncrypt()
1028 s2 = in rijndaelEncrypt()
1034 PUTU32(ct + 8, s2); in rijndaelEncrypt()
1056 s2 = GETU32(ct + 8) ^ rk[2]; in rijndaelDecrypt()
1177 s2 = in rijndaelDecrypt()
1209 s2 = in rijndaelDecrypt()
[all …]
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_string.h53 #define ngx_strncmp(s1, s2, n) strncmp((const char *) s1, (const char *) s2, n) argument
57 #define ngx_strcmp(s1, s2) strcmp((const char *) s1, (const char *) s2) argument
60 #define ngx_strstr(s1, s2) strstr((const char *) s1, (const char *) s2) argument
148 #define ngx_memcmp(s1, s2, n) memcmp((const char *) s1, (const char *) s2, n) argument
161 ngx_int_t ngx_strcasecmp(u_char *s1, u_char *s2);
162 ngx_int_t ngx_strncasecmp(u_char *s1, u_char *s2, size_t n);
164 u_char *ngx_strnstr(u_char *s1, char *s2, size_t n);
166 u_char *ngx_strstrn(u_char *s1, char *s2, size_t n);
167 u_char *ngx_strcasestrn(u_char *s1, char *s2, size_t n);
170 ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n);
[all …]
H A Dngx_string.c593 c2 = (ngx_uint_t) *s2++; in ngx_strcasecmp()
619 c2 = (ngx_uint_t) *s2++; in ngx_strncasecmp()
647 c2 = *(u_char *) s2++; in ngx_strnstr()
649 n = ngx_strlen(s2); in ngx_strnstr()
686 c2 = *(u_char *) s2++; in ngx_strstrn()
709 c2 = (ngx_uint_t) *s2++; in ngx_strcasestrn()
741 c2 = (ngx_uint_t) *s2++; in ngx_strlcasestrn()
773 if (s1[n] != s2[n]) { in ngx_rstrncmp()
803 c2 = s2[n]; in ngx_rstrncasecmp()
836 m = ngx_memcmp(s1, s2, n); in ngx_memn2cmp()
[all …]
/f-stack/freebsd/contrib/openzfs/module/icp/algs/aes/
H A Daes_impl_generic.c992 s2 = pt[2] ^ rk[2]; in aes_generic_encrypt()
1014 t2 = Te0[s2 >> 24] ^ in aes_generic_encrypt()
1023 Te3[s2 & 0xff] ^ in aes_generic_encrypt()
1044 s2 = Te0[t2 >> 24] ^ in aes_generic_encrypt()
1081 ct[2] = s2; in aes_generic_encrypt()
1119 s2 = ct[2] ^ rk[2]; in aes_generic_decrypt()
1131 Td2[(s2 >> 8) & 0xff] ^ in aes_generic_decrypt()
1138 Td3[s2 & 0xff] ^ in aes_generic_decrypt()
1141 t2 = Td0[s2 >> 24] ^ in aes_generic_decrypt()
1171 s2 = Td0[t2 >> 24] ^ in aes_generic_decrypt()
[all …]
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-log-arc.S88 sd s2, 16(sp) // Save register
90 ld s2, 0(s1) // Get value of the current log buffer location
91 dsubu s0, s0, s2 // Subtract the end pointer and the write pointer
95 sd ra, 8(s2) // Write the pc to the log
97 sd s3, 0(s2) // Write the log header
98 daddu s2, s2, 16 // Increment the write location ptr
99 sd s2, 0(s1) // Store the write location ptr
103 ld s2, 16(sp) // Restore register
/f-stack/freebsd/crypto/des/
H A Ddes_locl.h183 s2=(int)(u>>24L); \
185 s2&=0xfc; \
194 s2=(int)(t>>24L); \
196 s2&=0xfc; \
207 s2&=0xfc; \
269 s2=(int)u>>24L; \
271 s2&=0x3f; \
273 LL^=des_SPtrans[6][s2]; \
280 s2=(int)t>>24L; \
282 s2&=0x3f; \
[all …]
/f-stack/freebsd/contrib/libsodium/test/quirks/
H A Dquirks.h25 # define strcmp(s1, s2) xstrcmp(s1, s2) argument
28 strcmp(const char *s1, const char *s2) in strcmp() argument
30 while (*s1 == *s2++) { in strcmp()
35 return *(unsigned char *) s1 - *(unsigned char *) --s2; in strcmp()
/f-stack/freebsd/libkern/
H A Dstrcasecmp.c44 strcasecmp(const char *s1, const char *s2) in strcasecmp() argument
46 const u_char *us1 = (const u_char *)s1, *us2 = (const u_char *)s2; in strcasecmp()
57 strncasecmp(const char *s1, const char *s2, size_t n) in strncasecmp() argument
62 const u_char *us2 = (const u_char *)s2; in strncasecmp()
H A Dstrcmp.c44 (strcmp)(const char *s1, const char *s2)
46 while (*s1 == *s2++)
49 return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
H A Dstrncmp.c38 strncmp(const char *s1, const char *s2, size_t n) in strncmp() argument
44 if (*s1 != *s2++) in strncmp()
46 *(const unsigned char *)(s2 - 1)); in strncmp()
H A Dmemcmp.c44 (memcmp)(const void *s1, const void *s2, size_t n)
47 const unsigned char *p1 = s1, *p2 = s2;
/f-stack/app/redis-5.0.5/tests/unit/type/
H A Dstream.tcl164 r XADD s2 * old abcd1234
167 r XADD s2 * new abcd1234
176 r XADD s2 * foo abcd1234
213 r XADD s2 * old abcd1234
215 $rd XREAD BLOCK 20000 STREAMS s2 s2 s2 $ $ $
216 r XADD s2 * new abcd1234
223 r XADD s2 * old abcd1234
225 $rd XREAD BLOCK 20000 STREAMS s2 s2 s2 $ $ $
227 r XADD s2 * field one
228 r XADD s2 * field two
[all …]
/f-stack/freebsd/contrib/openzfs/module/unicode/
H A Du8_textprep.c339 uchar_t *s2; in u8_validate() local
422 s2 = p[i]; in u8_validate()
424 if (*s1 != *s2 || *s2 == '\0') in u8_validate()
427 s2++; in u8_validate()
632 s2++; in do_case_compare()
641 s2 += sz2; in do_case_compare()
1778 if (U8_ISASCII(*s2) && ((s2 + 1) >= s2last || in do_norm_compare()
1779 ((s2 + 1) < s2last && U8_ISASCII(*(s2 + 1))))) { in do_norm_compare()
1788 s2++; in do_norm_compare()
1879 return (n == 0 ? strcmp(s1, s2) : strncmp(s1, s2, n)); in u8_strcmp()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/regulator/
H A Dqcom,smd-rpm-regulator.yaml25 For mp5496, s2
27 For pm8841, s1, s2, s3, s4, s5, s6, s7, s8
29 For pm8916, s1, s2, s3, s4, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11,
32 For pm8941, s1, s2, s3, s4, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11,
36 For pm8994, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, l1, l2, l3,
40 For pm8998, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, l1, l2,
44 For pma8084, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, l1, l2, l3,
48 For pmi8994, s1, s2, s3, boost-bypass
52 For pms405, s1, s2, s3, s4, s5, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11,
/f-stack/tools/netstat/
H A Dmroute.c85 char s1[256], s2[256], s3[256]; in print_bw_meter() local
112 snprintf(s2, sizeof(s2), "%ju", in print_bw_meter()
117 strcpy(s2, "?"); in print_bw_meter()
121 (u_long)bw_meter->bm_start_time.tv_usec, s1, s2); in print_bw_meter()
136 snprintf(s2, sizeof(s2), "%ju", in print_bw_meter()
141 strcpy(s2, "?"); in print_bw_meter()
146 (u_long)bw_meter->bm_threshold.b_time.tv_usec, s1, s2); in print_bw_meter()
/f-stack/freebsd/sys/
H A Dbitset.h134 #define BIT_OR2(_s, d, s1, s2) do { \ argument
137 (d)->__bits[__i] = (s1)->__bits[__i] | (s2)->__bits[__i];\
146 #define BIT_AND2(_s, d, s1, s2) do { \ argument
149 (d)->__bits[__i] = (s1)->__bits[__i] & (s2)->__bits[__i];\
158 #define BIT_ANDNOT2(_s, d, s1, s2) do { \ argument
161 (d)->__bits[__i] = (s1)->__bits[__i] & ~(s2)->__bits[__i];\
170 #define BIT_XOR2(_s, d, s1, s2) do { \ argument
173 (d)->__bits[__i] = (s1)->__bits[__i] ^ (s2)->__bits[__i];\
/f-stack/dpdk/app/test/
H A Dtest_ring_perf.c74 unsigned c1, c2, s1, s2; in get_two_hyperthreads() local
86 s2 = rte_lcore_to_socket_id(id2); in get_two_hyperthreads()
87 if ((c1 == c2) && (s1 == s2)){ in get_two_hyperthreads()
101 unsigned c1, c2, s1, s2; in get_two_cores() local
110 s2 = rte_lcore_to_socket_id(id2); in get_two_cores()
111 if ((c1 != c2) && (s1 == s2)){ in get_two_cores()
125 unsigned s1, s2; in get_two_sockets() local
131 s2 = rte_lcore_to_socket_id(id2); in get_two_sockets()
132 if (s1 != s2){ in get_two_sockets()
/f-stack/freebsd/contrib/openzfs/cmd/zed/
H A Dzed_strings.c45 const char *s2; in _zed_strings_node_compare() local
53 s2 = ((const zed_strings_node_t *) x2)->key; in _zed_strings_node_compare()
54 assert(s2 != NULL); in _zed_strings_node_compare()
55 rv = strcmp(s1, s2); in _zed_strings_node_compare()
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/
H A Djemalloc_macros.h.in63 # define JEMALLOC_ALLOC_SIZE2(s1, s2) argument
90 # define JEMALLOC_ALLOC_SIZE2(s1, s2) JEMALLOC_ATTR(alloc_size(s1, s2)) argument
93 # define JEMALLOC_ALLOC_SIZE2(s1, s2) argument
114 # define JEMALLOC_ALLOC_SIZE2(s1, s2) argument
/f-stack/tools/libxo/libxo/
H A Dxo_humanize.h67 int b, i, r, maxscale, s1, s2, sign; in xo_humanize_number() local
156 s2 = b % 10; in xo_humanize_number()
159 s1, localeconv()->decimal_point, s2, in xo_humanize_number()
/f-stack/tools/libutil/
H A Dhumanize_number.c55 int i, r, remainder, s1, s2, sign; in humanize_number() local
172 s2 = ((remainder * 10 + divisor / 2) / divisor) % 10; in humanize_number()
174 sign * s1, localeconv()->decimal_point, s2, in humanize_number()
/f-stack/freebsd/mips/include/
H A Dpcb.h80 lw s2, TD_FLAGS(s1) ;\
82 and s2, s0 ;\
87 beq s2, zero, 4f ;\
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/
H A Ded25519_ref10.c1114 int64_t s2; in sc25519_muladd() local
1235 s2 += carry1; in sc25519_muladd()
1408 s2 += carry1; in sc25519_muladd()
1438 s2 += carry1; in sc25519_muladd()
1440 carry2 = s2 >> 21; in sc25519_muladd()
1482 s2 += carry1; in sc25519_muladd()
1518 s[6] = s2 >> 6; in sc25519_muladd()
1742 s2 += carry1; in sc25519_reduce()
1772 s2 += carry1; in sc25519_reduce()
1816 s2 += carry1; in sc25519_reduce()
[all …]
/f-stack/freebsd/contrib/zlib/
H A Dzutil.c160 int ZLIB_INTERNAL zmemcmp(s1, s2, len) in zmemcmp() argument
162 const Bytef* s2;
168 if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;

12345