HomeSort by relevance Sort by last modified time
    Searched refs:wordCount (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /packages/inputmethods/LatinIME/native/jni/src/utils/
ngram_utils.h 49 static AK_FORCE_INLINE NgramType getNgramTypeFromWordCount(const int wordCount) {
51 if (wordCount <= 0 || wordCount > MAX_PREV_WORD_COUNT_FOR_N_GRAM + 1) {
55 return static_cast<NgramType>(wordCount - 1);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
LatinImeStressTests.java 37 final int wordCount = random.nextInt(maxWordCountToTypeInEachIteration);
38 for (int j = 0; j < wordCount; ++j) {
55 final int wordCount = random.nextInt(maxWordCountToTypeInEachIteration);
56 for (int j = 0; j < wordCount; ++j) {
  /external/icu/icu4c/source/common/
dictionarydata.cpp 51 int32_t wordCount = 0;
59 if (wordCount < limit) {
61 values[wordCount] = uct.getValue();
64 lengths[wordCount] = lengthMatched;
67 cpLengths[wordCount] = codePointsMatched;
69 ++wordCount;
86 return wordCount;
118 int32_t wordCount = 0;
126 if (wordCount < limit) {
128 values[wordCount] = bt.getValue()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form35c.java 93 return (wordCount(regs) >= 0);
131 private static int wordCount(RegisterSpecList regs) {
168 int wordCount = wordCount(orig);
171 if (wordCount == sz) {
175 RegisterSpecList result = new RegisterSpecList(wordCount);
Form45cc.java 93 return (wordCount(regs) >= 0);
131 private static int wordCount(RegisterSpecList regs) {
168 int wordCount = wordCount(orig);
171 if (wordCount == sz) {
175 RegisterSpecList result = new RegisterSpecList(wordCount);
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form35c.java 96 return (wordCount(regs) >= 0);
150 private static int wordCount(RegisterSpecList regs) {
187 int wordCount = wordCount(orig);
190 if (wordCount == sz) {
194 RegisterSpecList result = new RegisterSpecList(wordCount);
Form45cc.java 102 return (wordCount(regs) >= 0);
160 private static int wordCount(RegisterSpecList regs) {
197 int wordCount = wordCount(orig);
200 if (wordCount == sz) {
204 RegisterSpecList result = new RegisterSpecList(wordCount);
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
opcode.cpp 78 uint32_t spvOpcodeMake(uint16_t wordCount, SpvOp opcode) {
79 return ((uint32_t)opcode) | (((uint32_t)wordCount) << 16);
160 const uint16_t wordCount, const spv_endianness_t endian,
163 pInst->words.resize(wordCount);
164 for (uint16_t wordIndex = 0; wordIndex < wordCount; ++wordIndex) {
171 wordCount == thisWordCount && "Endianness failed!");
name_mapper.h 75 // wordCount, and should be parseable in the specified context.
77 const size_t wordCount);
validate.cpp 184 binary->wordCount, setHeader,
214 while (index < binary->wordCount) {
215 uint16_t wordCount;
217 spvOpcodeSplit(spvFixWord(binary->code[index], endian), &wordCount,
221 wordCount, endian, &inst);
223 index += wordCount;
spirv_endian.cpp 63 if (!binary->code || !binary->wordCount) return SPV_ERROR_INVALID_BINARY;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryStats.java 53 final int wordCount) {
56 mDictFileSize = wordCount;
59 mWordCount = wordCount;
  /frameworks/rs/rsov/compiler/spirit/
core_defs.h 64 OpCodeAndWordCount(uint32_t opcode, uint32_t wordCount)
65 : mOpCode((uint16_t)opcode), mWordCount((uint16_t)wordCount) {}
  /external/icu/icu4c/source/test/intltest/
thcoll.cpp 100 int32_t wordCount = 0;
104 ++wordCount;
105 if (wordCount <= 8) {
107 logln((UnicodeString)"Word " + wordCount + ": " + IntlTest::prettify(word, str));
119 logln((UnicodeString)"Words checked: " + wordCount);
147 int32_t wordCount = 0;
151 ++wordCount;
152 if (wordCount <= 8) {
154 logln((UnicodeString)"Word " + wordCount + ": " + IntlTest::prettify(word, str));
199 logln((UnicodeString)"Words checked: " + wordCount);
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkSpirVAsm.cpp 66 DE_ASSERT(binary->wordCount > 0);
67 dst->resize(binary->wordCount);
68 std::copy(&binary->code[0], &binary->code[0] + binary->wordCount, dst->begin());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationThaiTest.java 135 int wordCount = 0;
157 ++wordCount;
158 if (wordCount <= 8) {
159 logln("Word " + wordCount + ": " + word);
209 logln("Words checked: " + wordCount);
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationThaiTest.java 134 int wordCount = 0;
156 ++wordCount;
157 if (wordCount <= 8) {
158 logln("Word " + wordCount + ": " + word);
208 logln("Words checked: " + wordCount);
  /frameworks/base/apct-tests/perftests/core/src/android/text/
DynamicLayoutPerfTest.java 99 final int wordCount = 5 + r.nextInt(20);
101 final int replacedWordIndex = containsReplacementSpan ? r.nextInt(wordCount) : -1;
102 for (int j = 0; j < wordCount; j++) {
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Info.java 42 int wordCount = 0;
47 ++wordCount;
61 System.out.println("Words in the dictionary : " + wordCount);
  /system/bt/embdrv/sbc/decoder/srce/
framing.c 263 OI_UINT wordCount) {
265 memmove(dest, src, wordCount * sizeof(SBC_BUFFER_T));
267 OI_ASSERT(((OI_CHAR*)(dest) - (OI_CHAR*)(src)) >= wordCount * sizeof(*dest));
268 memcpy(dest, src, wordCount * sizeof(SBC_BUFFER_T));
273 n = wordCount / 4 / (sizeof(int32_t) / sizeof(*dest));
274 OI_ASSERT((n * 4 * (sizeof(int32_t) / sizeof(*dest))) == wordCount);
276 d = (void*)(dest + wordCount);
277 s = (void*)(src + wordCount);
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
spvIR.h 128 // Compute the wordCount
129 unsigned int wordCount = 1;
131 ++wordCount;
133 ++wordCount;
134 wordCount += (unsigned int)operands.size();
137 out.push_back(((wordCount) << WordCountShift) | opCode);
SPVRemapper.cpp 403 const unsigned wordCount = asWordCount(instructionStart);
405 const int nextInst = word++ + wordCount;
411 unsigned numOperands = wordCount - 1;
743 const int wordCount = asWordCount(start);
772 if (wordCount > 4 && (spv[start+4] & spv::MemoryAccessVolatileMask)) {
800 if (wordCount > 3 && (spv[start+3] & spv::MemoryAccessVolatileMask)) {
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
spvIR.h 128 // Compute the wordCount
129 unsigned int wordCount = 1;
131 ++wordCount;
133 ++wordCount;
134 wordCount += (unsigned int)operands.size();
137 out.push_back(((wordCount) << WordCountShift) | opCode);
SPVRemapper.cpp 403 const unsigned wordCount = asWordCount(instructionStart);
405 const int nextInst = word++ + wordCount;
411 unsigned numOperands = wordCount - 1;
743 const int wordCount = asWordCount(start);
772 if (wordCount > 4 && (spv[start+4] & spv::MemoryAccessVolatileMask)) {
800 if (wordCount > 3 && (spv[start+3] & spv::MemoryAccessVolatileMask)) {
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidateTextView.java 91 * @param wordCount candidate id
96 public CandidateTextView setCandidateTextView(WnnWord word, int wordCount,
101 setId(wordCount);

Completed in 420 milliseconds

1 2 3 4 5 6