Searched refs:frequency (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-9.3-release/sys/dev/speaker/
H A Dspeaker.h20 int frequency; /* in hertz */ member in struct:__anon9002
H A Dspkr.c43 * frequency and duration from the ISA console speaker.
50 * used to generate clicks (a square wave) of whatever frequency is desired.
63 * Emit tone of frequency thz for given number of centisecs
77 /* set timer to generate clicks at given frequency in Hertz */
500 if (tp->frequency == 0)
503 tone(tp->frequency, tp->duration);
518 if (ttp.frequency == 0)
521 tone(ttp.frequency, ttp.duration);
/freebsd-9.3-release/contrib/ipfilter/l4check/
H A Dl4check.conf10 connect frequency 20
/freebsd-9.3-release/sys/dev/bktr/
H A Dbktr_tuner.h83 * tv_freq sets the tuner to a specific frequency for TV or for FM Radio
89 int tv_freq( bktr_ptr_t bktr, int frequency, int type );
93 int do_afc( bktr_ptr_t bktr, int addr, int frequency );
H A Dbktr_tuner.c311 * entry 1: IF frequency
321 * int 1: frequency of base channel,
323 * int 2: offset frequency between channels,
752 * Strangely enough, there is an IF (intermediate frequency) for
791 * set the frequency of the tuner
792 * If 'type' is TV_FREQUENCY, the frequency is freq MHz*16
793 * If 'type' is FM_RADIO_FREQUENCY, the frequency is freq MHz * 100
798 tv_freq( bktr_ptr_t bktr, int frequency, int type ) argument
815 mt2032_set_tv_freq(bktr, frequency);
820 * select the band based on frequency
1016 int frequency; local
[all...]
/freebsd-9.3-release/sys/boot/fdt/dts/
H A Dts7800.dts58 timebase-frequency = <0>;
59 bus-frequency = <0>;
60 clock-frequency = <0>;
85 bus-frequency = <0>;
142 clock-frequency = <0>;
151 clock-frequency = <0>;
H A Ddb88f5182.dts61 timebase-frequency = <0>;
62 bus-frequency = <0>;
63 clock-frequency = <0>;
113 bus-frequency = <0>;
188 clock-frequency = <0>;
197 clock-frequency = <0>;
H A Ddb88f5281.dts61 timebase-frequency = <0>;
62 bus-frequency = <0>;
63 clock-frequency = <0>;
113 bus-frequency = <0>;
199 clock-frequency = <0>;
208 clock-frequency = <0>;
H A Ddockstar.dts63 timebase-frequency = <0>;
64 bus-frequency = <0>;
65 clock-frequency = <0>;
124 bus-frequency = <0>;
220 clock-frequency = <0>;
229 clock-frequency = <0>;
H A Dsheevaplug.dts63 timebase-frequency = <0>;
64 bus-frequency = <0>;
65 clock-frequency = <0>;
124 bus-frequency = <0>;
220 clock-frequency = <0>;
229 clock-frequency = <0>;
H A Ddb78100.dts61 timebase-frequency = <0>;
62 bus-frequency = <0>;
63 clock-frequency = <0>;
123 bus-frequency = <0>;
247 clock-frequency = <0>;
256 clock-frequency = <0>;
314 clock-frequency = <33333333>;
H A Ddb88f6281.dts64 timebase-frequency = <0>;
65 bus-frequency = <0>;
66 clock-frequency = <0>;
125 bus-frequency = <0>;
223 clock-frequency = <0>;
232 clock-frequency = <0>;
283 clock-frequency = <33333333>;
H A Dmpc8555cds.dts91 timebase-frequency = <0>; // 33 MHz, from uboot
92 bus-frequency = <0>; // 166 MHz
93 clock-frequency = <0>; // 825 MHz, from uboot
149 bus-frequency = <0>;
305 clock-frequency = <0>; // should we fill in in uboot?
315 clock-frequency = <0>; // should we fill in in uboot?
401 clock-frequency = <66666666>;
435 clock-frequency = <66666666>;
H A Dmpc8572ds.dts93 timebase-frequency = <0>;
94 bus-frequency = <0>;
95 clock-frequency = <0>;
106 timebase-frequency = <0>;
107 bus-frequency = <0>;
108 clock-frequency = <0>;
243 bus-frequency = <0>; // Filled out by uboot.
535 clock-frequency = <0>;
545 clock-frequency = <0>;
625 clock-frequency
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtracer.c104 if (e1->src->frequency * e1->probability !=
105 e2->src->frequency * e2->probability)
106 return (e1->src->frequency * e1->probability
107 > e2->src->frequency * e2->probability);
149 < bb->frequency * branch_ratio_cutoff)
164 fprintf (dump_file, "Trace seed %i [%i]", bb->index, bb->frequency);
173 fprintf (dump_file, ",%i [%i]", bb->index, bb->frequency);
177 fprintf (dump_file, " forward %i [%i]", bb->index, bb->frequency);
188 fprintf (dump_file, ",%i [%i]", bb->index, bb->frequency);
196 /* Look for basic blocks in frequency orde
[all...]
H A Dcfghooks.c117 if (bb->frequency < 0)
119 error ("verify_flow_info: Wrong frequency of block %i %i",
120 bb->index, bb->frequency);
331 new_bb->frequency = bb->frequency;
409 ret->frequency = freq;
589 dummy->frequency -= EDGE_FREQUENCY (e);
591 if (dummy->frequency < 0)
592 dummy->frequency = 0;
745 new_bb->frequency
[all...]
H A Dregs.h60 int freq; /* # estimated frequency (REG n) is used or set */
79 /* Estimate frequency of references to register N. */
89 /* Compute register frequency from the BB frequency. When optimizing for size,
91 frequency is always equivalent. Otherwise rescale the basic block
92 frequency. */
97 : ((bb)->frequency * REG_FREQ_MAX / BB_FREQ_MAX)\
98 ? ((bb)->frequency * REG_FREQ_MAX / BB_FREQ_MAX)\
H A Dpredict.c124 if (bb->frequency < BB_FREQ_MAX / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION))
138 if (bb->frequency < BB_FREQ_MAX / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION))
672 /* Branch prediction algorithm gives 0 frequency for everything
1531 /* Estimated frequency of execution of basic_block. */
1532 sreal frequency;
1595 memcpy (&BLOCK_INFO (head)->frequency, &real_one, sizeof (real_one));
1600 sreal cyclic_probability, frequency;
1603 memcpy (&frequency, &real_zero, sizeof (real_zero));
1608 /* Compute frequency of basic block. */
1627 /* frequency
1526 sreal frequency; member in struct:block_info_def
1594 sreal cyclic_probability, frequency; local
[all...]
H A Dcfg.c464 if (abs (sum - bb->frequency) > 100)
467 sum, bb->frequency);
499 fprintf (file, ", freq %i", bb->frequency);
875 frequency or count is believed to be lower than FREQUENCY or COUNT
896 if (bb->frequency)
897 prob = edge_frequency * REG_BR_PROB_BASE / bb->frequency;
913 bb->frequency -= edge_frequency;
914 if (bb->frequency < 0)
915 bb->frequency = 0;
920 "frequency o
[all...]
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dap.c50 if (ssid->frequency == 0) {
54 } else if (ssid->frequency >= 2412 && ssid->frequency <= 2472) {
56 conf->channel = (ssid->frequency - 2407) / 5;
57 } else if ((ssid->frequency >= 5180 && ssid->frequency <= 5240) ||
58 (ssid->frequency >= 5745 && ssid->frequency <= 5825)) {
60 conf->channel = (ssid->frequency - 5000) / 5;
62 wpa_printf(MSG_ERROR, "Unsupported AP mode frequency
[all...]
H A Dconfig_ssid.h329 * frequency - Channel frequency in megahertz (MHz) for IBSS
335 * configured SSID is already present, the frequency of the network
338 int frequency; member in struct:wpa_ssid
/freebsd-9.3-release/games/morse/
H A Dmorse.c275 "usage: morse [-els] [-d device] [-w speed] [-c speed] [-f frequency] [string ...]\n"
300 "usage: morse [-elps] [-d device] [-w speed] [-c speed] [-f frequency] [string ...]\n"
505 sound.frequency = freq;
509 sound.frequency = freq;
513 sound.frequency = 0;
525 sound.frequency = 0;
532 sound.frequency = 0;
/freebsd-9.3-release/usr.sbin/nscd/
H A Dcacheplcs.h83 int frequency; member in struct:cache_lfu_policy_item_
H A Dcacheplcs.c327 * policy is to represent frequency (real number) as the integer number and
330 * array for this policy, the elements with frequency 0.1 (calls per-second)
359 * frequency is assigned to the element
372 lfu_item->frequency = CACHELIB_MAX_FREQUENCY - 1;
379 * On each update the frequency of the element is recalculated and, if it
397 * 100 and most of its elements has frequency below the 0.01, they
414 TAILQ_REMOVE(&(lfu_policy->groups[lfu_item->frequency]), lfu_item,
416 lfu_item->frequency = index;
433 TAILQ_REMOVE(&(lfu_policy->groups[lfu_item->frequency]), lfu_item,
492 for (i = ((struct cache_lfu_policy_item_ *)item)->frequency
[all...]
/freebsd-9.3-release/sys/arm/s3c2xx0/
H A Duart_dev_s3c2410.c77 sscomspeed(long speed, long frequency) argument
81 if (speed <= 0 || frequency <= 0)
83 x = (frequency / 16) / speed;

Completed in 159 milliseconds

123