/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | atomic.c | 45 PRFileDesc *output = PR_GetSpecialFD(PR_StandardOutput); local 51 output, "PR_AtomicIncrement(%d) == %d: %s\n", 57 output, "PR_AtomicIncrement(%d) == %d: %s\n", 63 output, "PR_AtomicIncrement(%d) == %d: %s\n", 70 output, "PR_AtomicAdd(%d,%d) == %d: %s\n", 76 output, "PR_AtomicAdd(%d,%d) == %d: %s\n", 82 output, "PR_AtomicAdd(%d,%d) == %d: %s\n", 89 output, "PR_AtomicDecrement(%d) == %d: %s\n", 95 output, "PR_AtomicDecrement(%d) == %d: %s\n", 101 output, "PR_AtomicDecremen [all...] |
H A D | system.c | 64 PRFileDesc *output = PR_GetSpecialFD(PR_StandardOutput); local 70 if (PR_SUCCESS == rv) PR_fprintf(output, "%s: %s\n", tag[cmd], info); 71 else PL_FPrintError(output, tag[cmd]); 75 PR_fprintf(output, "Host page size is %d\n", PR_GetPageSize()); 76 PR_fprintf(output, "Page shift is %d\n", PR_GetPageShift()); 77 PR_fprintf(output, "Number of processors is: %d\n", PR_GetNumberOfProcessors());
|
H A D | inrval.c | 45 ** the output to a one line status:PASS or FAIL,all of the printf statements 77 static PRFileDesc *output; variable 85 PR_fprintf(output, "PR_TicksPerSecond: %ld\n\n", ticks); 86 PR_fprintf(output, "PR_SecondsToInterval(1): %ld\n", PR_SecondsToInterval(1)); 87 PR_fprintf(output, "PR_MillisecondsToInterval(1000): %ld\n", PR_MillisecondsToInterval(1000)); 88 PR_fprintf(output, "PR_MicrosecondsToInterval(1000000): %ld\n\n", PR_MicrosecondsToInterval(1000000)); 90 PR_fprintf(output, "PR_SecondsToInterval(3): %ld\n", PR_SecondsToInterval(3)); 91 PR_fprintf(output, "PR_MillisecondsToInterval(3000): %ld\n", PR_MillisecondsToInterval(3000)); 92 PR_fprintf(output, "PR_MicrosecondsToInterval(3000000): %ld\n\n", PR_MicrosecondsToInterval(3000000)); 94 PR_fprintf(output, "PR_IntervalToSecond [all...] |
H A D | rwlocktest.c | 68 PRFileDesc *output; variable 112 output = PR_GetSpecialFD(PR_StandardOutput); 139 PR_fprintf(output,"%s: thread_cnt = %d loop_cnt = %d\n", argv[0], 167 PR_fprintf(output,"%s: created thread = 0x%x\n", argv[0], 216 PR_fprintf(output, 228 PR_fprintf(output, "Error - data check failed\n");
|
H A D | stack.c | 83 PRFileDesc *output; variable 128 output = PR_GetSpecialFD(PR_StandardOutput); 149 PR_fprintf(output,"%s: thread_cnt = %d data_cnt = %d\n", argv[0], 178 PR_fprintf(output,"%s: created thread = 0x%x\n", argv[0], 227 PR_fprintf(output, "%s successful\n", argv[0]); 228 PR_fprintf(output, "\t\tsum = 0x%x, expected = 0x%x\n", sum, 232 PR_fprintf(output, "%s failed: sum = 0x%x, expected = 0x%x\n", 261 PR_fprintf(output, 305 PR_fprintf(output,
|
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/ |
H A D | hash_df.c | 51 * @v output Output buffer 52 * @v output_len Length of output buffer, in bytes 58 * output buffer. Requests must be for an integral number of bytes. 60 * The output buffer is filled incrementally with each iteration of 68 size_t input_len, void *output, size_t output_len ) { 85 assert ( output != NULL ); 90 * (Nothing to do. We fill the output buffer incrementally, 93 * fill the output buffer, and so is not calculated 101 for ( temp = output, remaining = output_len ; remaining > 0 ; ) { 123 * (We fill the output buffe 67 hash_df( struct digest_algorithm *hash, const void *input, size_t input_len, void *output, size_t output_len ) argument [all...] |
/vbox/src/libs/libxml2-2.6.31/include/libxml/ |
H A D | debugXML.h | 29 xmlDebugDumpString (FILE *output, 32 xmlDebugDumpAttr (FILE *output, 36 xmlDebugDumpAttrList (FILE *output, 40 xmlDebugDumpOneNode (FILE *output, 44 xmlDebugDumpNode (FILE *output, 48 xmlDebugDumpNodeList (FILE *output, 52 xmlDebugDumpDocumentHead(FILE *output, 55 xmlDebugDumpDocument (FILE *output, 58 xmlDebugDumpDTD (FILE *output, 61 xmlDebugDumpEntities (FILE *output, 119 FILE *output; member in struct:_xmlShellCtxt [all...] |
H A D | encoding.h | 134 xmlCharEncodingOutputFunc output; member in struct:_xmlCharEncodingHandler 165 xmlCharEncodingOutputFunc output);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rcfileio.h | 119 ** Such objects can be used for scanned input and console output. 123 output = PR_StandardOutput, enumerator in enum:__anon17205
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/ |
H A D | interval.cpp | 58 PRFileDesc *output = PR_GetSpecialFD(PR_StandardOutput); local 79 output, "Waiting %u seconds took %s%u milliseconds\n", 99 output, "Sleeping %u seconds took %s%u milliseconds\n", 126 output, "Waiting %u msecs took %s%u milliseconds average\n",
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | base64.c | 113 The encoding process represents 24-bit groups of input bits as output 121 output string. 157 output will be an integral multiple of 4 characters 160 here, the final unit of encoded output will be two 163 here, the final unit of encoded output will be three 171 u_char output[4]; local 180 output[0] = input[0] >> 2; 181 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); 182 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); 183 output[ [all...] |
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | lspci.c | 48 static void lspci_send(const char *output); 51 /* Handle one line of output from the lspci subprocess */ 170 lspci_send(const char *output) argument 175 len = strlen(output); 177 out_uint8p(s, output, len) s_mark_end(s);
|
/vbox/src/libs/libxml2-2.6.31/doc/examples/ |
H A D | index.py | 92 def parse(filename, output): 100 output.write(" <example filename='%s'>\n" % filename) 103 output.write(" <synopsis>%s</synopsis>\n" % escape(synopsis)); 108 output.write(" <purpose>%s</purpose>\n" % escape(purpose)); 113 output.write(" <usage>%s</usage>\n" % escape(usage)); 118 output.write(" <test>%s</test>\n" % escape(test)); 126 output.write(" <author>%s</author>\n" % escape(author)); 131 output.write(" <copy>%s</copy>\n" % escape(copy)); 136 output.write(" <section>%s</section>\n" % escape(section)); 148 output 286 output = open("examples.xml", "w") variable [all...] |
H A D | xpath1.c | 27 void print_xpath_nodes(xmlNodeSetPtr nodes, FILE* output); 200 * @output: the output file handle. 202 * Prints the @nodes content to @output. 205 print_xpath_nodes(xmlNodeSetPtr nodes, FILE* output) { argument 210 assert(output); 213 fprintf(output, "Result (%d nodes):\n", size); 223 fprintf(output, "= namespace \"%s\"=\"%s\" for node %s:%s\n", 226 fprintf(output, "= namespace \"%s\"=\"%s\" for node %s\n", 232 fprintf(output, " [all...] |
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/ |
H A D | mac_xpidl_panel.h | 99 Str32Field output; /* name of the output file */ member in struct:XPIDLSettings
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | osdep.h | 147 ConnectionOutputPtr output; member in struct:_osComm
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | osdep.h | 147 ConnectionOutputPtr output; member in struct:_osComm
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/ |
H A D | osdep.h | 147 ConnectionOutputPtr output; member in struct:_osComm
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/ |
H A D | osdep.h | 147 ConnectionOutputPtr output; member in struct:_osComm
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | netif.h | 87 err_t (* output)(struct netif *netif, struct pbuf *p, member in struct:netif
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | pnic.c | 50 * discovering the output length then you're expecting a fixed amount 56 void *output, uint16_t output_max_length, 71 /* Retrieve output length */ 82 if ( output != NULL ) { 84 printf ( "pnic_command %#hx: output buffer too small " 89 /* Retrieve output data */ 90 insb ( pnic->ioaddr + PNIC_REG_DATA, output, _output_length ); 97 void *output, uint16_t output_max_length, 101 output, output_max_length, 54 pnic_command_quiet( struct pnic *pnic, uint16_t command, const void *input, uint16_t input_length, void *output, uint16_t output_max_length, uint16_t *output_length ) argument 95 pnic_command( struct pnic *pnic, uint16_t command, const void *input, uint16_t input_length, void *output, uint16_t output_max_length, uint16_t *output_length ) argument
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | genUnicode.py | 203 output = open("xmlunicode.c", "w") variable 238 output.write( 284 output.write(',\n') 287 output.write(' {"%s", xmlUCSIs%s}' % (block, name)) 288 output.write('};\n\n') 290 output.write('static xmlUnicodeRange xmlUnicodeCats[] = {\n') 294 output.write(',\n') 297 output.write(' {"%s", xmlUCSIsCat%s}' % (name, name)) 298 output.write('};\n\n') 323 output [all...] |
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpt/tests/ |
H A D | PrimitiveTest.c | 70 output = {0, 0, {0, 0}, NULL, NULL }; variable in typeref:struct:TestData 148 if (XDR(arena, cursor, &output)) 151 dump_struct("after", &output);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | osdep.h | 178 ConnectionOutputPtr output; member in struct:_osComm
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
H A D | osdep.h | 178 ConnectionOutputPtr output; member in struct:_osComm
|