Searched defs:mode (Results 1 - 25 of 409) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dfwide.c50 fwide(FILE *fp, int mode) argument
62 * for mode value.
66 if (mode > 0)
67 mode = 1;
68 else if (mode < 0)
69 mode = -1;
76 if (wcio->wcio_mode == 0 && mode != 0)
77 wcio->wcio_mode = mode;
79 mode = wcio->wcio_mode;
82 return mode;
[all...]
H A Dflags.c2 Implementation of internal function to return the (stdio) flags for a given mode.
58 * Return the (stdio) flags for a given mode. Store the flags
63 __sflags(const char *mode, int *optr) argument
67 _DIAGASSERT(mode != NULL);
69 switch (*mode++) {
89 default: /* illegal mode */
98 for (; *mode; mode++)
99 switch (*mode) {
H A Dfopen.c60 fopen(const char *file, const char *mode) argument
67 if ((flags = __sflags(mode, &oflags)) == 0)
96 * When opening in append mode, even though we use O_APPEND,
H A Dsetvbuf.c62 setvbuf(FILE *fp, char *buf, int mode, size_t size) argument
80 if (mode != _IONBF)
81 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0)
102 /* If setting unbuffered mode, skip all the hard work. */
103 if (mode == _IONBF)
156 if (mode == _IOLBF)
H A Dfreopen.c68 freopen(const char *file, const char *mode, FILE *fp) argument
74 _DIAGASSERT(mode != NULL);
81 if ((flags = __sflags(mode, &oflags)) == 0) {
190 * When reopening in append mode, even though we use O_APPEND,
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A DXform.c53 // We just set the flags here since the only valid EFI mode with create
82 O_APPEND -- set append mode
91 Omode2EFI( int mode) argument
96 if((mode & O_ACCMODE) == 0) {
100 if((mode & O_HIDDEN) != 0) {
104 if((mode & O_SYSTEM) != 0) {
108 if((mode & O_ARCHIVE) != 0) {
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/
H A DUIWizard.h39 WizardMode mode() { return m_mode; } function in class:UIWizard
54 UIWizard(QWidget *pParent, WizardType type, WizardMode mode = WizardMode_Auto);
/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_lists.h29 GLenum mode; /* GL_COMPILE, GL_COMPILE_AND_EXECUTE or zero */ member in struct:__anon16214
H A Dcr_fog.h25 CRbitvalue mode[CR_MAX_BITARRAY]; member in struct:__anon16191
41 GLint mode; member in struct:__anon16192
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_hint.c43 void STATE_APIENTRY crStateHint(GLenum target, GLenum mode) argument
59 if (mode != GL_FASTEST && mode != GL_NICEST && mode != GL_DONT_CARE) {
61 "glHint(mode)");
67 h->perspectiveCorrection = mode;
71 h->fog = mode;
75 h->lineSmooth = mode;
79 h->pointSmooth = mode;
83 h->polygonSmooth = mode;
[all...]
H A Dstate_polygon.c36 RESET(pb->mode, ctx->bitid);
45 void STATE_APIENTRY crStateCullFace(GLenum mode) argument
61 if (mode != GL_FRONT && mode != GL_BACK && mode != GL_FRONT_AND_BACK)
64 "glCullFace called with bogus mode: 0x%x", mode);
68 p->cullFaceMode = mode;
69 DIRTY(pb->mode, g->neg_bitid);
73 void STATE_APIENTRY crStateFrontFace (GLenum mode) argument
101 crStatePolygonMode(GLenum face, GLenum mode) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DDLexer.h50 mode( int m ) function in class:DLGLexer
58 sprintf((char *)ebuf,"Invalid automaton mode = %d ",m);
158 /* MR1 */ /* MR23 */ printMessage(stdout, " lextext=(%s) mode=%d",
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Dldtoa.c56 ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign, char **rve) argument
106 ret = gdtoa(&fpi, be, (ULong *)bits, &kind, mode, ndigits, decpt, rve);
111 return dtoa((double)*ld, mode, ndigits, decpt, sign, rve);
/vbox/src/VBox/HostServices/SharedOpenGL/dlm/
H A Ddlm_header.py7 # mode is "header" or "defs"
8 mode = sys.argv[1] variable
48 ('void DLM_APIENTRY', 'crDLMNewList', 'GLuint listIdentifier, GLenum mode'),
59 if mode == 'header':
192 elif mode == 'defs':
198 raise "unknown generation mode '%s'" % mode
203 if mode == 'header':
205 elif mode == 'defs':
210 if mode
[all...]
H A Ddlm_arrays.c228 void DLM_APIENTRY crDLMCompileDrawArrays(GLenum mode, GLint first, GLsizei count, CRClientState *c) argument
238 if (mode > GL_POLYGON)
240 crdlmWarning(__LINE__, __FILE__, GL_INVALID_ENUM, "DLM DrawArrays(bad mode)");
244 crDLMCompileBegin(mode);
252 void DLM_APIENTRY crDLMCompileDrawElements(GLenum mode, GLsizei count, argument
264 if (mode > GL_POLYGON)
266 crdlmWarning(__LINE__, __FILE__, GL_INVALID_ENUM, "DLM DrawElements(bad mode)");
276 crDLMCompileBegin(mode);
306 void DLM_APIENTRY crDLMCompileDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, argument
320 if (mode > GL_POLYGO
363 crDLMCompileMultiDrawArraysEXT( GLenum mode, GLint *first, GLsizei *count, GLsizei primcount, CRClientState *c) argument
376 crDLMCompileMultiDrawElementsEXT( GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount, CRClientState *c) argument
[all...]
H A Ddlm_lists.c29 crDLMNewList(GLuint listIdentifier, GLenum mode) argument
39 * mode parameter (GL_INVALID_ENUM), or for a NewList
45 (int) listIdentifier, (int) mode, __FILE__, __LINE__);
96 listState->currentListMode = mode;
/vbox/src/VBox/NetworkServices/NAT/
H A DRTWinSocketPair.cpp158 u_long mode = 0; local
159 rc = ioctlsocket(socket_vector[0], FIONBIO, &mode);
164 rc = ioctlsocket(socket_vector[1], FIONBIO, &mode);
/vbox/include/VBox/
H A DVDEPlugSymDefs.h41 /** The file mode to set the port socket to. */
42 mode_t mode; member in struct:vde_open_args
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dpripcsem.c1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
58 const char *osname, PRIntn flags, PRIntn mode, PRUintn value)
91 const char *name, PRIntn flags, PRIntn mode, PRUintn value)
100 return _PR_MD_OPEN_SEMAPHORE(osname, flags, mode, value);
57 _PR_MD_OPEN_SEMAPHORE( const char *osname, PRIntn flags, PRIntn mode, PRUintn value) argument
90 PR_OpenSemaphore( const char *name, PRIntn flags, PRIntn mode, PRUintn value) argument
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Daxtls_aes.c46 AES_MODE mode; local
51 mode = AES_MODE_128;
54 mode = AES_MODE_256;
65 AES_set_key ( &aes_ctx->axtls_ctx, key, iv, mode );
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/newvd/
H A DUIWizardNewVD.cpp44 WizardMode mode)
45 : UIWizard(pParent, WizardType_NewVD, mode)
130 switch (mode())
146 AssertMsgFailed(("Invalid mode: %d", mode()));
41 UIWizardNewVD(QWidget *pParent, const QString &strDefaultName, const QString &strDefaultPath, qulonglong uDefaultSize, WizardMode mode) argument
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/tnl_dd/
H A Dt_dd_unfilled.h43 GLenum mode,
77 /* _mesa_lookup_enum_by_nr( mode ), */
80 if (mode == GL_POINT) {
118 GLenum mode,
162 if (mode == GL_POINT) {
42 unfilled_tri( GLcontext *ctx, GLenum mode, GLuint e0, GLuint e1, GLuint e2 ) argument
117 unfilled_quad( GLcontext *ctx, GLenum mode, GLuint e0, GLuint e1, GLuint e2, GLuint e3 ) argument
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/vbo/
H A Dvbo.h38 GLuint mode:8; member in struct:_mesa_prim
/vbox/src/libs/libxml2-2.6.31/win32/wince/
H A Dwincecompat.c34 char mode[3]; /* mode[0] ="w/r/a" mode[1]="+" */ local
35 mode[2]=0;
37 mode[0]="w";
39 mode[0]="r";
40 return fopen(filename, mode);
/vbox/src/libs/zlib-1.2.6/contrib/iostream/
H A Dzfstream.h36 short mode; member in class:gzfilebuf

Completed in 115 milliseconds

1234567891011>>