HomeSort by relevance Sort by last modified time
    Searched refs:words (Results 401 - 425 of 1016) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
extension.py 169 words = split_quoted(line)
178 module = words[0]
182 for word in words[1:]:
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/format/
RbnfLenientScannerTest.java 208 String words = testData[i][0]; local
210 String actualNumber = decFmt.format(formatter.parse(words));
214 + words + ", expected " + expectedNumber
  /external/libvpx/libvpx/vp8/common/x86/
mfqe_sse2.asm 34 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words
35 punpcklqdq xmm0, xmm0 ; replicate to all hi words
111 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words
112 punpcklqdq xmm0, xmm0 ; replicate to all hi words
209 ; and operate on words.
222 ; phaddd only operates on adjacent double words.
  /external/libvpx/libvpx/vp9/common/x86/
vp9_mfqe_sse2.asm 35 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words
36 punpcklqdq xmm0, xmm0 ; replicate to all hi words
112 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words
113 punpcklqdq xmm0, xmm0 ; replicate to all hi words
210 ; and operate on words.
223 ; phaddd only operates on adjacent double words.
  /external/python/cpython2/Lib/distutils/
extension.py 169 words = split_quoted(line)
178 module = words[0]
182 for word in words[1:]:
  /frameworks/base/core/java/android/widget/
SimpleAdapter.java 390 String[] words = str.split(" "); local
391 int wordCount = words.length;
394 String word = words[k];
  /packages/inputmethods/LatinIME/native/jni/src/
defines.h 112 #define DUMP_SUGGESTION(words, frequencies, index, score) \
113 do { dumpWordInfo(words, frequencies, index, score); } while (0)
167 #define DUMP_SUGGESTION(words, frequencies, index, score)
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
extension.py 169 words = split_quoted(line)
178 module = words[0]
182 for word in words[1:]:
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
extension.py 169 words = split_quoted(line)
178 module = words[0]
182 for word in words[1:]:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
extension.py 169 words = split_quoted(line)
178 module = words[0]
182 for word in words[1:]:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
extension.py 169 words = split_quoted(line)
178 module = words[0]
182 for word in words[1:]:
  /build/make/core/
product_config.mk 97 ifneq ($(words $(product_goals)),1)
103 ifneq ($(words $(product_goals)),2)
142 ifneq ($(words $(unbundled_goals)),1)
229 ifneq (1,$(words $(current_product_makefile)))
332 ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE)))
338 # A list of words like <source path>:<destination path>[:<owner>].
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
ftpmirror.py 142 words = line.split(None, 8)
143 if len(words) < 6:
146 filename = words[-1].lstrip()
149 # words[0] had better start with 'l'...
154 infostuff = words[-5:-1]
155 mode = words[0]
  /external/elfutils/lib/
md5.c 289 const md5_uint32 *words = buffer; local
291 const md5_uint32 *endp = words + nwords;
306 while (words < endp)
316 unit is a 32-bit word and it is determined to work on words in
319 we store the swapped words in the array CORRECT_WORDS. */
324 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
325 ++words; \
359 /* For the second to fourth round we have the possibly swapped words
  /external/valgrind/coregrind/
m_sparsewa.c 3 /*--- An sparse array (of words) implementation. ---*/
57 UWord words[256]; member in struct:__anon37336
207 *valP = level0->words[curr_ix];
305 *valP = level0->words[ix];
361 level0->words[ix] = val;
405 *oldV = level0->words[ix];
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnDictionaryImpl.java 96 /** The max words of user dictionary */
98 /** The max words of learning dictionary */
491 /* If the cursor is not exist or the type of query is changed, compile the query string and query words */
511 /* If the cursor is exist, bind new arguments and re-query words (DO NOT recompile the query string) */
521 /* If querying is succeed, count the number of words */
712 /* Count all words in the user dictionary */
721 /* Retrieve all words in the user dictionary */
722 WnnWord[] words = new WnnWord[ numOfWords ]; local
726 words[ i ] = new WnnWord();
727 words[ i ].stroke = cursor.getString( 0 )
931 WnnWord[] words = new WnnWord[1]; local
981 WnnWord[] words = new WnnWord[1]; local
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/gcov-src/
gcov-io.c 48 unsigned overread; /* Number of words overread. */
322 gcov_write_words (unsigned words)
338 if (gcov_var.offset + words > gcov_var.alloc)
339 gcov_allocate (gcov_var.offset + words);
342 gcov_var.offset += words;
358 /* Compute the total length in words required to write NUM_STRINGS
552 gcov_read_words (unsigned words)
558 if (excess < words)
576 if (gcov_var.length + words > gcov_var.alloc)
577 gcov_allocate (gcov_var.length + words);
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/gcov-src/
gcov-io.c 48 unsigned overread; /* Number of words overread. */
322 gcov_write_words (unsigned words)
338 if (gcov_var.offset + words > gcov_var.alloc)
339 gcov_allocate (gcov_var.offset + words);
342 gcov_var.offset += words;
358 /* Compute the total length in words required to write NUM_STRINGS
552 gcov_read_words (unsigned words)
558 if (excess < words)
576 if (gcov_var.length + words > gcov_var.alloc)
577 gcov_allocate (gcov_var.length + words);
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/gcov-src/
gcov-io.c 48 unsigned overread; /* Number of words overread. */
322 gcov_write_words (unsigned words)
338 if (gcov_var.offset + words > gcov_var.alloc)
339 gcov_allocate (gcov_var.offset + words);
342 gcov_var.offset += words;
358 /* Compute the total length in words required to write NUM_STRINGS
552 gcov_read_words (unsigned words)
558 if (excess < words)
576 if (gcov_var.length + words > gcov_var.alloc)
577 gcov_allocate (gcov_var.length + words);
    [all...]
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/gcov-src/
gcov-io.c 48 unsigned overread; /* Number of words overread. */
322 gcov_write_words (unsigned words)
338 if (gcov_var.offset + words > gcov_var.alloc)
339 gcov_allocate (gcov_var.offset + words);
342 gcov_var.offset += words;
358 /* Compute the total length in words required to write NUM_STRINGS
552 gcov_read_words (unsigned words)
558 if (excess < words)
576 if (gcov_var.length + words > gcov_var.alloc)
577 gcov_allocate (gcov_var.length + words);
    [all...]
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/gcov-src/
gcov-io.c 48 unsigned overread; /* Number of words overread. */
322 gcov_write_words (unsigned words)
338 if (gcov_var.offset + words > gcov_var.alloc)
339 gcov_allocate (gcov_var.offset + words);
342 gcov_var.offset += words;
358 /* Compute the total length in words required to write NUM_STRINGS
552 gcov_read_words (unsigned words)
558 if (excess < words)
576 if (gcov_var.length + words > gcov_var.alloc)
577 gcov_allocate (gcov_var.length + words);
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/gcov-src/
gcov-io.c 48 unsigned overread; /* Number of words overread. */
322 gcov_write_words (unsigned words)
338 if (gcov_var.offset + words > gcov_var.alloc)
339 gcov_allocate (gcov_var.offset + words);
342 gcov_var.offset += words;
358 /* Compute the total length in words required to write NUM_STRINGS
552 gcov_read_words (unsigned words)
558 if (excess < words)
576 if (gcov_var.length + words > gcov_var.alloc)
577 gcov_allocate (gcov_var.length + words);
    [all...]
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/gcov-src/
gcov-io.c 48 unsigned overread; /* Number of words overread. */
322 gcov_write_words (unsigned words)
338 if (gcov_var.offset + words > gcov_var.alloc)
339 gcov_allocate (gcov_var.offset + words);
342 gcov_var.offset += words;
358 /* Compute the total length in words required to write NUM_STRINGS
552 gcov_read_words (unsigned words)
558 if (excess < words)
576 if (gcov_var.length + words > gcov_var.alloc)
577 gcov_allocate (gcov_var.length + words);
    [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/gcov-src/
gcov-io.c 48 unsigned overread; /* Number of words overread. */
322 gcov_write_words (unsigned words)
338 if (gcov_var.offset + words > gcov_var.alloc)
339 gcov_allocate (gcov_var.offset + words);
342 gcov_var.offset += words;
358 /* Compute the total length in words required to write NUM_STRINGS
552 gcov_read_words (unsigned words)
558 if (excess < words)
576 if (gcov_var.length + words > gcov_var.alloc)
577 gcov_allocate (gcov_var.length + words);
    [all...]
  /system/core/debuggerd/libdebuggerd/
tombstone.cpp 285 Backtrace* backtrace, log_t* log, uintptr_t* sp, size_t words, int label) {
287 word_t stack_data[words];
288 size_t bytes_read = backtrace->Read(*sp, reinterpret_cast<uint8_t*>(&stack_data[0]), sizeof(word_t) * words);
289 words = bytes_read / sizeof(word_t);
291 for (size_t i = 0; i < words; i++) {
337 // Dump a few words before the first frame.
341 // Dump a few words from all successive frames.
355 size_t words = frame->stack_size / sizeof(word_t); local
356 if (words == 0) {
357 words = 1
    [all...]

Completed in 796 milliseconds

<<11121314151617181920>>