Searched defs:format (Results 1 - 25 of 423) sorted by relevance

1234567891011>>

/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsPrintfCString.cpp51 nsPrintfCString::nsPrintfCString( const char_type* format, ... ) argument
59 va_start(ap, format);
60 mLength = PR_vsnprintf(mData, physical_capacity, format, ap);
64 nsPrintfCString::nsPrintfCString( size_type n, const char_type* format, ... ) argument
80 va_start(ap, format);
81 mLength = PR_vsnprintf(mData, physical_capacity, format, ap);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dpropertyst.h60 uint32_t format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
61 uint32_t size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dpropertyst.h60 uint32_t format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
61 uint32_t size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dpropertyst.h60 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
61 long size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dpropertyst.h60 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
61 long size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dpropertyst.h61 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
62 long size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dpropertyst.h61 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
62 long size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dpropertyst.h61 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
62 long size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dpropertyst.h61 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
62 long size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dpropertyst.h61 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
62 long size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dpropertyst.h61 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
62 long size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dpropertyst.h61 uint32_t format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
62 uint32_t size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dpropertyst.h61 uint32_t format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
62 uint32_t size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dpropertyst.h60 uint32_t format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
61 uint32_t size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dpropertyst.h60 uint32_t format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
61 uint32_t size; /* size of data in (format/8) bytes */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dpropertyst.h60 uint32_t format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
61 uint32_t size; /* size of data in (format/8) bytes */
/vbox/src/VBox/HostServices/SharedOpenGL/dlm/
H A Ddlm_error.c12 void crdlmWarning( int line, char *file, GLenum error, char *format, ... ) argument
19 va_start( args, format );
20 vsprintf( errstr, format, args );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A Dwcsftime.c48 * have to duplicate the code of strftime(), we convert the format string to
53 * of the conversions in the format string change conversion state. When
55 * format specifications in the format string.
59 const wchar_t *format, const struct tm *timeptr)
68 * Convert the supplied format string to a multibyte representation
71 sflen = wcstombs(NULL, format, 0);
76 wcstombs(sformat, format, sflen + 1);
58 wcsftime(wchar_t *wcs, size_t maxsize, const wchar_t *format, const struct tm *timeptr) argument
/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/
H A Dunpack_readpixels.c17 GLenum format = READ_DATA( 16, GLenum ); local
43 cr_unpackDispatch.ReadPixels( x, y, width, height, format, type, pixels);
/vbox/src/VBox/Installer/win/InstallHelper/
H A DVBoxCommon.cpp31 int swprintf_s(WCHAR *buffer, size_t cbBuffer, const WCHAR *format, ...) argument
35 va_start(va, format);
36 ret = _vsnwprintf(buffer, cbBuffer, format, va);
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_error.c15 void crStateError( int line, const char *file, GLenum error, const char *format, ... ) argument
31 va_start( args, format );
32 vsprintf( errstr, format, args );
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libctf/common/
H A Dctf_subr.c104 ctf_dprintf(const char *format, ...) argument
109 va_start(alist, format);
112 (void) vfprintf(stderr, format, alist);
114 RTLogPrintf("libctf DEBUG: %N", format, alist);
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/include/
H A Dpropertyst.h62 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
63 long size; /* size of data in (format/8) bytes */
67 * an issue, you may want to put the owner_pid next to format
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dpropertyst.h62 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
63 long size; /* size of data in (format/8) bytes */
67 * an issue, you may want to put the owner_pid next to format
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dpropertyst.h62 short format; /* format of data for swapping - 8,16,32 */ member in struct:_Property
63 long size; /* size of data in (format/8) bytes */
67 * an issue, you may want to put the owner_pid next to format

Completed in 297 milliseconds

1234567891011>>