Searched refs:counter (Results 1 - 25 of 85) sorted by relevance

1234

/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dsema.c50 static PRIntn counter; variable
65 if (counter == 2*i+1) {
66 if (debug_mode) printf("thread 2: counter = %d\n", counter);
68 fprintf(stderr, "thread 2: counter should be %d but is %d\n",
69 2*i+1, counter);
72 counter++;
147 if (counter == 2*i) {
148 if (debug_mode) printf("thread 1: counter = %d\n", counter);
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dhash_df.c74 uint8_t counter; member in struct:__anon15093
97 /* 3. counter = an 8-bit binary value representing the integer "1" */
98 prefix.counter = 1;
106 * 4.1 temp = temp || Hash ( counter || no_of_bits_to_return
111 digest_update ( hash, context, &prefix.counter,
113 offsetof ( typeof ( prefix ), counter ) ) );
117 /* 4.2 counter = counter + 1 */
118 prefix.counter++;
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dfastblt.h83 #define DuffL(counter,label,body) \
84 switch (counter & 3) { \
94 if ((counter -= 4) >= 0) \
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dfastblt.h83 #define DuffL(counter,label,body) \
84 switch (counter & 3) { \
94 if ((counter -= 4) >= 0) \
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dfastblt.h83 #define DuffL(counter,label,body) \
84 switch (counter & 3) { \
94 if ((counter -= 4) >= 0) \
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dfastblt.h85 #define DuffL(counter,label,body) \
86 switch (counter & 3) { \
96 if ((counter -= 4) >= 0) \
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dfastblt.h85 #define DuffL(counter,label,body) \
86 switch (counter & 3) { \
96 if ((counter -= 4) >= 0) \
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dsyncsrv.h69 typedef void (*SyncSystemCounterQueryValue)(void *counter,
72 typedef void (*SyncSystemCounterBracketValues)(void *counter,
83 SyncCounterType counterType; /* how can this counter change */
138 extern void SyncRemoveDeviceIdleTime(SyncCounter *counter);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dsyncsrv.h69 typedef void (*SyncSystemCounterQueryValue)(void *counter,
72 typedef void (*SyncSystemCounterBracketValues)(void *counter,
83 SyncCounterType counterType; /* how can this counter change */
138 extern void SyncRemoveDeviceIdleTime(SyncCounter *counter);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dsyncsrv.h69 typedef void (*SyncSystemCounterQueryValue)(pointer counter,
72 typedef void (*SyncSystemCounterBracketValues)(pointer counter,
83 SyncCounterType counterType; /* how can this counter change */
138 extern void SyncRemoveDeviceIdleTime(SyncCounter *counter);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dsyncsrv.h69 typedef void (*SyncSystemCounterQueryValue)(pointer counter,
72 typedef void (*SyncSystemCounterBracketValues)(pointer counter,
83 SyncCounterType counterType; /* how can this counter change */
138 extern void SyncRemoveDeviceIdleTime(SyncCounter *counter);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprcountr.c53 ** The counter itself is embedded in the RName structure.
55 ** For manipulating the counter database, single lock is used to
69 ** this writing (6/19/98) , the update of the counter variable in
99 volatile PRUint32 counter; member in struct:RName
132 ** PR_CreateCounter() -- Create a counter
354 ((RName *)handle)->counter++;
358 handle, ((RName *)handle)->counter ));
374 ((RName *)handle)->counter--;
378 handle, ((RName *)handle)->counter ));
394 ((RName *)handle)->counter
[all...]
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpacker_bbox.py227 counter = 0
235 counter += 4
241 print WriteData( counter, vector_type, "%s[%d]" % (argname, index), do_swapped )
242 counter += apiutil.sizeof(vector_type)
255 print WriteData( counter, type, name, do_swapped )
256 counter += apiutil.sizeof(type)
H A Dpacker.py184 counter = 8
188 counter = 0
197 print WriteData( counter + i * apiutil.sizeof(ptrType),
199 # XXX increment counter here?
201 print WriteData( counter, type, name, is_swapped )
203 counter += apiutil.PointerSize()
205 counter += apiutil.sizeof(type)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dsyncsrv.h69 typedef void (*SyncSystemCounterQueryValue)(pointer counter,
72 typedef void (*SyncSystemCounterBracketValues)(pointer counter,
83 SyncCounterType counterType; /* how can this counter change */
138 extern void SyncRemoveDeviceIdleTime(SyncCounter *counter);
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Drand.c50 * Seed the generator based on time of day or a system counter.
55 LARGE_INTEGER counter; local
56 QueryPerformanceCounter( &counter );
57 crRandSeed((unsigned long) counter.QuadPart);
/vbox/src/VBox/Additions/x11/x11include/libXext-1.3.1/X11/extensions/
H A Dsync.h162 char *name; /* null-terminated name of system counter */
163 XSyncCounter counter; /* counter id of this system counter */ member in struct:_XSyncSystemCounter
164 XSyncValue resolution; /* resolution of this system counter */
169 XSyncCounter counter; /* counter to trigger on */ member in struct:__anon3602
171 XSyncValue wait_value; /* value to compare counter to */
197 XSyncCounter counter; /* counter involve member in struct:__anon3605
234 XSyncCounter counter; /* resource id */ member in struct:__anon3608
[all...]
/vbox/src/VBox/Additions/x11/x11include/xextproto-7.1.1/X11/extensions/
H A Dsyncproto.h133 XSyncCounter counter B32;
186 XSyncCounter counter B32;
197 XSyncCounter counter B32;
227 XSyncCounter counter B32;
276 XSyncCounter counter B32;
347 XSyncCounter counter B32;
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dnd6.c229 neighbor_cache[i].counter.reachable_time = reachable_time;
362 neighbor_cache[i].counter.delay_time = LWIP_ND6_DELAY_FIRST_PROBE_TIME;
385 neighbor_cache[i].counter.delay_time = LWIP_ND6_DELAY_FIRST_PROBE_TIME;
485 default_router_list[i].neighbor_entry->counter.reachable_time = reachable_time;
602 neighbor_cache[i].counter.delay_time = LWIP_ND6_DELAY_FIRST_PROBE_TIME;
611 neighbor_cache[i].counter.delay_time = LWIP_ND6_DELAY_FIRST_PROBE_TIME;
681 if (neighbor_cache[i].counter.probes_sent >= LWIP_ND6_MAX_MULTICAST_SOLICIT) {
687 neighbor_cache[i].counter.probes_sent++;
696 if (neighbor_cache[i].counter.reachable_time <= ND6_TMR_INTERVAL) {
699 neighbor_cache[i].counter
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dxmlregexp.c10 * - RELAX-NG/TREX i.e. the counter proposal
214 int counter; member in struct:_xmlRegTrans
1120 if (trans->counter >= 0) {
1121 fprintf(output, "counted %d, ", trans->counter);
1255 xmlRegexpErrMemory(ctxt, "allocating counter");
1265 xmlRegexpErrMemory(ctxt, "allocating counter");
1297 xmlRegexpErrMemory(ctxt, "allocating counter");
1339 int counter, int count) {
1361 (trans->counter == counter)
1337 xmlRegStateAddTrans(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state, xmlRegAtomPtr atom, xmlRegStatePtr target, int counter, int count) argument
1494 xmlFAGenerateCountedEpsilonTransition(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr from, xmlRegStatePtr to, int counter) argument
1513 xmlFAGenerateCountedTransition(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr from, xmlRegStatePtr to, int counter) argument
1583 int counter; local
1734 xmlFAReduceEpsilonTransitions(xmlRegParserCtxtPtr ctxt, int fromnr, int tonr, int counter) argument
3182 xmlRegCounterPtr counter; local
3219 xmlRegCounterPtr counter; local
3326 xmlRegCounterPtr counter; local
3764 xmlRegCounterPtr counter; local
3802 xmlRegCounterPtr counter; local
3825 xmlRegCounterPtr counter; local
3850 xmlRegCounterPtr counter; local
4221 xmlRegCounterPtr counter = NULL; local
5832 int counter; local
5918 int counter; local
5987 int counter; local
6066 int counter; local
6206 xmlAutomataNewCountedTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, int counter) argument
6230 xmlAutomataNewCounterTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, int counter) argument
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/
H A Dunpack.py100 counter = counter_init
111 print "\t%s %s = %s;" % ( copy_of_params[i][1], name, ReadData( counter, copy_of_params[i][1] ) )
112 counter += apiutil.sizeof(copy_of_params[i][1])
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprcountr.h50 ** not as operational data. If you need a counter for operational
53 ** Counters are 32bit unsigned intergers. On overflow, a counter
56 ** A counter can be dynamically created using a two level naming
57 ** convention. A "handle" is returned when the counter is
58 ** created. The counter can subsequently be addressed by its
59 ** handle. An API is provided to get an existing counter's handle
61 ** Similarly, a counter's name can be retrieved given its handle.
63 ** The counter naming convention is a two-level hierarchy. The
70 ** counter locks a large asset, potentially causing a stall. This
80 ** When traversing the counter databas
[all...]
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/
H A Dsyncstr.h118 XSyncCounter counter B32;
171 XSyncCounter counter B32;
182 XSyncCounter counter B32;
212 XSyncCounter counter B32;
261 XSyncCounter counter B32;
332 XSyncCounter counter B32;
371 CARD64 value; /* counter value */
374 struct _SysCounterInfo *pSysCounterInfo; /* NULL if not a system counter */
393 SyncCounterType counterType; /* how can this counter change */
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsMemoryImpl.cpp288 mallocator(PRSize size, PRUint32& counter, PRUint32 max) argument
290 if (counter++ >= max) {
291 counter = 0;
299 reallocator(void* ptr, PRSize size, PRUint32& counter, PRUint32 max) argument
301 if (counter++ >= max) {
302 counter = 0;
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxmlautomata.h123 int counter);
128 int counter);

Completed in 103 milliseconds

1234