Searched refs:t1 (Results 1 - 25 of 85) sorted by relevance

1234

/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dop_nofil.c70 static PRFileDesc *t1; variable
80 t1 = PR_Open(NO_SUCH_FILE, PR_RDONLY, 0666);
81 if (t1 == NULL) {
93 if (PR_Close(t1) == PR_FAILURE) {
H A Dop_filnf.c66 static PRFileDesc *t1; variable
79 t1 = PR_Open("/usr/tmp/ttools/err03.tmp", PR_TRUNCATE | PR_RDWR, 0666);
80 if (t1 == NULL)
H A Dop_filok.c82 static PRFileDesc *t1; variable
93 t1 = PR_Open(EXISTING_FILENAME, PR_RDONLY, 0666);
95 if (t1 == NULL) {
101 if (PR_Close(t1) == PR_SUCCESS) {
H A Dop_2long.c66 static PRFileDesc *t1; variable
96 t1 = PR_Open(nameTooLong, PR_RDWR, 0666);
97 if (t1 == NULL) {
H A Dtimemac.c108 PRTime t1, t2; local
117 t1 = PR_Now();
121 PR_ExplodeTime(t1, PR_GMTParameters, &et);
131 if (LL_NE(t1, t2)) {
138 PR_ExplodeTime(t1, PR_LocalTimeParameters, &et);
145 if (LL_NE(t1, t2)) {
H A Dfileio.c83 static PRFileDesc *t1, *t2; variable
92 t1 = PR_Open("t1.tmp", PR_CREATE_FILE | PR_RDWR, 0);
93 PR_ASSERT(t1 != NULL);
98 nWritten = PR_Write((PRFileDesc*)t1, tbuf, TBSIZE);
101 rv = PR_Seek(t1,0,PR_SEEK_SET);
128 PR_Close(t1);
131 PR_Delete("t1.tmp");
213 reader, t1,
H A Dpriotest.c81 PRUint32 t3 = 0, t2 = 0, t1 = 0, t0, *tn = (PRUint32*)arg; local
85 *tn = (t3 + 3 * t2 + 3 * t1 + t0) / 8;
86 t3 = t2; t2 = t1; t1 = t0;
92 PRUint32 t3 = 0, t2 = 0, t1 = 0, t0, *tn = (PRUint32*)arg; local
98 *tn = (t3 + 3 * t2 + 3 * t1 + t0) / 8;
99 t3 = t2; t2 = t1; t1 = t0;
H A Dperf.c225 PRThread *t1, *t2; local
231 t1 = PR_CreateThread(PR_USER_THREAD,
237 if (NULL == t1) {
243 t1));
316 PRThread *t1, *t2; local
326 t1 = PR_CreateThread(PR_USER_THREAD,
333 if (NULL == t1) {
339 t1));
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Arm/machine/
H A Dbyte_swap.h41 uint32_t t1; local
43 t1 = v ^ ((v << 16) | (v >> 16));
44 t1 &= 0xff00ffffU;
46 v ^= (t1 >> 8);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dos_Irix.s53 li t1,1
54 beq v0,t1,retry_push
58 beq v0,t1,retry_push
60 sc t1,0(a0)
61 beq t1,0,retry_push
113 li t1,1
116 beq v0,t1,retry_pop
122 beq v0,t1,retry_pop
124 sc t1,0(a0)
125 beq t1,
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tests/
H A DTestAutoLock.cpp76 PRThread* t1 = local
89 PR_JoinThread(t1);
H A DTestCRT.cpp67 nsAutoString t1,t2; local
68 t1.AssignWithConversion(s1);
70 const PRUnichar* us1 = t1.get();
/vbox/src/recompiler/
H A Ddef-helper.h131 #define DEF_HELPER_1(name, ret, t1) \
132 DEF_HELPER_FLAGS_1(name, 0, ret, t1)
133 #define DEF_HELPER_2(name, ret, t1, t2) \
134 DEF_HELPER_FLAGS_2(name, 0, ret, t1, t2)
135 #define DEF_HELPER_3(name, ret, t1, t2, t3) \
136 DEF_HELPER_FLAGS_3(name, 0, ret, t1, t2, t3)
137 #define DEF_HELPER_4(name, ret, t1, t2, t3, t4) \
138 DEF_HELPER_FLAGS_4(name, 0, ret, t1, t2, t3, t4)
148 #define DEF_HELPER_FLAGS_1(name, flags, ret, t1) \
149 dh_ctype(ret) HELPER(name) (dh_ctype(t1));
[all...]
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/win32/
H A Dxptcinvoke_asm_alpha.s7 #define t1 $2 define
92 ldl t1,0(a0) // t1 = *that
94 addl t1,a1,t9
98 subl t3,64,t1
104 ldq a1,0(t1)
105 ldq a2,8(t1)
106 ldq a3,16(t1)
107 ldq a4,24(t1)
108 ldq a5,32(t1)
[all...]
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/
H A Dvtable_layout_x86.cpp14 virtual int t1(void);
21 int test::t1(void) { return 1; } function in class:test
44 if (tp[i] == (int) t->t1)
H A Dxptcinvoke_asm_irix.s77 # t1 = methodIndex * 8
79 sll t1, a1, 3
81 # t1 = methodIndex * 12
83 sll t1, a1, 2
84 subu t1, t1, a1
85 sll t1, t1, 2
91 addu t9, t9, t1
93 lw t9, 12(t9) # t9 = *(that+t1
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A De_sqrt.c115 u_int32_t r,t1,s1,ix1,q1; local
172 t1 = s1+r;
174 if((t<ix0)||((t==ix0)&&(t1<=ix1))) {
175 s1 = t1+r;
176 if(((t1&sign)==(u_int32_t)sign)&&(s1&sign)==0) s0 += 1;
178 if (ix1 < t1) ix0 -= 1;
179 ix1 -= t1;
H A De_log2.c43 double hfsq,f,s,z,R,w,t1,t2,dk; local
76 t1= w*(Lg2+w*(Lg4+w*Lg6));
79 R = t2+t1;
H A De_pow.c121 double y1,t1,t2,r,s,t,u,v,w; local
220 t1 = u+v;
221 SET_LOW_WORD(t1,0);
222 t2 = v-(t1-u);
268 t1 = (((z_h+z_l)+dp_h[k])+t);
269 SET_LOW_WORD(t1,0);
270 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
273 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
276 p_l = (y-y1)*t1+y*t2;
277 p_h = y1*t1;
[all...]
H A De_log.c105 double hfsq,f,s,z,R,w,t1,t2,dk; local
143 t1= w*(Lg2+w*(Lg4+w*Lg6));
146 R = t2+t1;
/vbox/src/recompiler/tcg/
H A Dtcg-op.h967 TCGv_i32 t1; local
970 t1 = tcg_temp_new_i32();
975 tcg_gen_mul_i32(t1, TCGV_LOW(arg1), TCGV_HIGH(arg2));
976 tcg_gen_add_i32(TCGV_HIGH(t0), TCGV_HIGH(t0), t1); local
977 tcg_gen_mul_i32(t1, TCGV_HIGH(arg1), TCGV_LOW(arg2));
978 tcg_gen_add_i32(TCGV_HIGH(t0), TCGV_HIGH(t0), t1); local
982 tcg_temp_free_i32(t1);
1449 TCGv_i32 t0, t1;
1451 t1 = tcg_temp_new_i32();
1455 tcg_gen_andi_i32(t1, ar
1540 TCGv_i32 t0, t1; local
1546 tcg_gen_mov_i32(TCGV_LOW(ret), t1); local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/lib/msgc/tests/
H A Dthrashgc.c152 Type1* t1 = NewType1(); local
153 t1->atwo = NewType2();
154 t1->next = NewType1();
155 t1->atwo->buf = NewBuffer(100);
156 p = t1;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Ddlg_p.g208 <<{nfa_node *t1;
209 t1 = new_nfa_node();
210 (t1)->trans[0]=$$.l;
211 (t1)->trans[1]=$1.l;
213 $$.l=t1; $$.r=NULL;
236 <<{nfa_node *t1, *t2;
237 t1 = new_nfa_node(); t2 = new_nfa_node();
238 (t1)->trans[0]=$$.l;
239 (t1)->trans[1]=$2.l;
244 $$.l=t1;
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dcfbmskbits.h478 register PixelGroup t1, dstpixel; \
491 DoRop(t1, rop, (src), dstpixel); \
493 dstpixel |= (t1 & planemask); \
608 PixelGroup t1, t2; \
610 PFILL2(planemask, t1); \
611 tmpmask &= t1; \
612 t1 = SCRRIGHT((src), (x)); \
613 DoRop(t2, rop, t1, *(pdst)); \
620 PixelGroup t1, t2; \
625 t1
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/tnl/
H A Dt_vb_cliptmp.h103 if (t > t1) t1 = t; \
108 if (t0 + t1 >= 1.0) \
126 GLfloat t1 = 0; local
166 INTERP_4F( t1, coord[newvert], coord[v1], coord[v0_orig] );
167 interp( ctx, t1, newvert, v1, v0_orig, GL_FALSE );
177 ASSERT(t1 == 0.0);

Completed in 155 milliseconds

1234