Searched defs:word (Results 1 - 14 of 14) sorted by relevance

/frameworks/rs/cpu_ref/linkloader/include/
H A DELFTypes.h126 typedef detail::ELFWord word; typedef in struct:ELFPrimitiveTypes
147 typedef detail::ELFWord word; typedef in struct:ELFPrimitiveTypes
188 typedef typename ELFPrimitiveTypes<BITWIDTH>::word word_t; \
206 typedef ELFPrimitiveTypes<BITWIDTH>::word word_t; \
/frameworks/av/media/libeffects/loudness/common/core/
H A Dbyte_swapper.h31 int16 word = 1; local
32 char *cp = reinterpret_cast<char *>(&word);
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java62 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single word.
69 * The word column.
72 public static final String WORD = "word";
81 * The locale that this word belongs to. Null if it pertains to all
88 * The uid of the application that inserted the word.
94 * An optional shortcut for this word. When the shortcut is typed, supporting IMEs should
95 * suggest the word in this row as an alternate spelling too.
116 /** Adds a word to the dictionary, with the given frequency and the specified
123 * @param word the word t
129 addWord(Context context, String word, int frequency, int localeType) argument
158 addWord(Context context, String word, int frequency, String shortcut, Locale locale) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAlphabetIndexer.java124 * Default implementation compares the first character of word with letter.
126 protected int compare(String word, String letter) { argument
128 if (word.length() == 0) {
131 firstLetter = word.substring(0, 1);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Didct_vca.cpp425 uint32 word; local
434 word = (tmp << 8) | tmp;
435 word = (word << 16) | word;
437 *((uint32*)(comp += offset)) = word;
438 *((uint32*)(comp + 4)) = word;
453 int32 word; local
473 word = ((x0 + x4) >> 14);
474 CLIP_RESULT(word)
510 int32 word; local
583 int32 word; local
[all...]
H A Dblock_idct.cpp630 int32 word; local
696 word = ((x7 + x1) >> 14);
697 CLIP_RESULT(word)
701 word = word | (temp << 8);
705 word = word | (temp << 16);
709 word = word | (temp << 24);
710 *((int32*)(comp)) = word;
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp57 /* assuming the block is word-aligned */
286 /* assuming the block is word-aligned */
492 /* assuming the block is word-aligned */
1251 ULong word; local
1258 word = *((ULong*)cur);
1259 temp += (word >> 24);
1260 temp += ((word >> 16) & 0xFF);
1261 temp += ((word >> 8) & 0xFF);
1262 temp += (word & 0xFF);
1264 word
[all...]
H A Dbitstream_io.cpp20 /* Change the bitstream parsing algorithm. Use temporary word of 2 or 4 bytes */
69 stream->word = 0;
126 stream->word <<= Length;
127 stream->word |= Value; /* assuming Value is not larger than Length */
134 stream->word <<= stream->bitLeft;
136 stream->word |= ((UInt)Value >> Length);
146 stream->word = Value;
200 /* Purpose : save written word into the bitstream buffer. */
210 UInt word; local
223 word
260 UInt word, shift; local
584 UInt word; local
[all...]
H A Dmotion_est.cpp681 ULong word; local
696 word = ptr[0];
698 word |= (byte << 8);
700 word |= (byte << 16);
702 word |= (byte << 24);
703 *htfmMB++ = word;
705 word = *(ptr += (width << 2));
707 word |= (byte << 8);
709 word |= (byte << 16);
711 word |
[all...]
H A Dmp4lib_int.h33 UInt word; /*hold one word temporarily */ member in struct:tagBitstream
34 Int bitLeft; /*number of bits left in "word" */
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dbitcode_wrapperer.cpp156 bool BitcodeWrapperer::ReadWord(uint32_t& word) { argument
158 word = (((uint32_t) BufferLookahead(0)) << 0)
338 // Note: This writes out the 4 word header required by llvm wrapped
/frameworks/native/libs/binder/
H A DDebug.cpp219 size_t word; local
221 for (word = 0; word < bytesPerLine; ) {
224 const size_t startIndex = word+(alignment-(alignment?1:0));
227 const size_t startIndex = word;
234 if (index == 0 && word > 0 && alignment > 0) {
248 if (index == 0 && word > 0) {
264 word += index;
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java196 * Add a word to a slot.
199 * @param word word to insert.
200 * @param pron pronunciation, or null to derive from word.
201 * @param weight weight to give the word. One is normal, 50 is low.
204 public void addWordToSlot(String slot, String word, String pron, int weight, String tag) { argument
205 SR_GrammarAddWordToSlot(mGrammar, slot, word, pron, weight, tag);
664 String word, String pronunciation, int weight, String tag);
701 // const LCHAR* word);
705 private static native String SR_VocabularyGetPronunciation(int vocabulary, String word); argument
663 SR_GrammarAddWordToSlot(int grammar, String slot, String word, String pronunciation, int weight, String tag) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_est.cpp749 uint32 word; local
763 word = ptr[0];
765 word |= (byte << 8);
767 word |= (byte << 16);
769 word |= (byte << 24);
770 *htfmMB++ = word;
772 word = *(ptr += (pitch << 2));
774 word |= (byte << 8);
776 word |= (byte << 16);
778 word |
[all...]

Completed in 401 milliseconds