Searched refs:temp (Results 1 - 25 of 147) sorted by relevance

123456

/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dbigint.c57 } *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 Dhash_df.c61 * 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 Drsa.c371 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 DLzHash.h18 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 DLzHash.h18 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 Durl.c33 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 Dstring.c17 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 Derror.c219 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 DipcMessageWriter.cpp73 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 DipcMessageReader.cpp61 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 Ddrm_linux_list.h66 #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 DnsStringTest.cpp10 nsString temp("\t\t\n\r\n\r25,* \t \n\n \t");
11 temp.CompressWhitespace();
/vbox/src/libs/xpcom18a4/xpcom/tests/
H A DTestDeque.cpp82 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 DTestMinStringAPI.cpp84 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 Dincludeconvert.c10 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 Dx11config15.pl29 my $temp="/tmp/xorg.conf";
50 open(TMP, ">$temp")
80 copy $temp, $cfg
82 unlink $temp;
H A Dx11config15sol.pl19 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 Dx11config.pl16 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 Dreadline.c107 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 Dspuload.c181 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 Dreadline.h21 char *temp; member in struct:readline_history_entry
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Drelabel.c91 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 DnsWeakReference.cpp76 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 Dexec.h247 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 DnsEscape.h176 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))

Completed in 49 milliseconds

123456