Searched refs:nspec (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/dtrace-147/test/tst/common/drops/
H A Ddrp.DTRACEDROP_SPECUNAVAIL.d29 #pragma D option nspec=1
H A Ddrp.DTRACEDROP_SPEC.d29 #pragma D option nspec=1
/macosx-10.10/dtrace-147/test/tst/common/speculation/
H A Derr.NegativeNspec.d31 * Using a negative value for nspec throws a compiler error.
34 * Options and Tunables/nspec
38 #pragma D option nspec=-72
H A Derr.D_PRAGMA_MALFORM.NspecExpr.d31 * Using an expression in the pragma for nspec throws a D_PRAGMA_MALFORM
35 * Options and Tunables/nspec
41 #pragma D option nspec=24 * 44
H A Derr.D_PRAGMA_OPTSET.HugeNspecValue.d31 * Setting the nspec option to a huge integer throws a D_PRAGMA_OPTSET error.
34 * Options and Tunables/nspec
40 #pragma D option nspec=245566729809009887663
H A Dtst.TwoSpecBuffers.d31 * Increasing the value of nspec to two should will increase the number of
35 * Options and Tunables/nspec
41 #pragma D option nspec=2
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixRFont.c729 int clen, nspec, xStart = x;
758 nspec = 0;
776 specs[nspec].font = ftFont;
777 specs[nspec].glyph = XftCharIndex(fontPtr->display, ftFont, c);
778 specs[nspec].x = x;
779 specs[nspec].y = y;
780 XftGlyphExtents(fontPtr->display, ftFont, &specs[nspec].glyph, 1,
784 nspec++;
785 if (nspec == NUM_SPEC) {
787 specs, nspec);
714 int clen, nspec, xStart = x; local
[all...]
/macosx-10.10/vim-55/runtime/syntax/
H A Ddtrace.vim68 " scalar: cpu jstackframes jstackstrsize nspec stackframes stackindent ustackframes
69 syn match dtraceOption contained "\%(cpu\|jstackframes\|jstackstrsize\|nspec\|stackframes\|stackindent\|ustackframes\)=\d\+\s*$"
/macosx-10.10/xnu-2782.1.97/bsd/dev/dtrace/
H A Ddtrace.c12967 dtrace_optval_t *opt = state->dts_options, sz, nspec; local
13001 nspec = opt[DTRACEOPT_NSPEC];
13002 ASSERT(nspec != DTRACEOPT_UNSET);
13004 if (nspec > INT_MAX) {
13009 spec = kmem_zalloc(nspec * sizeof (dtrace_speculation_t), KM_NOSLEEP);
13017 state->dts_nspeculations = (int)nspec;
13019 for (i = 0; i < nspec; i++) {
13210 if ((nspec = state->dts_nspeculations) == 0) {
13226 kmem_free(spec, nspec * sizeof (dtrace_speculation_t));
13357 int nspec local
[all...]

Completed in 331 milliseconds