Searched refs:var (Results 26 - 50 of 166) sorted by relevance

1234567

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithStddev.d44 var = speculation();
45 speculate(var);
46 printf("Speculation ID: %d", var);
H A Derr.D_AGG_SPEC.SpeculateWithSum.d46 var = speculation();
47 speculate(var);
48 printf("Speculation ID: %d", var);
H A Dtst.SpeculationCommit.d42 self->var = speculation();
43 printf("Speculation ID: %d\n", self->var);
51 speculate(self->var);
53 printf("Called speculate on id: %d\n", self->var);
59 commit(self->var);
H A Dtst.SpeculationDiscard.d41 self->var = speculation();
42 printf("Speculation ID: %d\n", self->var);
50 speculate(self->var);
52 printf("Called speculate on id: %d\n", self->var);
58 discard(self->var);
H A Derr.D_ACT_SPEC.SpeculateWithChill.d48 var = speculation();
49 speculate(var);
50 printf("Speculation ID: %d", var);
H A Derr.D_ACT_SPEC.SpeculateWithCopyOut.d49 var = speculation();
54 speculate(var);
55 printf("Speculation ID: %d", var);
H A Derr.D_ACT_SPEC.SpeculateWithCopyOutStr.d48 var = speculation();
53 speculate(var);
54 printf("Speculation ID: %d", var);
H A Derr.D_ACT_SPEC.SpeculateWithPanic.d48 var = speculation();
49 speculate(var);
50 printf("Speculation ID: %d", var);
H A Derr.D_ACT_SPEC.SpeculateWithRaise.d47 var = speculation();
48 speculate(var);
49 printf("Speculation ID: %d", var);
H A Derr.D_ACT_SPEC.SpeculateWithStop.d47 var = speculation();
48 speculate(var);
49 printf("Speculation ID: %d", var);
H A Derr.D_AGG_SPEC.SpeculateWithLquant.d51 var = speculation();
52 speculate(var);
53 printf("Speculation ID: %d", var);
H A Derr.D_AGG_SPEC.SpeculateWithQuant.d51 var = speculation();
52 speculate(var);
53 printf("Speculation ID: %d", var);
H A Derr.D_PROTO_LEN.SpecNoId.d41 var = speculation();
42 printf("Speculation ID: %d", var);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/bitfields/
H A Derr.D_DECL_BFCONST.NegBitField.d41 } var;
H A Derr.D_DECL_BFCONST.ZeroBitField.d41 } var;
H A Derr.D_DECL_BFSIZE.GreaterThan64.d41 } var;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/scripting/
H A Dtst.D_MACRO_UNUSED.overflow.ksh45 dfilename=/var/tmp/$bname.$$.d
63 2>/var/tmp/err.$$.txt
70 grep "D_MACRO_UNUSED" /var/tmp/err.$$.txt >/dev/null 2>&1
73 /usr/bin/rm -f /var/tmp/err.$$.txt
78 /usr/bin/rm -f /var/tmp/err.$$.txt
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/
H A Dlibkir.h98 #define put_real_kir_const_off( var, seg, off ) \
104 : "r,r" ( var ), "rm,rm" ( seg ), "i,!r" ( off ) \
107 #define put_real_kir_nonconst_off( var, seg, off ) \
113 : "r" ( var ), "rm" ( seg ), "r" ( off ) \
116 #define put_real_kir( var, seg, off ) \
119 put_real_kir_const_off ( var, seg, off ); \
121 put_real_kir_nonconst_off ( var, seg, off ); \
124 #define get_real_kir_const_off( var, seg, off ) \
129 : "=r,r" ( var ) \
133 #define get_real_kir_nonconst_off( var, se
[all...]
/vbox/src/recompiler/
H A Dqemu-queue.h132 #define QLIST_FOREACH(var, head, field) \
133 for ((var) = ((head)->lh_first); \
134 (var); \
135 (var) = ((var)->field.le_next))
137 #define QLIST_FOREACH_SAFE(var, head, field, next_var) \
138 for ((var) = ((head)->lh_first); \
139 (var) && ((next_var) = ((var)->field.le_next), 1); \
140 (var)
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/slang/
H A Dslang_codegen.h41 _slang_codegen_global_variable(slang_assemble_ctx *A, slang_variable *var,
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Dmmx.h234 #define movq_m2r(var, reg) mmx_m2r(movq, var, reg)
235 #define movq_r2m(reg, var) mmx_r2m(movq, reg, var)
249 #define movd_m2r(var, reg) mmx_m2r(movd, var, reg)
250 #define movd_r2m(reg, var) mmx_r2m(movd, reg, var)
261 #define paddd_m2r(var, reg) mmx_m2r(paddd, var, re
[all...]
/vbox/src/libs/xpcom18a4/xpcom/proxy/public/
H A DnsProxiedService.h83 #define NS_WITH_PROXIED_SERVICE(T, var, cid, Q, rvAddr) \
84 nsProxiedService _serv##var(cid, NS_GET_IID(T), Q, PR_FALSE, rvAddr); \
85 T* var = (T*)(nsISupports*)_serv##var;
87 #define NS_WITH_ALWAYS_PROXIED_SERVICE(T, var, cid, Q, rvAddr) \
88 nsProxiedService _serv##var(cid, NS_GET_IID(T), Q, PR_TRUE, rvAddr); \
89 T* var = (T*)(nsISupports*)_serv##var;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/inline/
H A Dtst.InlineWritableAssign.d47 union var {
52 union var un1;
53 inline union var un2 = un1;
/vbox/src/libs/zlib-1.2.6/contrib/pascal/
H A Dzlibpas.pas22 in_func = function(opaque: Pointer; var buf: PByte): Integer;
106 function deflateInit(var strm: z_stream; level: Integer): Integer;
107 function deflate(var strm: z_stream; flush: Integer): Integer;
108 function deflateEnd(var strm: z_stream): Integer;
109 function inflateInit(var strm: z_stream): Integer;
110 function inflate(var strm: z_stream; flush: Integer): Integer;
111 function inflateEnd(var strm: z_stream): Integer;
114 function deflateInit2(var strm: z_stream; level, method, windowBits,
116 function deflateSetDictionary(var strm: z_stream; const dictionary: PChar;
118 function deflateCopy(var des
[all...]
/vbox/src/VBox/Devices/Network/slirp/
H A Dqueue.h184 #define SLIST_FOREACH(var, head, field) \
185 for ((var) = SLIST_FIRST((head)); \
186 (var); \
187 (var) = SLIST_NEXT((var), field))
189 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \
190 for ((var) = SLIST_FIRST((head)); \
191 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \
192 (var)
[all...]

Completed in 89 milliseconds

1234567