Searched refs:last (Results 1 - 25 of 228) sorted by relevance

12345678910

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/sched/
H A Dticktime.d27 uint64_t last[int];
30 /last[cpu]/
32 @[cpu] = min(timestamp - last[cpu]);
37 last[cpu] = timestamp;
H A Dxwork.d27 self int last;
30 /self->last && args[0]->pr_stype == SOBJ_CV/
32 @[stringof(args[1]->pr_fname)] = sum(vtimestamp - self->last);
33 self->last = 0;
37 /execname == "Xsun" && self->last == 0/
39 self->last = vtimestamp;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/agg/
H A Dclear.d31 last = timestamp;
41 normalize(@func, (timestamp - last) / 1000000000);
44 last = timestamp;
H A Dtrunc.d31 last = timestamp;
42 normalize(@func, (timestamp - last) / 1000000000);
45 last = timestamp;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/ip/
H A Dipio.d33 last = timestamp;
38 this->elapsed = (timestamp - last) / 1000;
42 last = timestamp;
47 this->elapsed = (timestamp - last) / 1000;
51 last = timestamp;
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsAlgorithm.h76 NS_COUNT( InputIterator& first, const InputIterator& last, const T& value ) argument
79 for ( ; first != last; ++first )
88 copy_string( InputIterator& first, const InputIterator& last, OutputIterator& result ) argument
93 while ( first != last )
95 PRInt32 count_copied = PRInt32(sink_traits::write(result, source_traits::read(first), source_traits::readable_distance(first, last)));
105 copy_string_backward( const InputIterator& first, InputIterator& last, OutputIterator& result ) argument
107 while ( first != last )
109 last.normalize_backward();
111 PRUint32 lengthToCopy = PRUint32( NS_MIN(last.size_backward(), result.size_backward()) );
112 if ( first.fragment().mStart == last
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A Dslist.cpp96 PCCTS_AST *t=NULL, *last=NULL; local
102 if ( last==NULL ) last = t = u;
103 else { last->setRight(u); last = u; }
H A DATokenBuffer.cpp66 last = tp-1;
80 // Delete all remaining tokens (from 0..last inclusive)
84 for (z=buffer; z<=last; z++)
110 if ( tp <= last ) // is there any buffered lookahead still to be read?
137 last = next;
139 tp = last;
185 // int how_many_more_i_need = (last-tp < 0) ? n : n-(last-tp)-1;
186 int how_many_more_i_need = (tp > last) ? n : n-(last
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprstdio.c69 PRUint32 last = 0, idx; local
73 if ((idx - last > 0) && (('\n' == msg[idx]) || (idx == len))) {
74 tmp = PR_Write(fd, msg + last, idx - last);
78 last = idx;
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsSegmentedBuffer.cpp118 PRInt32 last = ModSegArraySize(mLastSegmentIndex - 1); local
119 if (mFirstSegmentIndex == last) {
120 mLastSegmentIndex = last;
132 PRInt32 last = ModSegArraySize(mLastSegmentIndex - 1); local
133 NS_ASSERTION(mSegmentArray[last] != nsnull, "deleting bad segment");
134 (void)mSegAllocator->Free(mSegmentArray[last]);
135 mSegmentArray[last] = nsnull;
136 mLastSegmentIndex = last;
143 PRInt32 last = ModSegArraySize(mLastSegmentIndex - 1); local
144 NS_ASSERTION(mSegmentArray[last] !
[all...]
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgzjoin.c271 /* Copy the compressed data from name, zeroing the last block bit of the last
273 boundary. If clr is false, then the last block becomes the last block of
282 int pos; /* where the "last block" bit is in byte */
283 int last; /* true if processing the last block */ local
308 /* inflate and copy compressed data, clear last-block bit if requested */
312 last = start[0] & 1;
313 if (last
[all...]
H A Dgun.c46 encountered in an input file, it is the last stream in that file.
155 last = have ? (have--, (int)(*next++)) : -1)
202 int last; /* last byte read by NEXT(), or -1 if EOF */ local
211 unsigned end; /* last valid entry in prefix/suffix tables */
214 unsigned final; /* last character written for previous code */
226 if (last == -1)
250 final = prev = (unsigned)last; /* low 8 bits of code */
253 if (last & 1) { /* code must be < 256 */
257 rem = (unsigned)last >>
384 int ret, first, last; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Dstdarg.h50 #define va_start(ap, last) __builtin_stdarg_start((ap), (last))
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsIEnumerator.idl84 void last();
H A DnsTextFormatter.h92 ** "append" sprintf into a PR_MALLOC'd buffer. "last" is the last value of
93 ** the PR_MALLOC'd buffer. sprintf will append data to the end of last,
94 ** growing it as necessary using realloc. If last is NULL, PR_sprintf_append
96 ** last for subsequent calls, or NULL if there is a malloc failure.
98 static PRUnichar* sprintf_append(PRUnichar *last, const PRUnichar *fmt, ...);
106 static PRUnichar* vsprintf_append(PRUnichar *last, const PRUnichar *fmt, va_list ap);
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dsha1extra.c49 u8 *in_blknr; /* pointer to last byte of in, block number */
101 u8 last[SHA1_DIGEST_SIZE]; /* output of round N, input of N+1 */ local
103 u8 *next_in = in; /* changed to `last' after first round */
113 memset ( block, 0, sizeof ( last ) );
118 hmac_final ( &sha1_algorithm, sha1_ctx, pass, &pass_len, last );
120 for ( j = 0; j < sizeof ( last ); j++ ) {
121 block[j] ^= last[j];
124 next_in = last;
125 next_size = sizeof ( last );
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_clip.c216 int nin, *nout, last; local
236 last = b;
239 for (a=0; a<base[last]->npoints; a++)
254 for (a=last+1; a<n; a++)
285 base[last]->points, base[last]->npoints,
289 for (b=0; b<base[last]->npoints; b++)
305 last = a;
320 last = a;
325 base[last]
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dbug1test.c88 PRInt32 last; local
111 last = gCounter;
116 PR_ASSERT (gCounter == (last + 1)); // test invariance
131 PRInt32 last; local
162 last = gCounter;
166 PR_ASSERT (gCounter == last); // test invariance
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c64 hrtime_t now, last = 0, end; local
76 if ((now = gethrtime()) - last > NANOSEC) {
96 last = now;
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dglxcontext.h42 struct __GLXcontextRec *last; member in struct:__GLXcontextRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dglxcontext.h47 struct __GLXcontextRec *last; member in struct:__GLXcontextRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dglxdrawable.h62 __GLXdrawable *last; member in struct:__GLXdrawable
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dglxcontext.h42 struct __GLXcontextRec *last; member in struct:__GLXcontextRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dglxcontext.h42 struct __GLXcontextRec *last; member in struct:__GLXcontextRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dglxcontext.h42 struct __GLXcontextRec *last; member in struct:__GLXcontextRec

Completed in 297 milliseconds

12345678910