HomeSort by relevance Sort by last modified time
    Searched defs:mask_bytes (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-set-private.hh 47 static const unsigned int mask_bytes = sizeof (mask_t); member in struct:hb_set_digest_lowest_bits_t
50 + (mask_bytes >= 1 ? 3 : 0)
51 + (mask_bytes >= 2 ? 1 : 0)
52 + (mask_bytes >= 4 ? 1 : 0)
53 + (mask_bytes >= 8 ? 1 : 0)
54 + (mask_bytes >= 16? 1 : 0)
  /external/harfbuzz_ng/src/
hb-set-private.hh 47 static const unsigned int mask_bytes = sizeof (mask_t); member in struct:hb_set_digest_lowest_bits_t
50 + (mask_bytes >= 1 ? 3 : 0)
51 + (mask_bytes >= 2 ? 1 : 0)
52 + (mask_bytes >= 4 ? 1 : 0)
53 + (mask_bytes >= 8 ? 1 : 0)
54 + (mask_bytes >= 16? 1 : 0)
  /external/chromium_org/third_party/ots/src/
cff_type2_charstring.cc 279 const size_t mask_bytes = (*in_out_num_stems + 7) / 8; local
280 if (!char_string->Skip(mask_bytes)) {
  /external/chromium_org/net/server/
web_socket.cc 408 const char* mask_bytes = reinterpret_cast<char*>(&masking_key); local
409 frame.insert(frame.end(), mask_bytes, mask_bytes + 4);
411 frame.push_back(data[i] ^ mask_bytes[i % kMaskingKeyWidthInBytes]);

Completed in 391 milliseconds