Searched defs:hello (Results 1 - 4 of 4) sorted by relevance
/vbox/src/recompiler/tests/ |
H A D | test-i386-ssse3.c | 7 char hello[16]; local 23 asm volatile ("movq %%mm0, %0" : "=m" (hello)); 24 printf("%s\n", hello); 29 asm volatile ("movq %%mm0, %0" : "=m" (hello)); 30 printf("%s\n", hello); 41 asm volatile ("movdqa %%xmm0, (%0)" : : "r" (hello)); 42 printf("%5.5s\n", hello);
|
/vbox/src/libs/xpcom18a4/ipc/ipcd/test/ |
H A D | TestIPC.cpp | 161 const char hello[] = "hello friend!"; 162 SendMsg(gIpcServ, aClientID, kTestTargetID, hello, sizeof(hello)); 299 const char hello[] = "hello friend!"; local 300 SendMsg(ipcServ, foopyID, kTestTargetID, hello, sizeof(hello));
|
/vbox/src/libs/zlib-1.2.6/test/ |
H A D | example.c | 29 const char hello[] = "hello, hello!"; variable 30 /* "hello world" would be more standard, but the repeated "hello" 34 const char dictionary[] = "hello"; 93 uLong len = (uLong)strlen(hello)+1; 95 err = compress(compr, &comprLen, (const Bytef*)hello, len); 103 if (strcmp((char*)uncompr, hello)) { 123 int len = (int)strlen(hello) [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/net/ |
H A D | tls.c | 867 } __attribute__ (( packed )) hello; local 870 memset ( &hello, 0, sizeof ( hello ) ); 871 hello.type_length = ( cpu_to_le32 ( TLS_CLIENT_HELLO ) | 872 htonl ( sizeof ( hello ) - 873 sizeof ( hello.type_length ) ) ); 874 hello.version = htons ( tls->version ); 875 memcpy ( &hello.random, &tls->client_random, sizeof ( hello.random ) ); 876 hello [all...] |
Completed in 588 milliseconds