Searched defs:ordinal (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DAggregationRecord.java50 new String[] {"tuple", "value", "ordinal"})
79 private int ordinal; field in class:AggregationRecord
103 * ordinal. Supports XML persistence.
111 * @param n ordinal from zero (first) to n-1 (last) within the
115 * @throws IllegalArgumentException if the given ordinal is negative
122 ordinal = n;
135 if (ordinal < 0) {
136 throw new IllegalArgumentException("ordinal is negative");
170 * Gets the ordinal generated when this AggregationRecord was added
179 * @return non-negative ordinal fro
[all...]
/illumos-gate/usr/src/uts/common/io/tpm/
H A Dtpm.c673 tpm_get_ordinal_duration(tpm_state_t *tpm, uint8_t ordinal) argument
682 if (ordinal & TSC_ORDINAL_MASK) {
683 if (ordinal > TSC_ORDINAL_MAX) {
686 "!%s: tsc ordinal: %d exceeds MAX: %d",
687 myname, ordinal, TSC_ORDINAL_MAX);
691 index = tsc_ords_duration[ordinal];
693 if (ordinal > TPM_ORDINAL_MAX) {
696 "!%s: ordinal %d exceeds MAX: %d",
697 myname, ordinal, TPM_ORDINAL_MAX);
701 index = tpm_ords_duration[ordinal];
959 uint32_t ordinal; local
[all...]

Completed in 45 milliseconds