Searched defs:temp (Results 1 - 25 of 116) sorted by relevance

12345

/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...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/readline/
H A Dreadline.h21 char *temp; member in struct:readline_history_entry
/vbox/src/libs/xpcom18a4/ipc/ipcd/util/src/
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;
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...]
/vbox/src/libs/xpcom18a4/xpcom/tests/
H A DSizeTest03.cpp94 nsIDOMNode* temp; local
95 nsresult status = aDOMNode->GetParentNode(&temp);
96 nsCOMPtr<nsIDOMNode> parent( dont_AddRef(temp) );
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);
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Drtc_entropy.c160 uint32_t temp; local
189 : "=a" ( after ), "=d" ( before ), "=q" ( temp )
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
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 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 Dmd5.c170 uint32_t temp; local
202 temp = *d;
206 *a = temp;
H A Dsha1.c138 uint32_t temp; local
175 temp = ( rol32 ( *a, 5 ) + f + *e + k + w[i] );
180 *a = temp;
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_papi.c251 wqnode *temp = sema->waiting; local
256 temp->q->blocked = 0;
257 sema->waiting = temp->next;
258 crFree( temp );
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/
H A DUIWizardCloneVD.cpp81 qulonglong temp = uVariant; local
82 temp &= Q_UINT64_C(1) << i;
83 variants[i] = (KMediumVariant)temp;
/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/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/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DNumericInt.c189 int temp; local
235 while( isalnum(*nptr) && ((temp = Digit2Val(*nptr)) < base)) {
237 Result = (Result * base) + (long int)temp;
278 int temp; local
318 while( isalnum(*nptr) && ((temp = Digit2Val(*nptr)) < base)) {
320 Result = (Result * base) + (unsigned long)temp;
353 int temp; local
399 while( isalnum(*nptr) && ((temp = Digit2Val(*nptr)) < base)) {
401 Result = (Result * base) + (long long int)temp;
442 int temp; local
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/newvd/
H A DUIWizardNewVD.cpp85 qulonglong temp = uVariant; local
86 temp &= UINT64_C(1)<<i;
87 variants[i] = (KMediumVariant)temp;
/vbox/src/libs/xpcom18a4/python/src/
H A DPyIEnumerator.cpp114 nsISupports *temp; local
116 r = pRet->QueryInterface(iid, (void **)&temp);
122 pRet = temp;
165 nsISupports *temp; local
166 r = pNew->QueryInterface(iid, (void **)&temp);
171 pNew = temp;
H A DPyISimpleEnumerator.cpp102 nsISupports *temp; local
104 r = pRet->QueryInterface(iid, (void **)&temp);
110 pRet = temp;
157 nsISupports *temp; local
158 r = pNew->QueryInterface(iid, (void **)&temp);
163 pNew = temp;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Utility/
H A DPath.c108 wchar_t *temp; local
118 temp = NewPath;
121 *temp = L'\\';
124 *temp = *OldPath;
126 ++temp;
159 wchar_t *temp; local
163 for(temp = __UNCONST(&Path[Length - 1]); Length > 0; --Length) {
164 if(!iswdigit(*temp)) {
167 --temp;
169 instance = (int)wcstol(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/libs/libxml2-2.6.31/doc/examples/
H A DtestWriter.c1150 int temp; local
1169 temp = size - 1;
1170 ret = handler->input(out, &out_size, (const xmlChar *) in, &temp);
1171 if ((ret < 0) || (temp - size + 1)) {
1177 temp);
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dcrypt.h37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Split/
H A DSplit.c175 CHAR8* temp = *FullFileName; local
176 CHAR8* start = temp;
179 for (;index < strlen(temp); ++index) {
180 if (temp[index] == '\\' || temp[index] == '/') {
181 temp[index] = 0;
188 start = temp + index + 1;
189 temp[index] = '/';
/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...]

Completed in 320 milliseconds

12345