Searched refs:s1 (Results 1 - 25 of 32) sorted by relevance

12

/fuchsia/zircon/kernel/lib/libc/string/
H A Dstrcoll.c11 strcoll(const char *s1, const char *s2) argument
13 return strcmp(s1, s2);
H A Dstrstr.c12 strstr(char const *s1, char const *s2) argument
18 return (char *)s1;
19 l1 = strlen(s1);
22 if (!memcmp(s1,s2,l2))
23 return (char *)s1;
24 s1++;
H A Dstrnicmp.c13 strnicmp(char const *s1, char const *s2, size_t len) argument
20 c1 = *s1;
22 s1++;
/fuchsia/zircon/bootloader/lib/
H A Dstrings.c8 int strcasecmp(const char* s1, const char* s2) { argument
10 int diff = tolower(*s1) - tolower(*s2);
11 if (diff != 0 || *s1 == '\0') {
14 s1++;
19 int strncasecmp(const char* s1, const char* s2, size_t len) { argument
21 int diff = tolower(*s1) - tolower(*s2);
22 if (diff != 0 || *s1 == '\0') {
25 s1++;
H A Dstring.c72 int strcmp(const char* s1, const char* s2) { argument
73 while (*s1 && (*s1 == *s2)) {
74 s1++;
77 return *s1 - *s2;
80 int strncmp(const char* s1, const char* s2, size_t len) { argument
82 int diff = *s1 - *s2;
83 if (diff != 0 || *s1 == '\0') {
86 s1++;
/fuchsia/zircon/third_party/ulib/musl/src/string/
H A Dbcmp.c5 int bcmp(const void* s1, const void* s2, size_t n) { argument
6 return memcmp(s1, s2, n);
H A Dbcopy.c5 void bcopy(const void* s1, void* s2, size_t n) { argument
6 memmove(s2, s1, n);
/fuchsia/zircon/bootloader/include/
H A Dstrings.h9 int strcasecmp(const char* s1, const char* s2);
10 int strncasecmp(const char* s1, const char* s2, size_t len);
H A Dstring.h17 int strcmp(const char* s1, const char* s2);
18 int strncmp(const char* s1, const char* s2, size_t len);
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dmystring.h62 #define equal(s1, s2) (strcmp(s1, s2) == 0)
63 #define scopy(s1, s2) ((void)strcpy(s2, s1))
/fuchsia/zircon/third_party/ulib/musl/third_party/math/
H A Datanf.c37 float_t w, s1, s2, z; local
81 s1 = z * (aT[0] + w * (aT[2] + w * aT[4]));
84 return x - x * (s1 + s2);
85 z = atanhi[id] - ((x * (s1 + s2) - atanlo[id]) - x);
H A Datan.c63 double_t w, s1, s2, z; local
107 s1 = z * (aT[0] + w * (aT[2] + w * (aT[4] + w * (aT[6] + w * (aT[8] + w * aT[10])))));
110 return x - x * (s1 + s2);
111 z = atanhi[id] - (x * (s1 + s2) - atanlo[id] - x);
H A Datanl.c113 long double w, s1, s2, z; local
158 s1 = z * T_even(w);
161 return x - x * (s1 + s2);
162 z = atanhi[id] - ((x * (s1 + s2) - atanlo[id]) - x);
H A Dlgamma_r.c128 s1 = 2.14982415960608852501e-01, /* 0x3FCB848B, 0x36E20878 */ variable
262 p = y * (s0 + y * (s1 + y * (s2 + y * (s3 + y * (s4 + y * (s5 + y * s6))))));
H A Dlgammaf_r.c63 s1 = 2.1498242021e-01, /* 0x3e5c245a */ variable
197 p = y * (s0 + y * (s1 + y * (s2 + y * (s3 + y * (s4 + y * (s5 + y * s6))))));
/fuchsia/zircon/third_party/ulib/musl/include/
H A Dsched.h94 #define CPU_AND(d, s1, s2) CPU_AND_S(sizeof(cpu_set_t), d, s1, s2)
95 #define CPU_OR(d, s1, s2) CPU_OR_S(sizeof(cpu_set_t), d, s1, s2)
96 #define CPU_XOR(d, s1, s2) CPU_XOR_S(sizeof(cpu_set_t), d, s1, s2)
99 #define CPU_EQUAL(s1, s2) CPU_EQUAL_S(sizeof(cpu_set_t), s1, s2)
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/
H A Djemalloc_macros.h63 # define JEMALLOC_ALLOC_SIZE2(s1, s2)
90 # define JEMALLOC_ALLOC_SIZE2(s1, s2) JEMALLOC_ATTR(alloc_size(s1, s2))
93 # define JEMALLOC_ALLOC_SIZE2(s1, s2)
114 # define JEMALLOC_ALLOC_SIZE2(s1, s2)
H A Djemalloc.h147 # define JEMALLOC_ALLOC_SIZE2(s1, s2)
174 # define JEMALLOC_ALLOC_SIZE2(s1, s2) JEMALLOC_ATTR(alloc_size(s1, s2))
177 # define JEMALLOC_ALLOC_SIZE2(s1, s2)
198 # define JEMALLOC_ALLOC_SIZE2(s1, s2)
/fuchsia/zircon/system/utest/fdio/
H A Dfdio_socket.c17 zx_handle_t s1, s2; local
18 ASSERT_EQ(ZX_OK, zx_socket_create(ZX_SOCKET_STREAM | ZX_SOCKET_HAS_CONTROL, &s1, &s2), "Socket create failed");
26 *socket_out = s1;
/fuchsia/zircon/kernel/lib/libc/include/
H A Dstring.h35 int strcoll(const char *s1, const char *s2) __PURE;
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/aes/asm/
H A Daes-x86_64.pl57 $s1="%ebx";
104 movzb `&lo("$s1")`,$acc1
110 movzb `&hi("$s1")`,$acc0
124 shr \$16,$s1
137 movzb `&lo("$s1")`,$acc2
143 movzb `&hi("$s1")`,$acc1
149 mov 4($key),$s1
152 xor $t1,$s1
163 movzb `&lo("$s1")`,$acc1
170 movzb `&hi("$s1")`,
[all...]
/fuchsia/zircon/third_party/ulib/jemalloc/test/include/test/
H A Dmath.h224 double e, aa, xx, c, ch, a, q, p1, p2, t, x, b, s1, s2, s3, s4, s5, s6; local
282 s1 = (210.0 + a * (140.0 + a * (105.0 + a * (84.0 + a * (70.0 +
291 ch += t * (1.0 + 0.5 * t * s1 - b * c * (s1 - b * (s2 - b * (s3
/fuchsia/zircon/third_party/ulib/musl/third_party/tre/
H A Dregcomp.c1882 int s1, s2, i, j; local
1889 for (s1 = 0; set1[s1].position >= 0; s1++)
1893 new_set = tre_mem_calloc(mem, sizeof(*new_set) * (s1 + s2 + 1));
1897 for (s1 = 0; set1[s1].position >= 0; s1++) {
1898 new_set[s1].position = set1[s1]
[all...]
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/sha/
H A Dsha256.c222 s1 = X[(i + 14) & 0x0f]; \
223 s1 = sigma1(s1); \
224 T1 = X[(i) & 0x0f] += s0 + s1 + X[(i + 9) & 0x0f]; \
230 uint32_t a, b, c, d, e, f, g, h, s0, s1, T1; local
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/aes/
H A Daes.c685 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; local
694 s1 = GETU32(in + 4) ^ rk[1];
701 t0 = Te0[(s0 >> 24)] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^
703 t1 = Te0[(s1 >> 24)] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^
706 Te3[(s1) & 0xff] ^ rk[6];
707 t3 = Te0[(s3 >> 24)] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^
717 s1 = Te0[(t1 >> 24)] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^
730 s1 = (Te2[(t1 >> 24)] & 0xff000000) ^ (Te3[(t2 >> 16) & 0xff] & 0x00ff0000) ^
733 PUTU32(out + 4, s1);
747 uint32_t s0, s1, s local
[all...]

Completed in 177 milliseconds

12