Home | History | Annotate | Download | only in src

Lines Matching refs:BinaryFormat

472     int32_t character = BinaryFormat::getCharCodeAndForwardPointer(root, &pos);
477 *outPos = hasMultipleChars ? BinaryFormat::skipOtherCharacters(root, pos) : pos;
484 character = BinaryFormat::getCharCodeAndForwardPointer(root, &pos);
488 *outPos = BinaryFormat::skipOtherCharacters(root, pos);
493 character = BinaryFormat::getCharCodeAndForwardPointer(root, &pos);
532 const uint8_t flags = BinaryFormat::getFlagsAndForwardPointer(root, &pos);
540 const int frequency = BinaryFormat::readFrequencyWithoutMovingPointer(root, pos);
543 pos = BinaryFormat::skipFrequency(flags, pos);
544 const int siblingPos = BinaryFormat::skipChildrenPosAndAttributes(root, flags, pos);
545 const int childrenNodePos = BinaryFormat::readChildrenPosition(root, flags, pos);
557 BinaryFormat::getGroupCountAndForwardPointer(root, &childrenPos);
575 return NOT_VALID_WORD != BinaryFormat::getTerminalPosition(DICT_ROOT, inWord, length);
614 const uint8_t flags = BinaryFormat::getFlagsAndForwardPointer(DICT_ROOT, &pos);
625 int32_t c = BinaryFormat::getCharCodeAndForwardPointer(DICT_ROOT, &pos);
640 ? BinaryFormat::getCharCodeAndForwardPointer(DICT_ROOT, &pos) : NOT_A_CHARACTER;
660 pos = BinaryFormat::skipOtherCharacters(DICT_ROOT, pos);
662 pos = BinaryFormat::skipFrequency(flags, pos);
664 BinaryFormat::skipChildrenPosAndAttributes(DICT_ROOT, flags, pos);
678 const int freq = BinaryFormat::readFrequencyWithoutMovingPointer(DICT_ROOT, 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);
724 *newCount = BinaryFormat::getGroupCountAndForwardPointer(DICT_ROOT, &childrenPos);