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

  /external/chromium_org/third_party/brotli/src/woff2/
woff2_dec.cc 137 unsigned int triplet_index = 0; local
153 if (triplet_index + n_data_bytes > in_size ||
154 triplet_index + n_data_bytes < triplet_index) {
160 dy = WithSign(flag, ((flag & 14) << 7) + in[triplet_index]);
162 dx = WithSign(flag, (((flag - 10) & 14) << 7) + in[triplet_index]);
166 int b1 = in[triplet_index];
171 dx = WithSign(flag, 1 + ((b0 / 12) << 8) + in[triplet_index]);
173 1 + (((b0 % 12) >> 2) << 8) + in[triplet_index + 1]);
175 int b2 = in[triplet_index + 1]
    [all...]
  /external/chromium_org/third_party/ots/src/
woff2.cc 241 unsigned int triplet_index = 0; local
257 if (triplet_index + n_data_bytes > in_size ||
258 triplet_index + n_data_bytes < triplet_index) {
264 dy = WithSign(flag, ((flag & 14) << 7) + in[triplet_index]);
266 dx = WithSign(flag, (((flag - 10) & 14) << 7) + in[triplet_index]);
270 int b1 = in[triplet_index];
275 dx = WithSign(flag, 1 + ((b0 / 12) << 8) + in[triplet_index]);
277 1 + (((b0 % 12) >> 2) << 8) + in[triplet_index + 1]);
279 int b2 = in[triplet_index + 1]
    [all...]

Completed in 35 milliseconds