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

1 2 3 4 5 6 7 8 91011>>

  /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 16 } word; member in struct:p4_Thread
44 return (*p4TH).word.len;
  /external/llvm/test/MC/ARM/
directive-literals.s 21 word: label
22 .word 3
24 @ CHECK-LABEL: word
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
parsed_operand.cpp 31 const uint32_t word = inst.words[operand.offset]; local
35 *out << int32_t(word);
38 *out << word; local
43 uint16_t(word & 0xFFFF));
46 *out << spvutils::FloatProxy<float>(word);
53 // Multi-word numbers are presented with lower order words first.
55 uint64_t(word) | (uint64_t(inst.words[operand.offset + 1]) << 32);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cryptmodule.c 17 char *word, *salt; local
22 if (!PyArg_ParseTuple(args, "ss:crypt", &word, &salt)) {
27 return Py_BuildValue("s", crypt(word, salt));
32 "crypt(word, salt) -> string\n\
33 word will usually be a user's password. salt is a 2-character string\n\
  /external/python/cpython2/Modules/
cryptmodule.c 17 char *word, *salt; local
22 if (!PyArg_ParseTuple(args, "ss:crypt", &word, &salt)) {
27 return Py_BuildValue("s", crypt(word, salt));
32 "crypt(word, salt) -> string\n\
33 word will usually be a user's password. salt is a 2-character string\n\
  /external/python/cpython3/Modules/clinic/
_cryptmodule.c.h 6 "crypt($module, word, salt, /)\n"
9 "Hash a *word* with the given *salt* and return the hashed password.\n"
11 "*word* will usually be a user\'s password. *salt* (either a random 2 or 16\n"
14 "results for a given *word*.");
20 crypt_crypt_impl(PyObject *module, const char *word, const char *salt);
26 const char *word; local
30 &word, &salt)) {
33 return_value = crypt_crypt_impl(module, word, salt);
  /device/google/contexthub/lib/nanohub/
softcrc.c 45 uint32_t word; local
48 // word by word crc32
54 // zero pad last word if required
56 for (i *= 4, word = 0; i < size; i++)
57 word |= (*data8++) << ((i & 0x3) * 8);
58 crc = crcOneWord(crc, word, 8);
  /device/google/contexthub/util/stm32_flash/
stm32f4_crc.c 48 uint32_t word; local
52 /* word by word crc32 */
57 /* zero pad last word if required */
59 for (i*=4, word=0; i<length; i++)
60 word |= buffer[i] << ((i & 0x3) * 8);
61 crc = crc32_word(crc, word);
  /external/libpng/contrib/mips-msa/
linux.c 33 char word[10]; local
44 word[i++] = ch;
48 int val = strcmp(string, word);
54 memset(word, 0, 10);
  /external/vulkan-validation-layers/libs/glm/gtx/
raw_data.hpp 58 //! Type for word numbers.
60 typedef detail::uint16 word; typedef in namespace:glm
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
raw_data.hpp 58 //! Type for word numbers.
60 typedef detail::uint16 word; typedef in namespace:glm
  /bionic/libc/upstream-openbsd/lib/libc/string/
memmove.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)
85 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
106 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
  /device/google/contexthub/firmware/lib/libc/
bcopy.c 40 * sizeof(word) MUST BE A POWER OF TWO
43 typedef int word; /* "word" used for optimal copy speed */ typedef
45 #define wsize sizeof(word)
104 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
125 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
  /external/freetype/src/gzip/
inftrees.h 26 } word; /* 16-bit, 8 bytes for 32-bit int's) */ member in struct:inflate_huft_s
  /external/ltp/testcases/kernel/controllers/freezer/
timed_forkbomb.c 57 char *word; local
58 while (scanf("%as", &word) < 1) {
60 free(word);
  /external/v8/src/regexp/
regexp-macro-assembler-irregexp-inl.h 18 uint32_t word = ((twenty_four_bits << BYTECODE_SHIFT) | byte); local
23 *reinterpret_cast<uint32_t*>(buffer_.start() + pc_) = word;
28 void RegExpMacroAssemblerIrregexp::Emit16(uint32_t word) {
33 *reinterpret_cast<uint16_t*>(buffer_.start() + pc_) = word;
38 void RegExpMacroAssemblerIrregexp::Emit8(uint32_t word) {
43 *reinterpret_cast<unsigned char*>(buffer_.start() + pc_) = word;
48 void RegExpMacroAssemblerIrregexp::Emit32(uint32_t word) {
53 *reinterpret_cast<uint32_t*>(buffer_.start() + pc_) = word;
  /frameworks/minikin/libs/minikin/
LineBreakerUtil.cpp 33 // A word here is any consecutive string of non-NBSP characters.
39 // A word just ended. Hyphenate it.
40 const U16StringPiece word = str.substr(Range(wordStart, i)); local
41 if (word.size() <= LONGEST_HYPHENATED_WORD) {
42 hyphenator.hyphenate(word, out.data() + wordStart);
43 } else { // Word is too long. Inefficient to hyphenate.
44 out.insert(out.end(), word.size(), HyphenationType::DONT_BREAK);
  /frameworks/minikin/tests/perftests/
Hyphenator.cpp 32 std::vector<uint16_t> word = utf8ToUtf16("hyphen"); local
35 hyphenator->hyphenate(word, &result);
45 std::vector<uint16_t> word = utf8ToUtf16("Pneumonoultramicroscopicsilicovolcanoconiosis"); local
48 hyphenator->hyphenate(word, &result);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SuggestionSpanUtils.java 90 final String word = suggestedWords.getWord(i); local
91 if (!TextUtils.equals(pickedWord, word)) {
92 suggestionsList.add(word.toString());
  /art/libartbase/base/
bit_vector-inl.h 57 uint32_t word = bit_storage_[word_index]; local
58 // Mask out any bits in the first word we've already considered.
59 word &= static_cast<uint32_t>(-1) << (start_index & 0x1f);
60 while (word == 0u) {
65 word = bit_storage_[word_index];
67 return word_index * 32u + CTZ(word);
  /device/google/contexthub/firmware/os/core/
floatRt.c 61 uint32_t e, word = *(const uint32_t*)&f; local
66 if (word & BIT_SIGN)
70 if (word < (EXP_ADJUST << EXP_SHIFT))
74 if (word >= (EXP_ADJUST + 64) << EXP_SHIFT)
78 ret = (word & ((1 << MANTISSA_BITS) - 1)) | (1 << MANTISSA_BITS);
79 e = ((word >> EXP_SHIFT) - EXP_ADJUST);
92 uint32_t e, word = *(const uint32_t*)&f; local
93 bool neg = (word & BIT_SIGN);
98 word &=~ BIT_SIGN;
101 if (word < (EXP_ADJUST << EXP_SHIFT)
    [all...]
  /device/google/contexthub/firmware/os/platform/stm32/
crc.c 72 uint32_t word = 0; local
73 memcpy(&word, words + numWords, leftoverBytes);
77 mCrcRegs->DR = word;
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
math_private.h 23 n0 = ((*(int*)&one)>>29)^1; * index of high word *
24 ix0 = *(n0+(int*)&x); * high word of x *
25 ix1 = *((1-n0)+(int*)&x); * low word of x *
37 * The ARM ports are little endian except for the FPA word order which is
134 u_int32_t word; member in union:__anon12083
143 (i) = gf_u.word; \
151 sf_u.word = (i); \
  /external/iproute2/lib/
dnet_ntop.c 12 u_int16_t word; member in union:__anon22205
15 u.word = addr;

Completed in 1517 milliseconds

1 2 3 4 5 6 7 8 91011>>