/vbox/src/VBox/Devices/PC/ipxe/src/crypto/ |
H A D | bigint.c | 57 } *temp = tmp; local 62 assert ( sizeof ( *temp ) == bigint_mod_multiply_tmp_len ( modulus ) ); 65 bigint_multiply ( multiplicand, multiplier, &temp->result ); 68 bigint_grow ( modulus, &temp->modulus ); 69 rotation = ( bigint_max_set_bit ( &temp->result ) - 70 bigint_max_set_bit ( &temp->modulus ) ); 72 bigint_rol ( &temp->modulus ); 76 if ( bigint_is_geq ( &temp->result, &temp->modulus ) ) 77 bigint_subtract ( &temp 118 } *temp = tmp; local [all...] |
H A D | hash_df.c | 61 * the central loop, rather than constructing an overall "temp" and 77 void *temp; local 87 /* 1. temp = the Null string 91 * rather than constructing the complete "temp" in-memory. 101 for ( temp = output, remaining = output_len ; remaining > 0 ; ) { 106 * 4.1 temp = temp || Hash ( counter || no_of_bits_to_return 121 * of temp 128 memcpy ( temp, digest, frag_len ); 129 temp [all...] |
H A D | rsa.c | 371 void *temp; local 389 temp = context->output0; 390 encoded = temp; 422 void *temp; local 442 temp = context->input0; 443 encoded = temp; 483 uint8_t *temp = encoded; local 510 *(temp++) = 0x00; 511 *(temp++) = 0x01; 513 memset ( temp, 539 void *temp; local 574 void *temp; local [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
H A D | LzHash.h | 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 19 hash2Value = temp & (kHash2Size - 1); \ 20 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; } 23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 24 hash2Value = temp & (kHash2Size - 1); \ 25 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \ 26 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; } 29 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 30 hash2Value = temp & (kHash2Size - 1); \ 31 hash3Value = (temp [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
H A D | LzHash.h | 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 19 hash2Value = temp & (kHash2Size - 1); \ 20 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; } 23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 24 hash2Value = temp & (kHash2Size - 1); \ 25 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \ 26 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; } 29 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 30 hash2Value = temp & (kHash2Size - 1); \ 31 hash3Value = (temp [all...] |
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | url.c | 33 const char *temp, *temp2; local 36 temp = crStrstr( url, "://" ); 37 if ( temp == NULL && protocol != NULL ) 40 temp = url; 45 int len = temp - url; 49 temp += 3; 55 temp2 = crStrrchr( temp, '/' ); 58 temp2 = crStrrchr( temp, '\\' ); 62 temp2 = temp; 69 int len = temp2 - temp; [all...] |
H A D | string.c | 17 const char *temp; local 19 for (temp = str ; *temp ; temp++); 20 return temp-str; 199 const char *temp = str + crStrlen( str ); local 200 for ( ; temp >= str ; temp-- ) 202 if (*temp == c) 203 return (char *) temp; 277 char *temp = (char *) str; local 294 char *temp = (char *) str; local 316 char *temp = (char *) str; local [all...] |
H A D | error.c | 219 char *temp; local 229 temp = crStrchr( my_hostname, '.' ); 230 if (temp) 232 *temp = '\0'; 324 static char buf[8092], *temp; local 333 (LPTSTR) &temp, 0, NULL ); 334 if ( temp ) 336 crStrncpy( buf, temp, sizeof(buf)-1 ); 340 temp = buf + crStrlen(buf) - 1; 341 while ( temp > bu 668 static char buf[8092], *temp; local [all...] |
/vbox/src/libs/xpcom18a4/ipc/ipcd/util/src/ |
H A D | ipcMessageWriter.cpp | 73 PRUint8 temp[2]; local 74 *(PRUint16*)temp = val; 75 *mBufPtr++ = temp[0]; 76 *mBufPtr++ = temp[1]; 83 PRUint8 temp[4]; local 84 *(PRUint32*)temp = val; 85 *mBufPtr++ = temp[0]; 86 *mBufPtr++ = temp[1]; 87 *mBufPtr++ = temp[2]; 88 *mBufPtr++ = temp[ [all...] |
H A D | ipcMessageReader.cpp | 61 PRUint8 temp[2] = { mBufPtr[0], mBufPtr[1] }; local 63 return *(PRUint16*)temp; 72 PRUint8 temp[4] = { mBufPtr[0], mBufPtr[1], mBufPtr[2], mBufPtr[3] }; local 74 return *(PRUint32*)temp;
|
/vbox/src/VBox/Additions/solaris/DRM/include/ |
H A D | drm_linux_list.h | 66 #define list_for_each_safe(entry, temp, head) \ 67 for (entry = (head)->next, temp = (entry)->next; \ 68 temp != head; \ 69 entry = temp, temp = temp->next)
|
/vbox/src/libs/xpcom18a4/xpcom/tests/windows/ |
H A D | nsStringTest.cpp | 10 nsString temp("\t\t\n\r\n\r25,* \t \n\n \t"); 11 temp.CompressWhitespace();
|
/vbox/src/libs/xpcom18a4/xpcom/tests/ |
H A D | TestDeque.cpp | 82 int* temp; local 92 temp=(int*)theDeque.Pop(); 98 temp=(int*)theDeque.Pop(); 104 temp=(int*)theDeque.Pop(); 112 int* temp; local 126 temp=(int*)secondDeque.PopFront(); 127 printf("%d\t",*temp); 142 temp=(int*)secondDeque.Peek(); 143 printf("peek: %d\n",*temp);
|
H A D | TestMinStringAPI.cpp | 84 nsCStringContainer temp; local 85 NS_CStringContainerInit(temp); 86 NS_CStringCopy(temp, s); 88 len = NS_CStringGetData(temp, &ptr); 100 NS_CStringContainerFinish(temp); 143 nsStringContainer temp; local 144 NS_StringContainerInit(temp); 145 NS_StringCopy(temp, s); 147 len = NS_StringGetData(temp, &ptr); 159 NS_StringContainerFinish(temp); 172 nsCStringContainer temp; local [all...] |
/vbox/src/libs/libxml2-2.6.31/doc/tutorial/ |
H A D | includeconvert.c | 10 int ret,size,out_size,temp; 26 temp=size-1; 27 ret = handler->input(out, &out_size, in, &temp); 28 if (ret || temp-size+1) { 32 printf("conversion wasn't successful. converted: %i octets.\n",temp);
|
/vbox/src/VBox/Additions/x11/Installer/ |
H A D | x11config15.pl | 29 my $temp="/tmp/xorg.conf"; 50 open(TMP, ">$temp") 80 copy $temp, $cfg 82 unlink $temp;
|
H A D | x11config15sol.pl | 19 my $temp="/tmp/xorg.conf"; 48 open(TMP, ">$temp") or die "Can't create $TMP: $!\n"; 83 system("cp $temp $cfg"); 84 unlink $temp;
|
H A D | x11config.pl | 16 my $temp="/tmp/xorg.conf"; 33 open(TMP, ">$temp") or die "Can't create $TMP: $!\n"; 113 system("cp $temp $cfg"); 114 unlink $temp;
|
/vbox/src/VBox/Devices/PC/ipxe/src/hci/ |
H A D | readline.c | 107 return ( entry->temp ? entry->temp : entry->string ); 120 char *temp; local 123 temp = strdup ( string ); 124 if ( ! temp ) { 133 free ( entry->temp ); 134 entry->temp = temp; 209 free ( entry->temp ); 210 entry->temp [all...] |
/vbox/src/VBox/GuestHost/OpenGL/spu_loader/ |
H A D | spuload.c | 181 SPU *the_spu, *temp; local 195 for (temp = the_spu ; temp ; temp = temp->superSPU ) 198 node->copy = &(temp->dispatch_table); 220 struct _copy_list_node *temp; 232 for (temp = table->copyList ; temp ; temp [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/include/readline/ |
H A D | readline.h | 21 char *temp; member in struct:readline_history_entry
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
H A D | relabel.c | 91 set temp; local 99 temp = set_dif(unpart_chars, class_sets[0]); 101 unpart_chars = temp; 117 temp = set_dif(unpart_chars,current_class); 119 unpart_chars = temp; 160 set temp; local 165 temp = set_and(*maximal_class,start->label); 166 if (!set_nil(temp)) 169 *maximal_class = temp; 171 set_free(temp); [all...] |
/vbox/src/libs/xpcom18a4/xpcom/glue/ |
H A D | nsWeakReference.cpp | 76 nsIWeakReference* temp; local 77 status = factoryPtr->GetWeakReference(&temp); 78 *aResult = temp; 130 nsrefcnt temp = --mRefCount; local 133 return temp;
|
/vbox/src/recompiler/target-i386/ |
H A D | exec.h | 247 CPU86_LDoubleU temp; local 258 temp.l.upper = (e << 20) | (ll >> 32); 259 temp.l.lower = ll; 261 temp.ll = ll | ((uint64_t)e << 52); 263 return temp.d; 268 CPU86_LDoubleU temp; local 271 temp.d = f; 273 stq(ptr, (MANTD(temp) << 11) | (1LL << 63)); 275 e = EXPD(temp) - EXPBIAS + 16383; 276 e |= SIGND(temp) >> 1 285 CPU86_LDoubleU temp; local 294 CPU86_LDoubleU temp; local [all...] |
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsEscape.h | 176 const char *temp; local 177 if (NS_EscapeURL(part.BeginReading(temp), part.Length(), partType, result)) 183 const char *temp; local 184 if (NS_UnescapeURL(str.BeginReading(temp), str.Length(), flags, result))
|