Searched refs:word (Results 26 - 50 of 401) sorted by relevance

1234567891011>>

/external/libgsm/src/
H A Dpreprocess.c36 word * s,
37 word * so ) /* [0..159] IN/OUT */
40 word z1 = S->z1;
42 word mp = S->mp;
44 word s1;
49 word msp, lsp;
50 word SO;
H A Dadd.c23 word gsm_add P2((a,b), word a, word b)
29 word gsm_sub P2((a,b), word a, word b)
35 word gsm_mult P2((a,b), word a, word b)
41 word gsm_mult_
[all...]
H A Dlpc.c27 word * s, /* [0..159] IN/OUT */
36 word temp, smax, scalauto;
100 word * sp = s;
101 word sl = *sp;
150 word * s, /* [0..159] IN/OUT */
179 register word * r /* 0...7 OUT */
183 register word temp;
185 word ACF[9]; /* 0..8 */
186 word P[ 9]; /* 0..8 */
187 word
[all...]
/external/chromium/chrome/browser/
H A Dspellcheck_message_filter.h22 void OnPlatformCheckSpelling(const string16& word, int tag, bool* correct);
23 void OnPlatformFillSuggestionList(const string16& word,
28 void OnUpdateSpellingPanelWithMisspelledWord(const string16& word);
H A Dspellchecker_linux.cc37 void UpdateSpellingPanelWithMisspelledWord(const string16& word) {} argument
50 void AddWord(const string16& word) {} argument
52 void RemoveWord(const string16& word) {} argument
56 void IgnoreWord(const string16& word) {} argument
H A Dspellchecker_platform_engine.h39 // Changes the word show in the spelling panel to be |word|. Note that the
41 void UpdateSpellingPanelWithMisspelledWord(const string16& word);
57 // spellchecker. Returns true if the word is spelled correctly.
66 // Adds the given word to the platform dictionary.
67 void AddWord(const string16& word);
69 // Remove a given word from the platform dictionary.
70 void RemoveWord(const string16& word);
75 // Tells the platform spellchecker to ignore a word. This doesn't take a tag
80 void IgnoreWord(const string16& word);
[all...]
H A Dspellchecker_win.cc37 void UpdateSpellingPanelWithMisspelledWord(const std::wstring& word) {} argument
50 void AddWord(const string16& word) {} argument
52 void RemoveWord(const string16& word) {} argument
56 void IgnoreWord(const string16& word) {} argument
H A Dspellcheck_message_filter.cc38 void SpellCheckMessageFilter::OnPlatformCheckSpelling(const string16& word, argument
41 *correct = SpellCheckerPlatform::CheckSpelling(word, tag);
45 const string16& word,
47 SpellCheckerPlatform::FillSuggestionList(word, suggestions);
63 const string16& word) {
64 SpellCheckerPlatform::UpdateSpellingPanelWithMisspelledWord(word);
44 OnPlatformFillSuggestionList( const string16& word, std::vector<string16>* suggestions) argument
62 OnUpdateSpellingPanelWithMisspelledWord( const string16& word) argument
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h247 static inline unsigned ROL(unsigned word, int i) argument
250 :"=r" (word)
251 :"0" (word),"c" (i));
252 return word;
255 static inline unsigned ROR(unsigned word, int i) argument
258 :"=r" (word)
259 :"0" (word),"c" (i));
260 return word;
265 static inline unsigned ROLc(unsigned word, const int i) argument
268 :"=r" (word)
273 RORc(unsigned word, const int i) argument
290 ROL(unsigned word, int i) argument
298 ROR(unsigned word, int i) argument
308 ROLc(unsigned word, const int i) argument
316 RORc(unsigned word, const int i) argument
346 ROL64(unsigned long word, int i) argument
354 ROR64(unsigned long word, int i) argument
364 ROL64c(unsigned long word, const int i) argument
372 ROR64c(unsigned long word, const int i) argument
[all...]
/external/chromium/chrome/common/extensions/docs/css/
H A Dprint.css17 word-wrap: break-word; /* Internet Explorer 5.5+ */
/external/llvm/test/MC/ARM/
H A Darm_word_directive.s6 .word 3
/external/llvm/test/MC/X86/
H A Dx86_directives.s6 .word 3
/external/openssl/crypto/
H A Darmv4cpuid.S10 .word 0xf26ee1fe @ vorr q15,q15,q15
11 .word 0xe12fff1e @ bx lr
18 .word 0xe12fff1e @ bx lr
31 .word 0xe12fff1e @ bx lr
53 .word 0xe12fff1e @ bx lr
86 .word 0xe12fff1e @ bx lr
100 .word 0xf3000150 @ veor q0, q0, q0
101 .word 0xf3022152 @ veor q1, q1, q1
102 .word 0xf3044154 @ veor q2, q2, q2
103 .word
[all...]
H A Dsparccpuid.S47 .word 0x91408000 !rd %ccr,%o0
53 .word 0xbfa00040 !fmovd %f0,%f62
54 .word 0xbba00040 !...
55 .word 0xb7a00040
56 .word 0xb3a00040
57 .word 0xafa00040
58 .word 0xaba00040
59 .word 0xa7a00040
60 .word 0xa3a00040
61 .word
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/
H A DMakefile11 mkdir -p hicolor/$(word 1, $(subst /, ,$(@)))/apps/
12 inkscape $(subst .png,.svg, $(word 2, $(subst /, , $(@)))) --without-gui \
13 --export-width=$(word 1, $(subst x, , $(@))) \
14 --export-height=$(word 2, $(subst x, , $(subst /, , $(@)))) \
15 --export-png=hicolor/$(word 1, $(subst /, ,$(@)))/apps/$(word 2, $(subst /, , $@))
/external/chromium/chrome/browser/history/
H A Dquery_parser.cc65 // or a single word (a QueryNodeWord).
67 // A QueryNodeWord is a single word in the query.
70 explicit QueryNodeWord(const string16& word) argument
71 : word_(word), literal_(false) {}
76 const string16& word() const { return word_; } function in class:QueryNodeWord
82 virtual bool Matches(const string16& word, bool exact) const;
93 if (Matches(words[i].word, false)) {
104 bool QueryNodeWord::Matches(const string16& word, bool exact) const { argument
106 return word == word_;
107 return word
144 Matches(const string16& word, bool exact) const argument
213 Matches(const string16& word, bool exact) const argument
247 IsWordLongEnoughForPrefixSearch(const string16& word) argument
341 string16 word = iter.GetString(); local
378 string16 word = iter.GetString(); local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DJavaScriptTarget.java55 public String getTarget64BitStringFromValue(long word) { argument
58 writeHexWithPadding(buf, Integer.toHexString((int)(word & 0x00000000ffffffffL)));
60 writeHexWithPadding(buf, Integer.toHexString((int)(word >> 32)));
/external/clang/
H A Dclang-version-inc.mk16 CLANG_VERSION_MAJOR := $(word 1,$(CLANG_VERSION_COMPONENTS))
17 CLANG_VERSION_MINOR := $(word 2,$(CLANG_VERSION_COMPONENTS))
18 CLANG_VERSION_PATCHLEVEL := $(word 3,$(CLANG_VERSION_COMPONENTS))
/external/hyphenation/
H A Dhyphen.h12 * Non-standard and compound word hyphenation support by László Németh.
100 const char *word, int word_size,
111 word: input word
112 word_size: byte length of the input word
121 hyphenated_word: hyphenated input word (hyphens signed with `='),
131 character positions of the input word.
152 const char *word, int word_size, char * hyphens,
163 const char *word, int word_size, char * hyphens,
/external/proguard/src/proguard/
H A DArgumentWordReader.java89 String word = reader.nextWord();
90 if (word == null)
93 System.err.println("["+word+"]");
/external/kernel-headers/original/asm-mips/
H A Dasmmacro.h59 .word 0x41600bc1 | (\reg << 16)
63 .word 0x41600be1 | (\reg << 16)
67 .word 0x41600001 | (\reg << 16)
71 .word 0x41600021 | (\reg << 16)
75 .word 0x41000000 | (\rt << 16) | (\rd << 11) | (\u << 5) | (\sel)
79 .word 0x41800000 | (\rt << 16) | (\rd << 11) | (\u << 5) | (\sel)
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKTextChecker.cpp57 void WKTextCheckerChangeSpellingToWord(WKPageRef page, WKStringRef word) argument
59 WebTextChecker::shared()->changeSpellingToWord(toImpl(page), toWTFString(word));
/external/chromium/net/disk_cache/
H A Dbitmap.cc14 int FindLSBSetNonZero(uint32 word) { argument
17 float f = static_cast<float>(word & -static_cast<int>(word));
29 // Returns the index of the first bit set to |value| from |word|. This code
31 int FindLSBNonEmpty(uint32 word, bool value) { argument
32 // If we are looking for 0, negate |word| and look for 1.
34 word = ~word;
36 return FindLSBSetNonZero(word);
76 // Always clear the unused bits in the last word
173 int word = begin / kIntBits; local
299 int word = start / kIntBits; local
[all...]
/external/clang/www/
H A Dmenu.css13 word-wrap: break-word;
/external/grub/stage2/
H A Dnbloader.S37 .word NBI_DEST_OFF
38 .word NBI_DEST_SEG
40 .word NBI_DEST_OFF + (relocate - _start)
41 .word NBI_DEST_SEG
105 /* Use word-size copy */

Completed in 562 milliseconds

1234567891011>>