Searched refs:s2 (Results 1 - 25 of 33) 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
16 l2 = strlen(s2);
22 if (!memcmp(s1,s2,l2))
H A Dstrnicmp.c13 strnicmp(char const *s1, char const *s2, size_t len) argument
21 c2 = *s2;
23 s2++;
/fuchsia/zircon/bootloader/lib/
H A Dstrings.c8 int strcasecmp(const char* s1, const char* s2) { argument
10 int diff = tolower(*s1) - tolower(*s2);
15 s2++;
19 int strncasecmp(const char* s1, const char* s2, size_t len) { argument
21 int diff = tolower(*s1) - tolower(*s2);
26 s2++;
H A Dstring.c72 int strcmp(const char* s1, const char* s2) { argument
73 while (*s1 && (*s1 == *s2)) {
75 s2++;
77 return *s1 - *s2;
80 int strncmp(const char* s1, const char* s2, size_t len) { argument
82 int diff = *s1 - *s2;
87 s2++;
/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
82 s2 = w * (aT[1] + w * aT[3]);
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
108 s2 = w * (aT[1] + w * (aT[3] + w * (aT[5] + w * (aT[7] + w * aT[9]))));
110 return x - x * (s1 + s2);
111 z = atanhi[id] - (x * (s1 + s2) - atanlo[id] - x);
H A Dpow.c229 double ss, s2, s_h, s_l, t_h, t_l; local
264 s2 = ss * ss;
265 r = s2 * s2 * (L1 + s2 * (L2 + s2 * (L3 + s2 * (L4 + s2 * (L5 + s2 * L6)))));
267 s2
[all...]
H A Dpowf.c153 float s2, s_h, s_l, t_h, t_l; local
189 s2 = s * s;
190 r = s2 * s2 * (L1 + s2 * (L2 + s2 * (L3 + s2 * (L4 + s2 * (L5 + s2 * L6)))));
192 s2
[all...]
H A Datanl.c113 long double w, s1, s2, z; local
159 s2 = w * T_odd(w);
161 return x - x * (s1 + s2);
162 z = atanhi[id] - ((x * (s1 + s2) - atanlo[id]) - x);
H A Dlgamma_r.c129 s2 = 3.25778796408930981787e-01, /* 0x3FD4D98F, 0x4F139F59 */ variable
262 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");
23 ASSERT_EQ(ZX_OK, fdio_create_fd(&s2, &type, 1, &fd), "Socket from handle failed");
/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.pl58 $s2="%ecx";
105 movzb `&lo("$s2")`,$acc2
111 movzb `&hi("$s2")`,$acc1
118 shr \$16,$s2
128 movzb `&lo("$s2")`,$acc0
144 movzb `&hi("$s2")`,$acc2
150 mov 8($key),$s2
153 xor $t2,$s2
164 movzb `&lo("$s2")`,$acc2
171 movzb `&hi("$s2")`,
[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
284 s2 = (420.0 + a * (735.0 + a * (966.0 + a * (1141.0 + 1278.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
1891 for (s2 = 0; set2[s2].position >= 0; s2++)
1893 new_set = tre_mem_calloc(mem, sizeof(*new_set) * (s1 + s2 + 1));
1922 for (s2 = 0; set2[s2].position >= 0; s2++) {
1923 new_set[s1 + s2].position = set2[s2]
[all...]
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/aes/
H A Daes.c685 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; local
695 s2 = GETU32(in + 8) ^ rk[2];
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] ^
705 t2 = Te0[(s2 >> 24)] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^
708 Te3[(s2) & 0xff] ^ rk[7];
719 s2 = Te0[(t2 >> 24)] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^
734 s2 = (Te2[(t2 >> 24)] & 0xff000000) ^ (Te3[(t3 >> 16) & 0xff] & 0x00ff0000) ^
737 PUTU32(out + 8, s2);
747 uint32_t s0, s1, s2, s local
[all...]

Completed in 131 milliseconds

12