Searched refs:word (Results 501 - 525 of 658) sorted by relevance

<<21222324252627

/external/libvpx/libvpx/vpx_dsp/x86/
H A Dintrapred_ssse3.asm349 pshufb m1, m0, [GLOBAL(sh_b76543210)] ; l8-1 [word]
350 pshufb m2, m0, [GLOBAL(sh_b65432108)] ; l7-1,tl [word]
351 pshufb m3, m0, [GLOBAL(sh_b54321089)] ; l6-1,tl,t1 [word]
352 pshufb m0, [GLOBAL(sh_b89abcdef)] ; tl,t1-7 [word]
353 psrldq m4, m0, 1 ; t1-7 [word]
354 psrldq m5, m0, 2 ; t2-7 [word]
/external/python/cpython2/Lib/test/
H A Dregrtest.py1236 def count(n, word):
1238 return "%d %s" % (n, word)
1240 return "%d %ss" % (n, word)
/external/llvm/test/MC/SystemZ/
H A Dinsn-bad.s131 #CHECK: error: {{(instruction requires: high-word)?}}
665 #CHECK: error: {{(instruction requires: high-word)?}}
737 #CHECK: error: {{(instruction requires: high-word)?}}
838 #CHECK: error: {{(instruction requires: high-word)?}}
1109 #CHECK: error: {{(instruction requires: high-word)?}}
1664 #CHECK: error: {{(instruction requires: high-word)?}}
1748 #CHECK: error: {{(instruction requires: high-word)?}}
1854 #CHECK: error: {{(instruction requires: high-word)?}}
1900 #CHECK: error: {{(instruction requires: high-word)?}}
1965 #CHECK: error: {{(instruction requires: high-word)
[all...]
/external/v8/tools/
H A Dgrokdump.py795 def FindWord(self, word, alignment=0):
800 if reader._ReadWord(loc) == word:
803 reader.FormatIntPtr(word))
806 def FindWordList(self, word):
812 if reader._ReadWord(loc) == word:
1179 # First word after the map is the hash, the second is the length.
3069 def do_s(self, word):
3071 Search for a given word in available memory regions. The given word
3077 word
[all...]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/bench/
H A Dwikipedia.css1625 word-wrap: break-word;
1644 word-wrap: break-word;
2181 word-wrap: break-word;
2194 word-wrap: break-word;
2384 word-wrap: break-word;
[all...]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetMBCS.java1261 /* single-byte fromUnicode: get the 16-bit result word */
1268 /* single-byte fromUnicode: set the 16-bit result word with newValue*/
1352 static int TO_U_GET_BYTE(int word) { argument
1353 return word >>> TO_U_BYTE_SHIFT;
1356 static int TO_U_GET_VALUE(int word) { argument
1357 return word & TO_U_VALUE_MASK;
1532 long word0, word;
1549 /* word0 is suitable for <=toUSection[] comparison, word for <toUSection[] */
1553 * Shift byte once instead of each section word and add 0xffffff. We will compare the shifted/added byte
1556 * section word
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DAsmWriter.cpp764 uint64_t word = p[1]; local
768 unsigned int nibble = (word>>shiftcount) & 15;
774 word = *p;
790 uint64_t word = *p; local
794 unsigned int nibble = (word>>shiftcount) & 15;
800 word = *(++p);
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
H A Dutils.h1117 /// correspond to a typical word size.
1137 size_t word = m_words[elementIndex / ELEMENTS_PER_WORD]; local
1138 word >>= ((elementIndex % ELEMENTS_PER_WORD) * BitsPerElementT);
1139 return T(word & ELEMENT_MASK);
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_parser.cpp612 ByteString word = m_pSyntax->GetNextWord(&bIsNumber); local
613 if (word.IsEmpty()) {
622 uint32_t start_objnum = FXSYS_atoui(word.c_str());
/external/python/cpython2/Lib/
H A Doptparse.py1687 possibilities = [word for word in wordmap.keys()
1688 if word.startswith(s)]
/external/python/cpython3/Lib/
H A Doptparse.py1664 possibilities = [word for word in wordmap.keys()
1665 if word.startswith(s)]
/external/skqp/tools/bookmaker/
H A DmdOut.cpp464 const char* word = parser.fChar; local
467 string name = string(word, parser.fChar - word);
/external/v8/src/js/
H A Di18n.js731 * Returns titlecased word, aMeRricA -> America.
733 function toTitleCaseWord(word) {
734 return %StringToUpperCaseI18N(%_Call(StringSubstr, word, 0, 1)) +
735 %StringToLowerCaseI18N(%_Call(StringSubstr, word, 1));
1820 'type', 'string', ['character', 'word', 'sentence', 'line'], 'word'));
/external/fio/
H A Doptions.c4477 const char *word; member in struct:fio_keyword
4484 .word = "$pagesize",
4488 .word = "$mb_memory",
4492 .word = "$ncpus",
4496 .word = NULL,
4505 while (kw->word) {
4647 for (i = 0; fio_keywords[i].word != NULL; i++) {
4650 while ((s = strstr(opt, kw->word)) != NULL) {
4667 opt += strlen(kw->word) + olen;
/external/google-breakpad/src/third_party/libdisasm/
H A Dlibdis.h248 unsigned short word; member in union:__anon7650::__anon7651
760 /* Size of a machine word in bytes */
/external/libgsm/src/
H A Dgsm_encode.c15 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4];
/external/mesa3d/scripts/
H A Dget_reviewer.pl186 foreach my $word (@words) {
187 last if ($word =~ m/^#/);
188 push (@conf_args, $word);
2230 my $word = "(?:$atom|$quoted_string)";
2231 my $localpart = "$word(?:\\.$rfc822_lwsp*$word)*";
2238 my $phrase = "$word*";
/external/mesa3d/src/mesa/sparc/
H A Dsparc_clip.S35 .word 0x3f800000 /* 1.0f */
/external/python/cpython3/Modules/_decimal/libmpdec/
H A Dmpdecimal.h715 EXTINLINE int mpd_word_digits(mpd_uint_t word);
716 /* most significant digit of a word */
717 EXTINLINE mpd_uint_t mpd_msd(mpd_uint_t word);
718 /* least significant digit of a word */
719 EXTINLINE mpd_uint_t mpd_lsd(mpd_uint_t word);
740 /* odd word */
741 EXTINLINE int mpd_isoddword(mpd_uint_t word);
/external/skia/src/sksl/
H A DSkSLSPIRVCodeGenerator.h266 void writeWord(int32_t word, OutputStream& out);
/external/skqp/src/sksl/
H A DSkSLSPIRVCodeGenerator.h266 void writeWord(int32_t word, OutputStream& out);
/external/syslinux/gpxe/src/arch/i386/firmware/pcbios/
H A De820mangler.S313 .word 0xffff /* Initialise to an invalid value */
/external/ImageMagick/www/api/
H A Dversion.php181 <p>GetMagickSignature() returns a signature that uniquely encodes the MagickCore libary version, quantum depth, HDRI status, OS word size, and endianness.</p>
/external/arm-neon-tests/
H A Dstm-arm-neon-ref.h557 unsigned int word; member in union:__anon822
571 unsigned int word; member in union:__anon824
/external/boringssl/src/crypto/fipsmodule/sha/asm/
H A Dsha512-armv4.pl218 # define WORD64(hi0,lo0,hi1,lo1) .word lo0,hi0, lo1,hi1
222 # define WORD64(hi0,lo0,hi1,lo1) .word hi0,lo0, hi1,lo1
280 .word OPENSSL_armcap_P-.Lsha512_block_data_order
661 $code =~ s/\bbx\s+lr\b/.word\t0xe12fff1e/gm; # make it possible to compile with -march=armv4

Completed in 1261 milliseconds

<<21222324252627