Searched defs:idx (Results 1 - 25 of 153) sorted by relevance

1234567

/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dpipepong.c64 int idx; local
66 for (idx = 0; idx < NUM_ITERATIONS; idx++) {
H A Dsockpong.c67 int idx; local
80 for (idx = 0; idx < NUM_ITERATIONS; idx++) {
H A Dvercheck.c83 int idx; local
88 for (idx = 0; idx < num_compatible; idx++) {
89 if (PR_VersionCheck(compatible_version[idx]) == PR_FALSE) {
91 compatible_version[idx]);
94 printf("Compatible with version %s\n", compatible_version[idx]);
97 for (idx = 0; idx < num_incompatible; idx
[all...]
H A Dpipepong2.c67 int idx; local
90 for (idx = 0; idx < NUM_ITERATIONS; idx++) {
H A Dstr2addr.c59 int idx; local
72 for (idx = 0; idx < 4; idx++) {
73 if (bytes[idx] != default_ipv4_addr[idx]) {
75 idx, default_ipv4_addr[idx], bytes[idx]);
H A Dpipeping.c79 int idx; local
139 for (idx = 0; idx < NUM_ITERATIONS; idx++) {
H A Dpipeping2.c74 int idx; local
142 for (idx = 0; idx < NUM_ITERATIONS; idx++) {
H A Dpipeself.c65 int idx; local
69 for (idx = 0; idx < NUM_ITERATIONS; idx++) {
115 int idx; local
135 for (idx = 0; idx < NUM_ITERATIONS; idx++) {
H A Dsockping.c73 int idx; local
118 for (idx = 0; idx < NUM_ITERATIONS; idx++) {
H A Dgethost.c93 PRIntn idx; local
117 idx = 0;
119 idx = PR_EnumerateHostEnt(idx, &he, 0, &addr);
120 if (idx == -1) {
124 if (idx == 0) break; /* normal loop termination */
148 idx = 0;
151 idx = PR_EnumerateHostEnt(idx, &he, 0, &addr);
152 if (idx
[all...]
H A Dmultiacc.c95 int idx; local
176 for (idx = 0; idx < num_server_threads; idx++) {
177 serverThreads[idx] = PR_CreateThread(PR_USER_THREAD,
180 if (NULL == serverThreads[idx]) {
226 for (idx = 0; idx < num_server_threads; idx++) {
227 status = PR_Interrupt(serverThreads[idx]);
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprstdio.c69 PRUint32 last = 0, idx; local
72 for (idx = 0; idx < len+1; idx++) {
73 if ((idx - last > 0) && (('\n' == msg[idx]) || (idx == len))) {
74 tmp = PR_Write(fd, msg + last, idx - last);
78 last = idx;
85 if (('\n' == msg[idx])
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dfnrec.c66 unsigned int idx; member in struct:fnrec_buffer
112 entry = &fnrec_buffer->data[ fnrec_buffer->idx ];
120 fnrec_buffer->idx = ( ( fnrec_buffer->idx + 1 ) % FNREC_NUM_ENTRIES );
121 entry = &fnrec_buffer->data[ fnrec_buffer->idx ];
137 unsigned int idx; local
142 idx = ( ( fnrec_buffer->idx + i ) % FNREC_NUM_ENTRIES );
143 entry = &fnrec_buffer->data[idx];
/vbox/src/VBox/Main/src-client/
H A DGuestDirectoryImpl.cpp186 int idx = 1; /* Current parameter index. */ local
189 pSvcCb->mpaParms[idx++].getUInt32(&dataCb.uType);
190 pSvcCb->mpaParms[idx++].getUInt32(&dataCb.rc);
/vbox/src/VBox/Runtime/testcase/
H A DtstRTList.cpp45 unsigned idx; member in struct:LISTELEM
66 RTTEST_CHECK(hTest, pNode->idx == i);
70 RTTEST_CHECK(hTest, pNode->idx == idxLast);
78 RTTEST_CHECK(hTest, pNode->idx == i);
82 RTTEST_CHECK(hTest, pNode->idx == idxFirst);
87 unsigned idx = idxFirst; local
90 RTTEST_CHECK_RETV(hTest, idx == pNode->idx);
91 idx += idxStep;
93 RTTEST_CHECK_MSG_RETV(hTest, idx
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/
H A Dbproc.c49 int nEnv, idx; local
73 for (idx = 0; idx < nEnv; idx++) {
74 newEnvp[idx] = childEnvp[idx];
76 newEnvp[idx++] = attr->fdInheritBuffer;
77 newEnvp[idx] = NULL;
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dnetdb.c119 u8_t idx; local
120 for ( idx=0; s_hostent.h_aliases[idx]; idx++) {
121 LWIP_DEBUGF(DNS_DEBUG, ("hostent.h_aliases[%i]-> == %p\n", idx, s_hostent.h_aliases[idx]));
122 LWIP_DEBUGF(DNS_DEBUG, ("hostent.h_aliases[%i]-> == %s\n", idx, s_hostent.h_aliases[idx]));
129 u8_t idx; local
130 for ( idx
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxe/
H A Dpxe_preboot.c149 unsigned int idx; local
168 idx = ( get_cached_info->PacketType - 1 );
169 if ( idx >= NUM_CACHED_INFOS ) {
174 info = &cached_info[idx];
179 creator = &pxe_dhcp_packet_creators[idx];
/vbox/src/VBox/RDP/client-1.8.3/
H A Dpstcache.c82 DEBUG(("Load bitmap from disk: id=%d, idx=%d, bmp=%p)\n", cache_id, cache_idx, bitmap));
119 uint16 idx; local
132 for (idx = 0; idx < BMPCACHE2_NUM_PSTCELLS; idx++)
135 rd_lseek_file(fd, idx * (g_pstcache_Bpp * MAX_CELL_SIZE + sizeof(CELLHEADER)));
141 memcpy(keylist[idx], cellhdr.key, sizeof(HASH_KEY));
145 pstcache_load_bitmap(id, idx);
148 for (n = idx; n > 0 && cellhdr.stamp < mru_stamp[n - 1]; n--)
154 mru_idx[n] = idx;
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dpratom.c167 PRInt32 idx = _PR_HASH_FOR_LOCK(val); local
169 pthread_mutex_lock(&atomic_locks[idx]);
172 hash_lock_counts[idx]++;
174 pthread_mutex_unlock(&atomic_locks[idx]);
182 PRInt32 idx = _PR_HASH_FOR_LOCK(ptr); local
184 pthread_mutex_lock(&atomic_locks[idx]);
187 hash_lock_counts[idx]++;
189 pthread_mutex_unlock(&atomic_locks[idx]);
197 PRInt32 idx = _PR_HASH_FOR_LOCK(val); local
199 pthread_mutex_lock(&atomic_locks[idx]);
212 PRInt32 idx = _PR_HASH_FOR_LOCK(val); local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dwctomb.c65 int idx = 1, low = 0, high = unicode_compose_table_size - 1; local
68 int pos = binary_search( str[idx], low, high );
70 if (!idx--) return unicode_compose_table[2*pos+1];
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-shared.h193 uint32_t idx = j + face * surface.faces[0].numMipLevels; local
195 rc = SSMR3GetStructEx(pSSM, &pMipmapLevel[idx], sizeof(pMipmapLevel[idx]), 0, g_aVMSVGA3DMIPMAPLEVELFields, NULL);
198 pMipmapLevelSize[idx] = pMipmapLevel[idx].size;
455 uint32_t idx = i + face * pSurface->faces[0].numMipLevels; local
456 PVMSVGA3DMIPMAPLEVEL pMipmapLevel = &pSurface->pMipmapLevels[idx];
469 uint32_t idx = i + face * pSurface->faces[0].numMipLevels; local
470 PVMSVGA3DMIPMAPLEVEL pMipmapLevel = &pSurface->pMipmapLevels[idx];
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dhull.c233 int *hull, idx, low_idx = 0; local
252 idx = 1;
263 if (a == hull[idx - 1])
300 hull[idx] = low_idx;
301 idx++;
312 _bound(pnts, npnts, hull, idx, bbox);
/vbox/src/VBox/HostServices/SharedFolders/
H A Dmappings.cpp365 uint32_t idx = 0; /* Current index in mappings buffer. */ local
376 if (idx < *pcMappings)
384 pMappings[idx].u32Status = SHFL_MS_NEW;
385 pMappings[idx].root = i;
386 idx++;
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_clip.c391 int i, idx, isec_size, add; local
398 idx = 0;
405 crMemset((*mask)[idx], 0, n*sizeof(int));
406 (*mask)[idx][a] = 1;
414 (*mask)[idx][i] = 1;
418 if ((add) && (idx))
420 for (d=0; d<idx; d++)
425 if ((*mask)[idx][e] != (*mask)[d][e])
435 idx++;
440 *nmasks = idx;
459 int a, b, idx, isec_size, **mask; local
532 int a, b, idx, first, **mask; local
[all...]

Completed in 281 milliseconds

1234567