/external/v8/test/webkit/fast/js/kde/ |
md5-2.js | 79 * Calculate the MD5 of an array of little-endian words, producing an array 80 * of little-endian words. 173 * Convert an array of little-endian words to a hex string. 188 * Convert an array of little-endian words to a base64 encoded string.
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/ |
vp9_subpel_variance_impl_sse2.asm | 59 punpcklbw xmm5, xmm0 ; xmm5 = words of above 63 punpcklbw xmm3, xmm0 ; xmm3 = words of above 273 punpcklbw xmm5, xmm0 ; xmm5 = words of above 277 punpcklbw xmm3, xmm0 ; xmm3 = words of above
|
vp9_variance_impl_sse2.asm | 454 punpcklbw xmm5, xmm0 ; xmm5 = words of above 457 punpcklbw xmm3, xmm0 ; xmm3 = words of above 563 punpcklbw xmm5, xmm0 ; xmm5 = words of above 566 punpcklbw xmm3, xmm0 ; xmm3 = words of above 670 punpcklbw xmm5, xmm0 ; xmm5 = words of above 673 punpcklbw xmm3, xmm0 ; xmm3 = words of above
|
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/stlport/ |
printers.py | 122 words = self.val['_M_w'] 127 if words.type.code == gdb.TYPE_CODE_ARRAY: 128 word_size = words.type.target ().sizeof 129 n_words = words.type.sizeof / word_size 131 word_size = words.type.sizeof 133 words = [words] 138 w = words[word]
|
/packages/apps/Messaging/tools/messagegen/ |
fillsms | 132 local words=$(random_value $MAX_WORDS_PER_MESSAGE) 134 for k in `seq 1 $words`;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
stringold.py | 103 # Split a string into a list of space/tab-separated words 107 Return a list of the words in the string s, using sep as the 109 maxsplit words If sep is not specified, any whitespace string 119 def join(words, sep = ' '): 122 Return a string composed of the words in list, with 129 return sep.join(words) 368 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def". 372 Split the argument into words using split, capitalize each 373 word using capitalize, and join the capitalized words using
|
textwrap.py | 72 Break words longer than 'width'. If false, those words will not 75 Allow breaking hyphenated words. If true, wrapping will occur 77 compound words. 97 r'[^\s\w]*\w+[^0-9\W]-(?=\w+[^0-9\W])|' # hyphenated words 167 not quite the same as words; see _wrap_chunks() for full 225 # If we're allowed to break long words, then do so: put as much 237 # If we're not allowed to break long words, and there's already 249 to words and the whitespace between them: each chunk is
|
/prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/stlport/ |
printers.py | 121 words = self.val['_M_w'] 126 if words.type.code == gdb.TYPE_CODE_ARRAY: 127 word_size = words.type.target ().sizeof 128 n_words = words.type.sizeof / word_size 130 word_size = words.type.sizeof 132 words = [words] 137 w = words[word]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
stringold.py | 103 # Split a string into a list of space/tab-separated words 107 Return a list of the words in the string s, using sep as the 109 maxsplit words If sep is not specified, any whitespace string 119 def join(words, sep = ' '): 122 Return a string composed of the words in list, with 129 return sep.join(words) 368 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def". 372 Split the argument into words using split, capitalize each 373 word using capitalize, and join the capitalized words using
|
textwrap.py | 72 Break words longer than 'width'. If false, those words will not 75 Allow breaking hyphenated words. If true, wrapping will occur 77 compound words. 97 r'[^\s\w]*\w+[^0-9\W]-(?=\w+[^0-9\W])|' # hyphenated words 167 not quite the same as words; see _wrap_chunks() for full 225 # If we're allowed to break long words, then do so: put as much 237 # If we're not allowed to break long words, and there's already 249 to words and the whitespace between them: each chunk is
|
/prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/stlport/ |
printers.py | 122 words = self.val['_M_w'] 127 if words.type.code == gdb.TYPE_CODE_ARRAY: 128 word_size = words.type.target ().sizeof 129 n_words = words.type.sizeof / word_size 131 word_size = words.type.sizeof 133 words = [words] 138 w = words[word]
|
/external/elfutils/src/lib/ |
md5.c | 305 const md5_uint32 *words = buffer; local 307 const md5_uint32 *endp = words + nwords; 322 while (words < endp) 332 unit is a 32-bit word and it is determined to work on words in 335 we store the swapped words in the array CORRECT_WORDS. */ 340 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ 341 ++words; \ 375 /* For the second to fourth round we have the possibly swapped words
|
sha1.c | 230 const sha1_uint32 *words = buffer; local 232 const sha1_uint32 *endp = words + nwords; 248 while (words < endp) 258 unit is a 32-bit word and it is determined to work on words in 265 W (i) = SWAP (*words); \ 267 ++words; \
|
/external/iproute2/lib/ |
utils.c | 460 int words = bits >> 0x05; local 464 if (words) 465 if (memcmp(a1, a2, words << 2)) 472 w1 = a1[words]; 473 w2 = a2[words];
|
/external/libvncserver/common/ |
md5.c | 303 const md5_uint32 *words = buffer; local 305 const md5_uint32 *endp = words + nwords; 320 while (words < endp) 330 unit is a 32-bit word and it is determined to work on words in 333 we store the swapped words in the array CORRECT_WORDS. */ 338 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ 339 ++words; \ 373 /* For the second to fourth round we have the possibly swapped words
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
LongArray.java | 627 // int words = bits >>> 6; 632 // addShiftedByWords(other, words); 642 // int minLen = otherUsedLen + words + 1; 648 // long carry = addShiftedByBits(m_ints, words, other.m_ints, 0, otherUsedLen, shift); 649 // m_ints[otherUsedLen + words] ^= carry; 656 int words = bits >>> 6; local 661 add(m_ints, words, other.m_ints, 0, otherLen); 665 long carry = addShiftedUp(m_ints, words, other.m_ints, 0, otherLen, shift); 668 m_ints[otherLen + words] ^= carry; 699 public void addShiftedByWords(LongArray other, int words) [all...] |
/frameworks/base/core/java/android/app/ |
LauncherActivity.java | 212 String[] words = item.label.toString().toLowerCase().split(" "); local 213 int wordCount = words.length; 216 final String word = words[k];
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
PersonalDictionaryLookup.java | 54 * It can be used directly to validate words or expand shortcuts, and it can be used by instances 260 UserDictionary.Words.CONTENT_URI, 308 * Returns the set of words defined for the given locale and more general locales. 312 * Note that this method returns expanded words, not shortcuts. Shortcuts are handled 316 * @return set of words that apply to the given locale. 324 final Set<String> words = new HashSet<>(); local 333 words.add(localeStringMap.get(wordLocale)); 338 return words; 346 * Note that this method returns shortcut keys, not expanded words. Words are handle [all...] |
/bionic/libc/kernel/uapi/drm/ |
tegra_drm.h | 86 __u32 words; member in struct:drm_tegra_cmdbuf
|
/external/google-breakpad/src/testing/gtest/test/ |
gtest_catch_exceptions_test.py | 118 'appears on the same line as words "called unexpectedly"') 176 'appears on the same line as words "called unexpectedly"')
|
/external/gtest/test/ |
gtest_catch_exceptions_test.py | 131 'appears on the same line as words "called unexpectedly"') 189 'appears on the same line as words "called unexpectedly"')
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
TemplateInterpreter.java | 452 private String makeWord(LinkedList<TWord> words) { 453 if (words.size() == 1) { 454 return words.getFirst().getText(); 457 for (TWord word : words) {
|
/external/kernel-headers/original/uapi/drm/ |
tegra_drm.h | 91 __u32 words; member in struct:drm_tegra_cmdbuf
|
/external/libdrm/include/drm/ |
tegra_drm.h | 86 __u32 words; member in struct:drm_tegra_cmdbuf
|
/external/llvm/test/MC/ARM/ |
eh-directive-text-section-multiple-func.s | 44 @ There should be two entries (two words per entry.)
|