Searched refs:word (Results 76 - 100 of 709) sorted by relevance

1234567891011>>

/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/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
H A Dbitops.h58 * __ffs - find first bit in word.
59 * @word: The word to search
63 static __always_inline unsigned long __ffs(unsigned long word) argument
68 if ((word & 0xffffffff) == 0) {
70 word >>= 32;
73 if ((word & 0xffff) == 0) {
75 word >>= 16;
77 if ((word & 0xff) == 0) {
79 word >>
[all...]
/external/openssl/crypto/
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/proguard/src/proguard/
H A DArgumentWordReader.java90 String word = reader.nextWord(false);
91 if (word == null)
94 System.err.println("["+word+"]");
/external/bison/lib/
H A Dsignbitf.c42 union { float value; unsigned int word[NWORDS]; } m; member in union:__anon352
44 return (m.word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;
H A Dsignbitl.c42 union { long double value; unsigned int word[NWORDS]; } m; member in union:__anon353
44 return (m.word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;
/external/chromium_org/chrome/browser/resources/options/
H A Dlanguage_dictionary_overlay.css33 #language-dictionary-overlay-word-list {
37 #language-dictionary-overlay-word-list.no-search-matches {
41 #language-dictionary-overlay-word-list > * {
45 .language-dictionary-overlay-word-list-item {
/external/chromium_org/third_party/fips181/
H A Dconvert.cc68 ** to small letters in the word:
70 ** char * - word.
77 decapitalize (char *word) argument
81 int str_len = (int) strlen(word);
84 if(word[j] == clet[i])
85 word[j] = let[i];
246 ** spell_word - spell the word
248 ** char * - pointer to the word
249 ** char * - pointer to the spelled word
251 ** char * - pointer to the spelled word
257 spell_word(char * word, char * spelled_word) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Diwalsh_mmx.asm102 mov word ptr[rdx+32*0], ax
103 mov word ptr[rdx+32*1], cx
106 mov word ptr[rdx+32*4], ax
107 mov word ptr[rdx+32*5], cx
110 mov word ptr[rdx+32*8], ax
111 mov word ptr[rdx+32*9], cx
114 mov word ptr[rdx+32*12], ax
115 mov word ptr[rdx+32*13], cx
121 mov word ptr[rdx+32*2], ax
122 mov word pt
[all...]
H A Diwalsh_sse2.asm82 mov word ptr[rdx+32*0], ax
83 mov word ptr[rdx+32*2], cx
86 mov word ptr[rdx+32*4], ax
87 mov word ptr[rdx+32*6], cx
92 mov word ptr[rdx+32*8], ax
93 mov word ptr[rdx+32*10], cx
96 mov word ptr[rdx+32*12], ax
97 mov word ptr[rdx+32*14], cx
103 mov word ptr[rdx+32*1], ax
104 mov word pt
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dmem64-err.asm2 mov ax, [word 0]
H A Dmovbe.asm3 movbe cx, word [5]
11 movbe word [5], bx
/external/libvpx/libvpx/vp8/common/x86/
H A Diwalsh_mmx.asm102 mov word ptr[rdx+32*0], ax
103 mov word ptr[rdx+32*1], cx
106 mov word ptr[rdx+32*4], ax
107 mov word ptr[rdx+32*5], cx
110 mov word ptr[rdx+32*8], ax
111 mov word ptr[rdx+32*9], cx
114 mov word ptr[rdx+32*12], ax
115 mov word ptr[rdx+32*13], cx
121 mov word ptr[rdx+32*2], ax
122 mov word pt
[all...]
H A Diwalsh_sse2.asm82 mov word ptr[rdx+32*0], ax
83 mov word ptr[rdx+32*2], cx
86 mov word ptr[rdx+32*4], ax
87 mov word ptr[rdx+32*6], cx
92 mov word ptr[rdx+32*8], ax
93 mov word ptr[rdx+32*10], cx
96 mov word ptr[rdx+32*12], ax
97 mov word ptr[rdx+32*14], cx
103 mov word ptr[rdx+32*1], ax
104 mov word pt
[all...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_spell_check.cc51 // Extract the first possible English word from the given string.
54 // misspelled-word table.
65 base::string16 word; local
67 // Look up our misspelled-word table to check if the extracted word is a
68 // known misspelled word, and return the offset and the length of the
69 // extracted word if this word is a known misspelled word.
71 // misspelled-word tabl
106 HasInCache(const blink::WebString& word) argument
124 FillSuggestionList( const blink::WebString& word, blink::WebVector<blink::WebString>* suggestions) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_subexp.c97 static INLINE int write_bit_gte(vp9_writer *w, int word, int test) { argument
98 vp9_write_literal(w, word >= test, 1);
99 return word >= test;
102 static void encode_term_subexp(vp9_writer *w, int word) { argument
103 if (!write_bit_gte(w, word, 16)) {
104 vp9_write_literal(w, word, 4);
105 } else if (!write_bit_gte(w, word, 32)) {
106 vp9_write_literal(w, word - 16, 4);
107 } else if (!write_bit_gte(w, word, 64)) {
108 vp9_write_literal(w, word
[all...]
/external/chromium_org/chrome/browser/resources/net_export/
H A Dnet_export.css32 word-wrap: break-word;
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_platform_mac.h46 // Changes the word show in the spelling panel to be |word|. Note that the
48 void UpdateSpellingPanelWithMisspelledWord(const base::string16& word);
60 // spellchecker. Returns true if the word is spelled correctly.
69 // Adds the given word to the platform dictionary.
70 void AddWord(const base::string16& word);
72 // Remove a given word from the platform dictionary.
73 void RemoveWord(const base::string16& word);
78 // Tells the platform spellchecker to ignore a word. This doesn't take a tag
83 void IgnoreWord(const base::string16& word);
[all...]
/external/chromium_org/net/disk_cache/blockfile/
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/libgsm/src/
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/libvpx/libvpx/vp9/encoder/
H A Dvp9_subexp.c64 static int count_term_subexp(int word) { argument
65 if (word < 16)
67 if (word < 32)
69 if (word < 64)
71 if (word < 129)
92 static INLINE int write_bit_gte(vp9_writer *w, int word, int test) { argument
93 vp9_write_literal(w, word >= test, 1);
94 return word >= test;
97 static void encode_term_subexp(vp9_writer *w, int word) { argument
98 if (!write_bit_gte(w, word, 1
[all...]
/external/llvm/test/MC/Mips/
H A Delf_st_other.s13 .word 42
/external/srec/seti/sltsEngine/include/
H A Dfsm_dictionary.h45 int get_lts_pron(FSM_DICTIONARY *d, char *word, char **pron, int max_pron_len);
/external/srec/srec/Vocabulary/include/
H A DSR_VocabularyImpl.h83 ESR_ReturnCode SR_VocabularyAddWordImpl(SR_Vocabulary* self, const LCHAR* word);
87 ESR_ReturnCode SR_VocabularyDeleteWordImpl(SR_Vocabulary* self, const LCHAR* word);
91 ESR_ReturnCode SR_VocabularyContainsWordImpl(SR_Vocabulary* self, const LCHAR* word, ESR_BOOL* result);
95 ESR_ReturnCode SR_VocabularyGetPronunciationImpl(SR_Vocabulary* self, const LCHAR* word, LCHAR* phoneme, size_t* len);

Completed in 701 milliseconds

1234567891011>>