Searched refs:word (Results 1 - 25 of 48) sorted by relevance

12

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
H A DarmVCM4P10_QuantTables_s.S39 .word 21845, 21845, 21845, 21845, 21845, 21845
40 .word 43690, 43690, 43690, 43690, 43690, 43690
41 .word 87381, 87381, 87381, 87381, 87381, 87381
42 .word 174762, 174762, 174762, 174762, 174762, 174762
43 .word 349525, 349525, 349525, 349525, 349525, 349525
44 .word 699050, 699050, 699050, 699050, 699050, 699050
45 .word 1398101, 1398101, 1398101, 1398101, 1398101, 1398101
46 .word 2796202, 2796202, 2796202, 2796202, 2796202, 2796202
H A DomxVCM4P10_TransformDequantChromaDCFromPair_s.S72 .word armVCM4P10_QPDivTable-(P0+8)
74 .word armVCM4P10_VMatrixQPModTable-(P1+8)
H A DarmVCM4P10_Interpolate_Chroma_s.S31 .word WidthIs2MVIsNotZero-(P0+8), WidthIs2MVIsNotZero-(P0+8)
32 .word WidthIs4MVIsNotZero-(P0+8), WidthIs4MVIsNotZero-(P0+8)
33 .word WidthIs8MVIsNotZero-(P0+8)
36 .word WidthIs2MVIsZero-(P0+8), WidthIs2MVIsZero-(P0+8)
37 .word WidthIs4MVIsZero-(P0+8), WidthIs4MVIsZero-(P0+8)
38 .word WidthIs8MVIsZero-(P0+8)
H A DarmVCM4P10_DecodeCoeffsToPair_s.S308 .word armVCM4P10_CAVLCCoeffTokenTables-(P0+8)
310 .word armVCM4P10_SuffixToLevel-(P1+8)
312 .word (armVCM4P10_CAVLCTotalZeros2x2Tables - 4)-(P2+8)
314 .word (armVCM4P10_CAVLCTotalZeroTables - 4)-(P2+8)
316 .word (armVCM4P10_CAVLCRunBeforeTables - 4)-(P3+8)
318 .word armVCM4P10_ZigZag_2x2-(P4+8)
320 .word armVCM4P10_ZigZag_4x4-(P4+8)
H A DomxVCM4P10_TransformDequantLumaDCFromPair_s.S79 .word armVCM4P10_QPDivTable-(P0+8)
81 .word armVCM4P10_VMatrixQPModTable-(P1+8)
H A DomxVCM4P10_DequantTransformResidualFromPairAndAdd_s.S137 .word armVCM4P10_QPModuloTable-(P0+8)
139 .word armVCM4P10_QPDivTable-(P1+8)
141 .word armVCM4P10_VMatrixU16-(P2+8)
/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/minikin/app/
H A DHyphTool.cpp38 std::vector<uint16_t> word; local
40 fprintf(stderr, "usage: hyphtool word\n");
51 word.push_back(c);
53 hyph->hyphenate(&result, word.data(), word.size());
58 printf("%c", word[i]);
/frameworks/minikin/include/minikin/
H A DHyphenator.h37 // Compute the hyphenation of a word, storing the hyphenation in result vector. Each
39 // offset in the word. Currently 0 means no hyphen and 1 means insert hyphen and break,
41 // Example: word is "hyphen", result is [0 0 1 0 0 0], corresponding to "hy-phen".
42 void hyphenate(std::vector<uint8_t>* result, const uint16_t* word, size_t len);
53 void hyphenateSoft(uint8_t* result, const uint16_t* word, size_t len);
55 // try looking up word in alphabet table, return false if any code units fail to map
57 bool alphabetLookup(uint16_t* alpha_codes, const uint16_t* word, size_t len);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
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...]
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonEvent.java214 // find the end of the word
225 String word = rawEvent.substring(current, wordEnd);
226 current += word.length();
228 word = word.trim();
232 // unescape stuff within the word
233 word = word.replace("\\\\", "\\");
234 word = word
[all...]
/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/av/media/libstagefright/codecs/mp3dec/src/asm/
H A Dpvmp3_mdct_18_gcc.s329 .word 0x0807d2b0
330 .word 0x08483ee0
331 .word 0x08d3b7d0
332 .word 0x09c42570
333 .word 0x0b504f30
334 .word 0x0df29440
335 .word 0x12edfb20
336 .word 0x1ee8dd40
337 .word 0x5bca2a00
339 .word
[all...]
H A Dpvmp3_dct_16_gcc.s424 .word 0x404f4680
426 .word 0x519e4e00
428 .word 0x4140fb80
430 .word 0x42e13c00
432 .word 0x6e3c9300
434 .word 0x4cf8de80
436 .word 0x48919f80
438 .word 0x43e22480
440 .word 0x73326b80
442 .word
[all...]
H A Dpvmp3_dct_9_gcc.s176 .word 0x620dbe80
178 .word 0x163a1a80
180 .word 0x7847d900
182 .word 0x87b82700
184 .word 0xd438af00
186 .word 0xadb92280
188 .word 0x91261480
190 .word 0x81f1d200
192 .word 0x6ed9eb80
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_neon_Blur.S98 2: ifcc .word 1f-1b-8
179 100: .word 101f-100b
180 .word 102f-100b
181 .word 103f-100b
182 .word 104f-100b
183 .word 105f-100b
184 .word 106f-100b
185 .word 107f-100b
186 .word 108f-100b
250 100: .word 10
[all...]
/frameworks/compile/libbcc/include/bcinfo/Wrap/
H A Dbitcode_wrapperer.h116 // Returns true if we can read a word. If necessary, fills the buffer
122 // Read a (32-bit) word from the input. Return true
123 // if able to read the word.
124 bool ReadWord(uint32_t& word);
126 // Write a (32-bit) word to the output. Return true if successful
127 bool WriteWord(uint32_t word);
/frameworks/minikin/libs/minikin/
H A DHyphenator.cpp113 void Hyphenator::hyphenate(vector<uint8_t>* result, const uint16_t* word, size_t len) { argument
120 if (alphabetLookup(alpha_codes, word, len)) {
127 hyphenateSoft(result->data(), word, len);
130 // If any soft hyphen is present in the word, use soft hyphens to decide hyphenation,
132 void Hyphenator::hyphenateSoft(uint8_t* result, const uint16_t* word, size_t len) { argument
135 result[i] = word[i - 1] == CHAR_SOFT_HYPHEN;
139 bool Hyphenator::alphabetLookup(uint16_t* alpha_codes, const uint16_t* word, size_t len) { argument
147 alpha_codes[0] = 0; // word start
149 uint16_t c = word[i];
159 alpha_codes[len + 1] = 0; // word terminatio
[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/libeffects/loudness/common/core/
H A Dbyte_swapper.h31 int16 word = 1; local
32 char *cp = reinterpret_cast<char *>(&word);
/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py59 for word in self.words:
63 for letter in word:
/frameworks/minikin/tools/
H A Dmk_hyb_file.py133 # Add a pattern (word fragment with numeric codes, such as ".ad4der")
138 word = ''
145 word += c
152 self.add_word_res(word, result)
154 # Add an exception (word with hyphens, such as "ta-ble")
157 word = ['.']
166 word.append(c)
168 word.append('.')
172 print(word, res)
173 self.add_word_res(''.join(word), re
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/
H A DCalcWindowEnergy_v5.s108 .word 0xbec8b439
109 .word 0x609d4952
/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 449 milliseconds

12