Searched defs:frequency (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/io/
H A Dbeep.c223 * The frequency value is limited to the range of [0 - 32767]
239 bp->frequency = freq;
271 return (beep_mktone(bp->frequency, bp->duration));
324 if (bp->frequency != 0) {
329 bp->frequency);
347 beep_mktone(int frequency, int duration) argument
352 BEEP_DEBUG1((CE_CONT, "beep_mktone(%d, %d) : start.", frequency,
356 * The frequency value is limited to the range of [0 - 32767]
358 if (frequency < 0 || frequency > INT16_MA
435 int frequency; local
[all...]
H A Dkbd.c522 int frequency; local
580 frequency = UINT16_MAX;
582 frequency = 0;
584 frequency = (PIT_HZ + cycles / 2) / cycles;
585 if (frequency > UINT16_MAX)
586 frequency = UINT16_MAX;
589 err = beep_mktone(frequency, msecs);
/illumos-gate/usr/src/uts/common/sys/
H A Dbeep.h48 unsigned short frequency; member in struct:beep_entry
105 int frequency; /* Hz */ member in struct:beep_params
127 extern int beep_mktone(int frequency, int duration);
H A Dvideodev2.h1170 uint32_t frequency; member in struct:v4l2_frequency
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DDistribution.java35 * A frequency distribution aggregated by the DTrace {@code quantize()}
37 * range known as a bucket and counts toward the frequency of that
75 long frequency;
77 frequency = frequencies[i];
78 total += frequency;
113 long frequency;
118 frequency = bucket.getFrequency();
122 total += frequency;
318 * Gets the total frequency across all buckets.
320 * @return sum of the frequency o
365 private long frequency; // non-final so native code can normalize field in class:Distribution.Bucket
[all...]
/illumos-gate/usr/src/uts/common/io/usb/clients/usbkbm/
H A Dusbkbm.c700 int frequency; local
884 frequency = UINT16_MAX;
886 frequency = 0;
888 frequency = (PIT_HZ + cycles / 2) / cycles;
889 if (frequency > UINT16_MAX)
890 frequency = UINT16_MAX;
893 err = beep_mktone(frequency, msecs);
/illumos-gate/usr/src/uts/common/io/kb8042/
H A Dkb8042.c864 int frequency; local
979 frequency = UINT16_MAX;
981 frequency = 0;
983 frequency = (PIT_HZ + cycles / 2) / cycles;
984 if (frequency > UINT16_MAX)
985 frequency = UINT16_MAX;
988 error = beep_mktone(frequency, msecs);

Completed in 98 milliseconds