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

12

/seL4-test-master/projects/musllibc/src/string/
H A Dbcmp.c5 int bcmp(const void *s1, const void *s2, size_t n) argument
7 return memcmp(s1, s2, n);
H A Dbcopy.c5 void bcopy(const void *s1, void *s2, size_t n) argument
7 memmove(s2, s1, n);
/seL4-test-master/tools/nanopb/tests/regression/issue_322/
H A Ddefaults.c17 TEST(msg->s1[0] == (char)0xC3 && msg->s1[1] == (char)0xA4 &&
18 msg->s1[2] == (char)0xC3 && msg->s1[3] == (char)0xB6 &&
19 msg->s1[4] == '\0');
/seL4-test-master/projects/musllibc/src/math/
H A Datanf.c43 float_t w,s1,s2,z; local
88 s1 = z*(aT[0]+w*(aT[2]+w*aT[4]));
91 return x - x*(s1+s2);
92 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A Datan.c65 double_t w,s1,s2,z; local
110 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
113 return x - x*(s1+s2);
114 z = atanhi[id] - (x*(s1+s2) - atanlo[id] - x);
H A Dsqrt.c88 uint32_t r,t1,s1,ix1,q1; local
128 q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */
145 t1 = s1 + r;
148 s1 = t1 + r;
149 if ((t1&sign) == sign && (s1&sign) == 0)
H A Datanl.c132 long double w, s1, s2, z; local
177 s1 = z*T_even(w);
180 return x - x*(s1+s2);
181 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A Dlgamma_r.c129 s1 = 2.14982415960608852501e-01, /* 0x3FCB848B, 0x36E20878 */ variable
258 p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
H A Dlgammaf_r.c64 s1 = 2.1498242021e-01, /* 0x3e5c245a */ variable
193 p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
H A Dlgammal.c173 s1 = -3.901428390086348447890408306153378922752E6L, variable
311 p = y * (s0 + y * (s1 + y * (s2 + y * (s3 + y * (s4 + y * (s5 + y * s6))))));
/seL4-test-master/projects/musllibc/include/
H A Dsched.h123 #define CPU_AND(d,s1,s2) CPU_AND_S(sizeof(cpu_set_t),d,s1,s2)
124 #define CPU_OR(d,s1,s2) CPU_OR_S(sizeof(cpu_set_t),d,s1,s2)
125 #define CPU_XOR(d,s1,s2) CPU_XOR_S(sizeof(cpu_set_t),d,s1,s2)
128 #define CPU_EQUAL(s1,s2) CPU_EQUAL_S(sizeof(cpu_set_t),s1,s2)
/seL4-test-master/tools/seL4/elfloader-tool/include/
H A Dstrops.h13 int strncmp(const char *s1, const char *s2, size_t n);
/seL4-test-master/tools/nanopb/extra/
H A Dpb_syshdr.h90 static void * memcpy( void *s1, const void *s2, size_t n ) argument
92 char * dest = (char *) s1;
98 return s1;
/seL4-test-master/tools/riscv-pk/util/
H A Dstring.c53 int strcmp(const char* s1, const char* s2) argument
58 c1 = *s1++;
/seL4-test-master/kernel/src/
H A Dutil.c75 int PURE strncmp(const char *s1, const char *s2, int n) argument
81 diff = ((unsigned char *)s1)[i] - ((unsigned char *)s2)[i];
82 if (diff != 0 || s1[i] == '\0') {
/seL4-test-master/tools/seL4/elfloader-tool/src/
H A Dstring.c47 int strncmp(const char *s1, const char *s2, size_t n) argument
53 diff = ((unsigned char *)s1)[i] - ((unsigned char *)s2)[i];
54 if (diff != 0 || s1[i] == '\0') {
/seL4-test-master/kernel/src/arch/riscv/machine/
H A Dregisterset.c21 s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11,
/seL4-test-master/kernel/include/arch/riscv/arch/machine/
H A Dregisterset.h34 s1 = 8, enumerator in enum:_register
158 [seL4_TimeoutReply_s1] = s1, \
/seL4-test-master/kernel/libsel4/arch_include/riscv/sel4/arch/
H A Dtypes.h35 seL4_Word s1; member in struct:seL4_UserContext_
/seL4-test-master/projects/musllibc/src/regex/
H A Dregcomp.c2048 int s1, s2, i, j; local
2054 for (s1 = 0; set1[s1].position >= 0; s1++);
2056 new_set = tre_mem_calloc(mem, sizeof(*new_set) * (s1 + s2 + 1));
2060 for (s1 = 0; set1[s1].position >= 0; s1++)
2062 new_set[s1].position = set1[s1]
[all...]
/seL4-test-master/projects/seL4_libs/libsel4debug/arch_include/riscv/sel4debug/arch/
H A Dregisters.h25 "s1",
66 compile_time_assert(sp_correct_position, offsetof(seL4_UserContext, s1) == 5 * sizeof(seL4_Word));
/seL4-test-master/kernel/include/
H A Dutil.h97 int PURE strncmp(const char *s1, const char *s2, int n);
/seL4-test-master/kernel/src/arch/riscv/
H A Dtraps.S45 STORE s1, (8*REGBYTES)(t0)
/seL4-test-master/tools/riscv-pk/machine/
H A Dmentry.S120 STORE s1, 9*REGBYTES(sp)
171 LOAD s1, 9*REGBYTES(sp)
/seL4-test-master/projects/sel4test/apps/sel4test-tests/src/tests/
H A Dregressions.c180 context.s1 = 8;

Completed in 299 milliseconds

12