Home
last modified time | relevance | path

Searched refs:left_mask (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/core/
DSkBlitter_A1.cpp35 int left_mask = 0xFF >> (x & 7); in blitH() local
46 if (left_mask == 0xFF) { in blitH()
50 SkASSERT((left_mask & rite_mask) != 0); in blitH()
51 *dst |= (left_mask & rite_mask); in blitH()
53 *dst++ |= left_mask; in blitH()
DSkBlitBWMaskTemplate.h72 int left_mask = 0xFF >> (left_edge & 7); in SK_BLITBWMASK_NAME() local
83 if (left_mask == 0xFF) in SK_BLITBWMASK_NAME()
94 left_mask &= rite_mask; in SK_BLITBWMASK_NAME()
95 SkASSERT(left_mask != 0); in SK_BLITBWMASK_NAME()
97 U8CPU mask = *bits & left_mask; in SK_BLITBWMASK_NAME()
111 mask = *b++ & left_mask; in SK_BLITBWMASK_NAME()
DSkBlitter.cpp67 U8CPU left_mask, int rowBytes, in bits_to_runs() argument
73 unsigned b = *bits++ & left_mask; in bits_to_runs()
92 left_mask = 0xFF; in bits_to_runs()
125 int left_mask = 0xFF >> (left_edge & 7); in blitMask() local
135 if (left_mask == 0xFF) { in blitMask()
144 SkASSERT((left_mask & rite_mask) != 0); in blitMask()
146 bits_to_runs(this, cx, cy, bits, left_mask, 1, rite_mask); in blitMask()
152 bits_to_runs(this, cx, cy, bits, left_mask, full_runs + 2, rite_mask); in blitMask()
/external/v8/src/
Dhydrogen-instructions.cc1090 int32_t left_mask = (left()->range() != NULL) in InferRange() local
1096 int32_t result_mask = left_mask & right_mask; in InferRange()
1104 int32_t left_mask = (left()->range() != NULL) in InferRange() local
1110 int32_t result_mask = left_mask | right_mask; in InferRange()