HomeSort by relevance Sort by last modified time
    Searched refs:max_pow2 (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/ots/src/
kern.cc 102 unsigned max_pow2 = 0; local
103 while (1u << (max_pow2 + 1) <= num_pairs) {
104 ++max_pow2;
106 const uint16_t expected_search_range = (1u << max_pow2) * kFormat0PairSize;
111 if (subtable.entry_selector != max_pow2) {
ots.cc 184 unsigned max_pow2 = 0; local
185 while (1u << (max_pow2 + 1) <= header->num_tables) {
186 max_pow2++;
188 const uint16_t expected_search_range = (1u << max_pow2) << 4;
198 if (header->entry_selector != max_pow2) {
576 unsigned max_pow2 = 0; local
577 while (1u << (max_pow2 + 1) <= num_output_tables) {
578 max_pow2++;
580 const uint16_t output_search_range = (1u << max_pow2) << 4;
586 !output->WriteU16(max_pow2) ||
    [all...]
woff2.cc 950 unsigned max_pow2 = 0; local
951 while (1u << (max_pow2 + 1) <= num_tables) {
952 max_pow2++;
954 const uint16_t output_search_range = (1u << max_pow2) << 4;
956 offset = Store16(result, offset, max_pow2);
    [all...]

Completed in 48 milliseconds