Lines Matching refs:flags

90         const int codesBufferSize, const int flags, const int* codesSrc, const int codesRemain,
106 codesBuffer, codesBufferSize, flags,
117 codesBuffer, codesBufferSize, flags, codesSrc + i * MAX_PROXIMITY_CHARS,
136 flags);
140 const int *ycoordinates, const int *codes, const int codesSize, const int flags,
143 if (REQUIRES_GERMAN_UMLAUT_PROCESSING & flags)
147 codesSize, flags, codes, codesSize, 0, codesBuffer, outWords, frequencies);
150 outWords, frequencies, flags);
179 unsigned short *outWords, int *frequencies, const int flags) {
191 const bool useFullEditDistance = USE_FULL_EDIT_DISTANCE & flags;
466 static inline bool testCharGroupForContinuedLikeness(const uint8_t flags,
470 const bool hasMultipleChars = (0 != (UnigramDictionary::FLAG_HAS_MULTIPLE_CHARS & flags));
532 const uint8_t flags = BinaryFormat::getFlagsAndForwardPointer(root, &pos);
537 const bool isAlike = testCharGroupForContinuedLikeness(flags, root, pos, inWord,
539 if (isAlike && (FLAG_IS_TERMINAL & flags) && (inputIndex == length)) {
543 pos = BinaryFormat::skipFrequency(flags, pos);
544 const int siblingPos = BinaryFormat::skipChildrenPosAndAttributes(root, flags, pos);
545 const int childrenNodePos = BinaryFormat::readChildrenPosition(root, flags, pos);
614 const uint8_t flags = BinaryFormat::getFlagsAndForwardPointer(DICT_ROOT, &pos);
615 const bool hasMultipleChars = (0 != (FLAG_HAS_MULTIPLE_CHARS & flags));
616 const bool isTerminalNode = (0 != (FLAG_IS_TERMINAL & flags));
633 // next bytes so we will simulate the NOT_A_CHARACTER return by testing the flags.
662 pos = BinaryFormat::skipFrequency(flags, pos);
664 BinaryFormat::skipChildrenPosAndAttributes(DICT_ROOT, flags, pos);
684 const bool hasChildren = BinaryFormat::hasChildrenInFlags(flags);
693 pos = BinaryFormat::skipFrequency(flags, pos);
695 BinaryFormat::skipChildrenPosAndAttributes(DICT_ROOT, flags, pos);
701 pos = BinaryFormat::skipFrequency(flags, pos);
703 BinaryFormat::skipChildrenPosAndAttributes(DICT_ROOT, flags, pos);
713 assert(BinaryFormat::hasChildrenInFlags(flags));
721 pos = BinaryFormat::skipFrequency(flags, pos);
722 int childrenPos = BinaryFormat::readChildrenPosition(DICT_ROOT, flags, pos);
723 *nextSiblingPosition = BinaryFormat::skipChildrenPosAndAttributes(DICT_ROOT, flags, pos);