HomeSort by relevance Sort by last modified time
    Searched full:frequency (Results 1 - 25 of 612) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libutil/
op_cpufreq.h 3 * get cpu frequency declaration
20 * return the estimated cpu frequency in Mhz through
op_cpufreq.c 3 * get cpu frequency definition
45 if (sscanf(line, "cycle frequency [Hz] : %lu", &uval) == 1) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnWord.java 32 public int frequency; field in class:WnnWord
60 * @param frequency The score of word
62 public WnnWord(String candidate, String stroke, int frequency) {
63 this(0, candidate, stroke, new WnnPOS(), frequency, 0);
83 * @param frequency The score of word
85 public WnnWord(String candidate, String stroke, WnnPOS posTag, int frequency) {
86 this(0, candidate, stroke, posTag, frequency, 0);
96 * @param frequency The score of word
98 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency) {
99 this(id, candidate, stroke, posTag, frequency, 0)
    [all...]
WnnClause.java 32 * @param frequency The frequency of the clause
34 public WnnClause(String candidate, String stroke, WnnPOS posTag, int frequency) {
38 frequency);
52 stem.frequency,
68 stem.frequency,
WnnSentence.java 43 this.frequency = 0;
54 this.frequency = headClause.frequency;
69 this.frequency = headClause.frequency;
86 this.frequency = clause.frequency;
104 this.frequency = prev.frequency + clause.frequency;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserDictionary.java 31 Words.FREQUENCY
77 * @param frequency the frequency of occurrence of the word. A frequency of 255 is considered
79 * @TODO use a higher or float range for frequency
82 public synchronized void addWord(String word, int frequency) {
88 super.addWord(word, frequency);
93 values.put(Words.FREQUENCY, frequency);
120 int frequency = cursor.getInt(INDEX_FREQUENCY) local
    [all...]
AutoDictionary.java 45 // frequency.
70 /** Sort by descending order of frequency. */
102 final int frequency = getWordFrequency(word); local
103 return frequency >= VALIDITY_THRESHOLD;
126 int frequency = cursor.getInt(frequencyIndex); local
130 super.addWord(word, frequency);
159 // Write a null frequency if it is to be deleted from the db
251 private ContentValues getContentValues(String word, int frequency, String locale) {
254 values.put(COLUMN_FREQUENCY, frequency);
Dictionary.java 42 * the provided frequency.
46 * @param frequency the frequency of occurence. This is normalized between 1 and 255, but
50 boolean addWord(char[] word, int wordOffset, int wordLength, int frequency);
  /external/kernel-headers/original/asm-x86/
param.h 5 # define HZ CONFIG_HZ /* Internal kernel timer frequency */
  /frameworks/base/core/java/android/provider/
UserDictionary.java 30 * frequency information and locale information.
72 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
75 public static final String FREQUENCY = "frequency";
97 * Sort by descending order of frequency.
99 public static final String DEFAULT_SORT_ORDER = FREQUENCY + " DESC";
101 /** Adds a word to the dictionary, with the given frequency and the specified
110 int frequency, int localeType) {
117 if (frequency < 0) frequency = 0
    [all...]
  /packages/inputmethods/PinyinIME/jni/include/
ngram.h 37 // After this process, an item with a lower score has a higher frequency.
40 // System words' total frequency. It is not the real total frequency, instead,
42 // total frequency changes.
57 // Because after user adds some user lemmas, the total frequency changes, and
76 // Set the total frequency of all none system dictionaries.
  /external/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 117 AtomicInteger frequency = backingMap.get(getElement()); local
118 if (frequency != null) {
119 count = frequency.get();
144 for (AtomicInteger frequency : backingMap.values()) {
145 frequency.set(0);
163 AtomicInteger frequency = backingMap.remove(entry.getElement());
164 int numberRemoved = frequency.getAndSet(0);
214 int frequency = currentEntry.getValue().get();
215 if (frequency <= 0) {
227 AtomicInteger frequency = backingMap.get(element)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 44 * The frequency in MHz of the channel over which the client is communicating
47 public int frequency; field in class:ScanResult
56 public ScanResult(String SSID, String BSSID, String caps, int level, int frequency) {
61 this.frequency = frequency;
78 append(", frequency: ").
79 append(frequency);
95 dest.writeInt(frequency);
  /packages/inputmethods/LatinIME/dictionaries/
sample.xml 4 Each entry has a frequency between 255 and 0.
5 Highest frequency words get more weight in the prediction algorithm.
  /external/qemu/distrib/sdl-1.2.12/src/audio/sun/
SDL_sunaudio.h 42 int frequency; /* The audio frequency in KHz */ member in struct:SDL_PrivateAudioData
53 #define frequency (this->hidden->frequency) macro
  /external/kernel-headers/original/linux/
timex.h 28 * Added defines for hybrid phase/frequency-lock loop.
73 #define SHIFT_KF 16 /* PLL frequency factor (shift) */
74 #define SHIFT_KH 2 /* FLL frequency factor (shift) */
86 * time_tolerance variables, which represent the current frequency
87 * offset and maximum frequency tolerance.
93 #define SHIFT_USEC 16 /* frequency offset scale (shift) */
97 #define MAXFREQ (512L << SHIFT_USEC) /* max frequency error (ppm) */
109 long freq; /* frequency offset (scaled ppm) */
115 long tolerance; /* clock frequency tolerance (ppm)
121 long ppsfreq; /* pps frequency (scaled ppm) (ro) *
286 u64 frequency; \/* frequency in counts\/second *\/ member in struct:time_interpolator
    [all...]
akm8976.h 23 #define CSPEC_SFRQ_32 0x00 /* Measurement frequency: 32Hz */
24 #define CSPEC_SFRQ_64 0x01 /* Measurement frequency: 64Hz */
25 #define CSPEC_MCS 0x07 /* Clock frequency */
auxvec.h 25 #define AT_CLKTCK 17 /* frequency at which times() increments */
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio.c 89 /* Add a new frequency/clock/predivisor to the current list */
90 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock,
99 /* Search where to insert the frequency (highest first) */
101 if (frequency > MINTAUDIO_frequencies[p].frequency) {
114 MINTAUDIO_frequencies[p].frequency = frequency;
122 /* Search for the nearest frequency */
134 if (desired_freq >= ((MINTAUDIO_frequencies[i].frequency+
135 MINTAUDIO_frequencies[i+1].frequency)>>1))
    [all...]
SDL_mintaudio_mcsn.h 43 unsigned long res1; /* Frequency of external clock */
57 #define SETSMPFREQ 7 /* Set sample frequency */
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 43 UserDictionary.Words.FREQUENCY,
80 int frequency = 1; local
81 UserDictionary.Words.addWord(getContext(), word, frequency, local
90 assertEquals(frequency, cursor.getInt(FREQUENCY_INDEX));
  /external/kernel-headers/original/asm-arm/
param.h 14 # define HZ CONFIG_HZ /* Internal kernel timer frequency */
  /external/opencore/oscl/oscl/osclproc/src/
oscl_timer.h 114 * @param frequency The frequency of the timer in cycles/second. A value of
117 OsclTimer(const char *name, uint32 frequency = 1, int32 priority = OsclActiveObject::EPriorityNominal);
131 * Set the frequency of the timer in cycles/second.
133 * @param frequency A value of 1 means the timer will cycle in one second
136 void SetFrequency(uint32 frequency);
139 * Set the exact frequency of the timer in microsecond.
141 * @param frequency A value of 1 means the timer will cycle in one microsecond
144 void SetExactFrequency(uint32 frequency);
154 * the timer frequency is 1 and the cycles are set to 2, the
    [all...]
  /external/bluetooth/bluez/sbc/
sbcdec.c 53 int format = AFMT_S16_BE, frequency, channels; local
105 switch (sbc.frequency) {
107 frequency = 16000;
111 frequency = 32000;
115 frequency = 44100;
119 frequency = 48000;
122 frequency = 0;
128 filename, frequency, sbc.subbands * 4 + 4, sbc.bitpool,
142 au_hdr.sample_rate = BE_INT(frequency);
163 if (ioctl(ad, SNDCTL_DSP_SPEED, &frequency) < 0)
    [all...]
  /external/bluetooth/bluez/audio/
a2dp.h 75 uint8_t frequency:4; member in struct:sbc_codec_cap
88 uint8_t frequency:6; member in struct:mpeg_codec_cap
98 uint8_t frequency:4; member in struct:sbc_codec_cap
114 uint8_t frequency:6; member in struct:mpeg_codec_cap

Completed in 81 milliseconds

1 2 3 4 5 6 7 8 91011>>