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

  /external/harfbuzz_ng/src/
hb-set-private.hh 39 typedef unsigned int mask_t; typedef in struct:hb_set_digest_common_bits_t
43 value = (mask_t) -1;
47 if (unlikely (value == (mask_t) -1)) {
67 mask_t mask;
68 mask_t value;
75 typedef unsigned long mask_t; typedef in struct:hb_set_digest_lowest_bits_t
86 if (b - a >= sizeof (mask_t) * 8 - 1)
87 mask = (mask_t) -1;
89 mask_t ma = mask_for (a);
90 mask_t mb = mask_for (b)
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-set-private.hh 43 template <typename mask_t, unsigned int shift>
48 static const unsigned int mask_bytes = sizeof (mask_t);
49 static const unsigned int mask_bits = sizeof (mask_t) * 8;
71 mask = (mask_t) -1;
73 mask_t ma = mask_for (a);
74 mask_t mb = mask_for (b);
85 static inline mask_t mask_for (hb_codepoint_t g) {
86 return ((mask_t) 1) << ((g >> shift) & (mask_bits - 1));
88 mask_t mask;