Searched refs:s0 (Results 1 - 25 of 31) sorted by relevance

12

/vbox/src/recompiler/tests/
H A Dtest-i386.h17 stringify(OP) size, s0, s1, res, iflags, flags & CC_MASK);
28 stringify(OP) size, s0, res, iflags, flags & CC_MASK);
32 void exec_opq(long s0, long s1, long iflags) argument
35 res = s0;
41 void exec_opl(long s0, long s1, long iflags) argument
44 res = s0;
49 void exec_opw(long s0, long s1, long iflags) argument
52 res = s0;
57 void exec_opb(long s0, long s1, long iflags) argument
60 res = s0;
66 exec_opq(long s0, long s1, long iflags) argument
75 exec_opl(long s0, long s1, long iflags) argument
83 exec_opw(long s0, long s1, long iflags) argument
91 exec_opb(long s0, long s1, long iflags) argument
100 exec_op(long s0, long s1) argument
[all...]
H A Dtest-i386-shift.h31 void exec_opq(long s2, long s0, long s1, long iflags) argument
34 res = s0;
41 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK);
45 void exec_opl(long s2, long s0, long s1, long iflags) argument
48 res = s0;
55 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
58 void exec_opw(long s2, long s0, long s1, long iflags) argument
61 res = s0;
68 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
82 void exec_opq(long s2, long s0, lon argument
96 exec_opl(long s2, long s0, long s1, long iflags) argument
109 exec_opw(long s2, long s0, long s1, long iflags) argument
125 exec_opb(long s0, long s1, long iflags) argument
139 exec_op(long s2, long s0, long s1) argument
[all...]
H A Dtest-i386-muldiv.h4 long res, s1, s0, flags; local
5 s0 = op0;
7 res = s0;
17 stringify(OP) "b", s0, s1, res, flags & CC_MASK);
H A Dtest-i386.c529 long res, s1, s0, flags; local
530 s0 = op0;
532 res = s0;
542 "imulw", s0, s1, res, flags & CC_MASK);
547 long res, s1, s0, flags; local
548 s0 = op0;
550 res = s0;
560 "imull", s0, s1, res, flags & CC_MASK);
566 long res, s1, s0, flags; local
567 s0
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A De_sqrt.c114 int32_t ix0,s0,q,m,t,i; local
155 q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */
159 t = s0+r;
161 s0 = t+r;
173 t = s0;
176 if(((t1&sign)==(u_int32_t)sign)&&(s1&sign)==0) s0 += 1;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Dgethex.c45 CONST unsigned char *decpt, *s0, *s, *s1; local
58 s0 = *(CONST unsigned char **)sp + 2;
59 while(s0[havedig] == '0')
61 s0 += havedig;
62 s = s0;
78 s0 = s;
116 n = (int)(s1 - s0 - 1);
125 while(s1 > s0) {
H A Ddtoa.c139 char *s, *s0; local
328 s = s0 = rv_alloc((size_t)i);
433 s = s0;
479 if (s == s0) {
778 if (s == s0) {
812 if (s == s0) { /* don't return empty string */
820 return s0;
H A Dgdtoa.c163 char *s, *s0; local
317 s = s0 = rv_alloc((size_t)i);
441 s = s0;
483 if (s == s0) {
785 if (s == s0) {
813 return s0;
H A Dstrtod.c82 CONST char *s, *s0, *s1; local
162 s0 = s;
182 s0 = s;
297 /* Now we have nd0 digits, starting at s0, followed by a
529 bd0 = s2b(s0, nd0, nd, y);
H A Dstrtodg.c343 CONST char *s, *s0, *s1; local
399 s0 = s;
419 s0 = s;
534 /* Now we have nd0 digits, starting at s0, followed by a
705 bd0 = s2b(s0, nd0, nd, y);
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/
H A Dxptcinvoke_asm_mips.s37 # and s0 are saved) and the low frame (where a0-a3 are saved by the callee
40 LOCALSZ=4 # s0, s1, ra, gp
85 REG_S s0, S0OFF(sp)
103 move s0, sp
116 # the old sp is still saved in s0, but we now need another argsave
124 lw gp, GPOFF(s0)
126 move sp, s0 # get orig sp back, popping params and argsave
158 lw gp, GPOFF(s0)
160 move sp, s0
163 REG_L s0, S0OF
[all...]
H A Dxptcinvoke_asm_irix.s9 LOCALSZ=7 # a0, a1, a2, a3, s0, ra, gp
35 REG_S s0, S0OFF(sp)
137 move s0, sp
142 move sp, s0
146 REG_L s0, S0OFF(sp)
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/win32/
H A Dxptcinvoke_asm_alpha.s10 #define s0 $9 define
54 stq s0, S0OFF(sp)
118 bis sp,zero,s0
121 bis s0,zero,sp
123 ldq s0,S0OFF(sp)
H A Dxptcstubs_asm_alpha.s11 #define s0 $9 // callee saved (nonvolatile) registers define
/vbox/src/libs/xpcom18a4/xpcom/tests/windows/
H A DnsStringTest.h1151 nsCString s0;
1153 s0=s1;
1154 s0.Truncate(100); //should fail
1155 s0.Truncate(5); //should work
1156 s0.Truncate(0); //should work
1160 nsString s0;
1162 s0=s1;
1163 s0.Truncate(100); //should fail
1164 s0.Truncate(5); //should work
1165 s0
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Duxrng.c213 unsigned s0[2];
273 s0[0] = *iotimer_addr;
275 s0[1] = *(iotimer_addr + 1);
276 memcpy(buf, (char *)&s0[0], cntr_size);
277 return _pr_CopyLowBits(buf, maxbuf, &s0, cntr_size);
205 unsigned s0[2]; local
H A Dos_ReliantUNIX.s56 sw s0,104(a0) # gpregs[CXT_S0]
98 lw s0,104(a0) # gpregs[CXT_S0]
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dsha256.c105 uint32_t s0; local
142 s0 = ( ror32 ( w[i-15], 7 ) ^ ror32 ( w[i-15], 18 ) ^
146 w[i] = ( w[i-16] + s0 + w[i-7] + s1 );
151 s0 = ( ror32 ( *a, 2 ) ^ ror32 ( *a, 13 ) ^ ror32 ( *a, 22 ) );
153 t2 = ( s0 + maj );
/vbox/src/libs/xpcom18a4/xpcom/tests/StringFactoringTests/
H A Dtest_main.cpp471 nsLiteralCString s0("Patrick Beard made me write this: \"This is just a test\"\n");
472 print_string(s0);
484 print_string(nsLiteralCString("The value of the string |x| is \"") + Substring(s0, 0, s0.Length()-1) + NS_LITERAL_CSTRING("\". Hope you liked it."));
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dppp.h208 #define BCMP(s0, s1, l) memcmp((u_char *)(s0), (u_char *)(s1), (l))
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dppp_impl.h212 #define BCMP(s0, s1, l) memcmp((u_char *)(s0), (u_char *)(s1), (l))
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_mac.c139 u32 s0, s1; local
140 s0 = REG_READ(ah, AR_ISR_S0);
141 REG_WRITE(ah, AR_ISR_S0, s0);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_create.c195 uchar_t *s, *s0, *t; local
272 s = s0 = (uchar_t *)buf + sizeof (ctf_header_t) + hdr.cth_stroff;
292 dtd->dtd_data.ctt_name = (uint_t)(s - s0);
352 t = ctf_copy_smembers(dtd, (uint_t)(s - s0), t);
354 t = ctf_copy_lmembers(dtd, (uint_t)(s - s0), t);
359 t = ctf_copy_emembers(dtd, (uint_t)(s - s0), t);
/vbox/src/libs/libpng-1.2.8/
H A Dpngwtran.c549 png_uint_32 s0 = (*(rp ) << 8) | *(rp+1);
552 png_uint_32 red = (png_uint_32)((s0-s1) & 0xffffL);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprdtoa.c1618 CONST char *s, *s0, *s1; local
1664 s0 = s;
1697 s0 = s;
1797 /* Now we have nd0 digits, starting at s0, followed by a
2029 bd0 = s2b(s0, nd0, nd, y);
2767 char *s, *s0; local
2954 s = s0 = rv_alloc(i);
3057 s = s0;
3103 if (s == s0) {
3354 if (s == s0) {
[all...]

Completed in 4385 milliseconds

12