Searched refs:s2 (Results 1 - 25 of 37) sorted by relevance

12

/seL4-refos-master/libs/libmuslc/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-refos-master/libs/libmuslc/src/math/
H A Datanf.c43 float_t w,s1,s2,z; local
89 s2 = w*(aT[1]+w*aT[3]);
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
111 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));
113 return x - x*(s1+s2);
114 z = atanhi[id] - (x*(s1+s2) - atanlo[id] - x);
H A Dpow.c219 double ss,s2,s_h,s_l,t_h,t_l; local
254 s2 = ss*ss;
255 r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
257 s2
[all...]
H A Dpowf.c146 float s2,s_h,s_l,t_h,t_l; local
182 s2 = s*s;
183 r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
185 s2
[all...]
H A Datanl.c132 long double w, s1, s2, z; local
178 s2 = w*T_odd(w);
180 return x - x*(s1+s2);
181 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
/seL4-refos-master/libs/libmuslc/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-refos-master/seL4_tools/elfloader-tool/include/
H A Dstrops.h13 int strncmp(const char *s1, const char *s2, size_t n);
/seL4-refos-master/tools/elfloader/include/
H A Dstrops.h13 int strncmp(const char *s1, const char *s2, size_t n);
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/src/
H A Dhacklib.c357 strncmpi(s1, s2, n) /* case insensitive counted string comparison */
358 register const char *s1, *s2;
364 if (!*s2) return (*s1 != 0); /* s1 >= s2 */
365 else if (!*s1) return -1; /* s1 < s2 */
367 t2 = lowc(*s2++);
370 return 0; /* s1 == s2 */
383 register const char *s1, *s2; local
398 for ( s2 = sub; *s2;
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/src/
H A Dhacklib.c357 strncmpi(s1, s2, n) /* case insensitive counted string comparison */
358 register const char *s1, *s2;
364 if (!*s2) return (*s1 != 0); /* s1 >= s2 */
365 else if (!*s1) return -1; /* s1 < s2 */
367 t2 = lowc(*s2++);
370 return 0; /* s1 == s2 */
383 register const char *s1, *s2; local
398 for ( s2 = sub; *s2;
[all...]
/seL4-refos-master/kernel/src/arch/riscv/machine/
H A Dregisterset.c21 s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11,
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/include/
H A Dunixconf.h289 #define memcmp(s1, s2, n) bcmp(s2, s1, n)
H A Dartilist.h8 #define A(nam,typ,s1,s2,mt,atk,dfn,cry,inv,al,cl,rac,cost) nam
14 #define A(nam,typ,s1,s2,mt,atk,dfn,cry,inv,al,cl,rac,cost) \
15 { typ, nam, s1, s2, mt, atk, dfn, cry, inv, al, cl, rac, cost }
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/include/
H A Dunixconf.h289 #define memcmp(s1, s2, n) bcmp(s2, s1, n)
H A Dartilist.h8 #define A(nam,typ,s1,s2,mt,atk,dfn,cry,inv,al,cl,rac,cost) nam
14 #define A(nam,typ,s1,s2,mt,atk,dfn,cry,inv,al,cl,rac,cost) \
15 { typ, nam, s1, s2, mt, atk, dfn, cry, inv, al, cl, rac, cost }
/seL4-refos-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];
/seL4-refos-master/seL4_tools/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];
/seL4-refos-master/tools/elfloader/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];
/seL4-refos-master/kernel/include/arch/riscv/arch/machine/
H A Dregisterset.h48 s2 = 17, enumerator in enum:_register
159 [seL4_TimeoutReply_s2] = s2, \
/seL4-refos-master/kernel/libsel4/arch_include/riscv/sel4/arch/
H A Dtypes.h36 seL4_Word s2; member in struct:seL4_UserContext_
/seL4-refos-master/libs/libsel4/arch_include/riscv/sel4/arch/
H A Dtypes.h36 seL4_Word s2; member in struct:seL4_UserContext_
/seL4-refos-master/libs/libmuslc/src/regex/
H A Dregcomp.c2048 int s1, s2, i, j; local
2055 for (s2 = 0; set2[s2].position >= 0; s2++);
2056 new_set = tre_mem_calloc(mem, sizeof(*new_set) * (s1 + s2 + 1));
2087 for (s2 = 0; set2[s2].position >= 0; s2++)
2089 new_set[s1 + s2].position = set2[s2]
[all...]
/seL4-refos-master/libs/libsel4debug/arch_include/riscv/sel4debug/arch/
H A Dregisters.h26 "s2",
67 compile_time_assert(sp_correct_position, offsetof(seL4_UserContext, s2) == 6 * sizeof(seL4_Word));

Completed in 210 milliseconds

12