Searched defs:retval (Results 1 - 25 of 81) sorted by relevance

1234

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A DXform.c119 int retval; local
123 retval = 0;
126 retval = EINVAL;
129 retval = ENODEV;
133 retval = EBUFSIZE;
136 retval = EBUSY;
139 retval = EROFS;
142 retval = ENOMEM;
145 retval = ENOSPC;
149 retval
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_getstring.c15 const GLubyte *retval; local
16 retval = cr_server.head_spu->dispatch_table.GetString( name );
17 if (retval)
18 crServerReturnValue( retval, crStrlen((char *)retval) + 1 );
21 return retval; /* WILL PROBABLY BE IGNORED */
H A Dserver_bufferobject.c81 GLboolean retval = crStateIsBufferARB(buffer); local
82 crServerReturnValue( &retval, sizeof(retval) );
83 return retval; /* WILL PROBABLY BE IGNORED */
H A Dserver_lists.c52 GLuint retval; local
53 retval = cr_server.head_spu->dispatch_table.GenLists( range );
54 crServerReturnValue( &retval, sizeof(retval) );
55 return retval; /* WILL PROBABLY BE IGNORED */
258 GLboolean retval; local
260 retval = cr_server.head_spu->dispatch_table.IsList( list );
261 crServerReturnValue( &retval, sizeof(retval) );
262 return retval;
[all...]
H A Dserver_framebuffer.c197 GLboolean retval = crStateIsFramebufferEXT(framebuffer); local
198 crServerReturnValue( &retval, sizeof(retval) );
199 return retval; /* WILL PROBABLY BE IGNORED */
206 GLboolean retval = crStateIsRenderbufferEXT(renderbuffer); local
207 crServerReturnValue( &retval, sizeof(retval) );
208 return retval; /* WILL PROBABLY BE IGNORED */
H A Dserver_texture.c255 GLboolean retval; local
256 retval = cr_server.head_spu->dispatch_table.IsTexture(crStateGetTextureHWID(texture));
257 crServerReturnValue( &retval, sizeof(retval) );
258 return retval; /* WILL PROBABLY BE IGNORED */
266 GLboolean retval; local
277 retval = cr_server.head_spu->dispatch_table.AreTexturesResident(n, textures2, res);
285 return retval; /* WILL PROBABLY BE IGNORED */
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dflockfile.c77 int retval; local
82 retval = 0;
91 retval = -1;
95 return retval;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Daccess.c40 @retval 0 Successful completion.
41 @retval -1 File is not accessible with the given Mode. The error condition
52 int retval = -1; local
66 retval = stat(Path, &FileStat);
67 if(retval == 0) {
76 retval = 0;
108 retval = 0;
117 return retval;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/
H A DMisc.c45 int retval = 0; local
49 retval = EINVAL;
59 retval = ERANGE;
62 return retval;
/vbox/src/VBox/Devices/PC/ipxe/src/hci/
H A Deditstring.c161 int retval = 0; local
214 retval = key;
218 return retval;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DEnvirons.c71 int retval = 1; local
75 retval = 0;
77 return retval;
134 @retval EXIT_FAILURE EFIerrno will contain the EFI status code
137 @retval EXIT_SUCCESS EFIerrno will contain the EFI status returned
139 @retval 0 If string is NULL, 0 means a command processor
141 @retval 1 If string is NULL, 1 means a command processor
178 char *retval = NULL; local
183 retval = UnicodeStrToAsciiStr( EfiEnv, gMD->ASgetenv);
186 return retval;
217 int retval; local
[all...]
/vbox/src/VBox/GuestHost/OpenGL/spu_loader/
H A Dspuinit.c101 int retval; local
129 retval = 0;
134 retval = 1; /* all done! */
161 return retval;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dmath.h44 double retval; member in struct:_exception
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsCOMArray.cpp72 PRInt32 retval = -1; local
78 retval = i;
82 return retval;
H A DnsValueArray.cpp143 PRBool retval = PR_FALSE; local
213 return retval;
221 PRBool retval = PR_FALSE; local
238 return retval;
267 nsValueArrayValue retval = NSVALUEARRAY_INVALID; local
272 retval = (nsValueArrayIndex)*((PRUint8*)&mValueArray[aIndex * mBytesPerValue]);
275 retval = (nsValueArrayIndex)*((PRUint16*)&mValueArray[aIndex * mBytesPerValue]);
278 retval = (nsValueArrayIndex)*((PRUint32*)&mValueArray[aIndex * mBytesPerValue]);
286 return retval;
293 nsValueArrayIndex retval local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tests/
H A DTestThreads.cpp242 int retval = 0; local
258 retval = Stress(loops, threads);
270 retval = StressNSPR(loops, threads);
279 return retval;
/vbox/src/recompiler/
H A Dqemu-timer.h92 int64_t retval; local
100 : "=r" (retval));
109 : "=r" (retval), "=r" (junk));
111 return retval;
/vbox/include/VBox/HostServices/
H A DVBoxOpenGLSvc.h124 /** 64bit, out: retval
127 HGCMFunctionParameter retval; member in struct:__anon69
163 /** 64bit, out: retval
166 HGCMFunctionParameter retval; member in struct:__anon70
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16callb.c106 int retval; local
110 retval = vsscanf((const unsigned char *)buf, (const unsigned char *)fmt, arglist);
112 return retval;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dmath.h379 double retval; member in struct:exception
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/UefiShell/
H A DdaShell.c44 @retval 0 Successful completion.
45 @retval -1 Operation failed. Further information is specified by errno.
65 @retval 0 Successful completion.
66 @retval -1 Operation failed. Further information is specified by errno.
155 @retval 0 The directory was created successfully.
156 @retval -1 An error occurred and an error code is stored in errno.
171 int retval = -1; local
188 retval = 0;
196 return retval;
318 @retval
395 int retval = 0; local
475 int retval; local
598 short retval = 0; local
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dmath.h35 double retval; member in struct:_exception
/vbox/src/VBox/Devices/PC/BIOS/
H A Dfloppy.c302 bx_bool retval; local
351 retval = 1;
357 retval = 1;
363 retval = 1;
369 retval = 1;
375 retval = 1;
382 retval = 1;
388 retval = 0;
418 return retval;
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dfilenet.c84 int retval = write( conn->fd, buf, len ); local
85 if ( retval < (int) len )
87 crError( "crFileWriteExact: %s (tried to write %d bytes, actually wrote %d)", conn->filename, len, retval );
H A Dhull.c85 double npnts[8], pnt[2], retval, d[2]; local
114 retval = _segment_segment_intersection(points + 2 * sort[b + 1], pnt,
117 if (retval <= 0.001)
120 retval = _segment_segment_intersection(points + 2 * sort[b + 1], pnt,
125 if (retval > 0.001)
129 npnts[2 * b + 4] = points[2 * sort[b + 1]] + retval * d[0];
130 npnts[2 * b + 5] = points[2 * sort[b + 1] + 1] + retval * d[1];
171 int a, retval; local
204 retval = _segment_hull_intersect(min, max, pnts, hull, hull_len, intr_pnts);
205 if (retval !
[all...]

Completed in 843 milliseconds

1234