HomeSort by relevance Sort by last modified time
    Searched defs:word (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
2010-07-14-overconservative-align.c 4 int word; member in struct:s
13 s->word = 0;
named_reg_global.c 10 } word; member in struct:p4_Thread
34 return (*p4TH).word.len;
  /external/llvm/test/MC/ARM/
directive-literals.s 21 word: label
22 .word 3
24 @ CHECK-LABEL: word
  /external/bison/lib/
signbitd.c 42 union { double value; unsigned int word[NWORDS]; } m; member in union:__anon4976
44 return (m.word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;
signbitf.c 42 union { float value; unsigned int word[NWORDS]; } m; member in union:__anon4977
44 return (m.word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;
signbitl.c 42 union { long double value; unsigned int word[NWORDS]; } m; member in union:__anon4978
44 return (m.word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;
isnan.c 80 typedef union { DOUBLE value; unsigned int word[NWORDS]; } memory_double; member in union:__anon4960
99 exponent = (m.word[EXPBIT0_WORD] >> EXPBIT0_BIT) & EXP_MASK;
103 return 1 & (m.word[0] >> 15);
105 return (((m.word[0] ^ 0x8000U) << 16) | m.word[1] | (m.word[2] >> 16)) != 0;
107 return 1 & ~(m.word[0] >> 15);
111 return (m.word[1] >> 31);
113 return ((m.word[1] ^ 0x80000000U) | m.word[0]) != 0
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_dictionary_sync_test.cc 26 std::string word = "foo"; local
27 ASSERT_TRUE(dictionary_helper::AddWord(0, word));
31 ASSERT_TRUE(dictionary_helper::RemoveWord(0, word));
two_client_dictionary_sync_test.cc 88 std::string word = "foo"; local
90 ASSERT_TRUE(dictionary_helper::AddWord(0, word));
93 ASSERT_TRUE(dictionary_helper::RemoveWord(0, word));
96 ASSERT_TRUE(dictionary_helper::AddWord(1, word));
  /external/chromium_org/third_party/skia/forth/
ForthParser.h 24 void addWord(const char name[], ForthWord* word) {
25 this->add(name, strlen(name), word);
28 void add(const char name[], size_t len, ForthWord* word) {
30 // SkDebugf("add %s %p\n", str.c_str(), word);
31 SkDEBUGCODE(bool isNewWord = )fDict.set(name, len, word);
36 ForthWord* word; local
37 return fDict.find(name, len, &word) ? word : NULL;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
basics.h 9 typedef unsigned short word; typedef
  /bionic/libc/upstream-openbsd/lib/libc/string/
bcopy.c 37 * sizeof(word) MUST BE A POWER OF TWO
40 typedef long word; /* "word" used for optimal copy speed */ typedef
42 #define wsize sizeof(word)
97 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
118 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
  /external/chromium_org/net/websockets/
websocket_deflater_test.cc 107 const std::string word = "Chromium"; local
108 std::string input = word + std::string(256, 'a') + word;
124 const std::string word = "Chromium"; local
125 std::string input = word + std::string(256, 'a') + word;
  /external/chromium_org/v8/src/
regexp-macro-assembler-irregexp-inl.h 23 uint32_t word = ((twenty_four_bits << BYTECODE_SHIFT) | byte); local
28 *reinterpret_cast<uint32_t*>(buffer_.start() + pc_) = word;
33 void RegExpMacroAssemblerIrregexp::Emit16(uint32_t word) {
38 *reinterpret_cast<uint16_t*>(buffer_.start() + pc_) = word;
43 void RegExpMacroAssemblerIrregexp::Emit8(uint32_t word) {
48 *reinterpret_cast<unsigned char*>(buffer_.start() + pc_) = word;
53 void RegExpMacroAssemblerIrregexp::Emit32(uint32_t word) {
58 *reinterpret_cast<uint32_t*>(buffer_.start() + pc_) = word;
  /external/freetype/src/gzip/
inftrees.h 26 } word; /* 16-bit, 8 bytes for 32-bit int's) */ member in struct:inflate_huft_s
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_language.cc 44 // report the word as correctly spelled.)
58 base::string16 word;
70 while (text_iterator_.GetNextWord(&word, &word_start, &word_length)) {
71 // Found a word (or a contraction) that the spellchecker can check the
73 if (platform_spelling_engine_->CheckSpelling(word, tag))
76 // If the given word is a concatenated word of two or more valid words
77 // (e.g. "hello:hello"), we should treat it as a valid word.
78 if (IsValidContraction(word, tag))
86 platform_spelling_engine_->FillSuggestionList(word,
110 base::string16 word; local
    [all...]
  /external/chromium_org/components/query_parser/
query_parser.h 21 base::string16 word; member in struct:query_parser::QueryWord
23 // The starting position of the word in the original text.
43 // Returns true if this node matches |word|. If |exact| is true, the string
45 virtual bool Matches(const base::string16& word, bool exact) const = 0;
70 // false positives. Moreover, the current ICU word breaker gives us
71 // back every single Chinese character as a word so that there's no
75 static bool IsWordLongEnoughForPrefixSearch(const base::string16& word);
106 // Extracts the words from |text|, placing each word into |words|.
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
inet_pton.c 82 unsigned long word = strtoul(pos, &end_pos, 16); local
83 if (word > 0xffff || pos == end_pos)
98 result[result_pos] = (word & 0xFF00) >> 8;
99 result[result_pos + 1] = word & 0xFF;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
standard.h 18 typedef int word; /* fastest type available */ typedef
  /external/icu/icu4c/source/layout/
DeviceTables.cpp 31 le_uint16 word = SWAPW(deltaValues[sizeIndex / count]); local
34 le_uint16 field = (word >> shift) & fieldMasks[format];
  /external/iproute2/lib/
dnet_ntop.c 12 u_int16_t word; member in union:__anon1971
15 u.word = addr;
dnet_pton.c 12 u_int16_t word; member in union:__anon1972
15 u.word = addr;
  /external/arduino/hardware/arduino/cores/arduino/
WProgram.h 20 #define word(...) makeWord(__VA_ARGS__) macro
  /external/chromium_org/content/shell/renderer/test_runner/
mock_spell_check.cc 51 // Extract the first possible English word from the given string.
54 // misspelled-word table.
65 base::string16 word; local
67 // Look up our misspelled-word table to check if the extracted word is a
68 // known misspelled word, and return the offset and the length of the
69 // extracted word if this word is a known misspelled word.
71 // misspelled-word table.
    [all...]
  /external/e2fsprogs/misc/
ismounted.c 59 char *word, *next; local
61 word = *buf;
62 if (*word == 0)
65 word = skip_over_blank(word);
66 next = skip_over_word(word);
70 return word;

Completed in 1056 milliseconds

1 2 3 4 5 6 7