/external/chromium_org/third_party/skia/src/core/ |
SkBlitMask.h | 18 * Returns true if the device config and mask format were supported. 21 static bool BlitColor(const SkBitmap& device, const SkMask& mask, 25 * Function pointer that blits the mask into a device (dst) colorized 30 const void* mask, size_t maskRB, 34 * Function pointer that blits a row of mask(lcd16) into a row of dst 43 * Function pointer that blits a row of src colors through a row of a mask 45 * will have been told the formats for the mask and the dst. 47 typedef void (*RowProc)(void* dst, const void* mask,
|
SkMaskFilter.cpp | 42 static void blitClippedMask(SkBlitter* blitter, const SkMask& mask, 46 blitter->blitMask(mask, r); 58 static void dump(const SkMask& mask) { 59 for (int y = mask.fBounds.top(); y < mask.fBounds.bottom(); ++y) { 60 for (int x = mask.fBounds.left(); x < mask.fBounds.right(); ++x) { 61 SkDebugf("%02X", *mask.getAddr8(x, y)); 69 static void draw_nine_clipped(const SkMask& mask, const SkIRect& outerR, 77 m.fBounds = mask.fBounds [all...] |
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_wbmp.cpp | 80 unsigned mask = *src++; local 81 dst[0] = (mask >> 7) & 1; 82 dst[1] = (mask >> 6) & 1; 83 dst[2] = (mask >> 5) & 1; 84 dst[3] = (mask >> 4) & 1; 85 dst[4] = (mask >> 3) & 1; 86 dst[5] = (mask >> 2) & 1; 87 dst[6] = (mask >> 1) & 1; 88 dst[7] = (mask >> 0) & 1; 94 unsigned mask = *src local [all...] |
/external/chromium_org/ui/wm/core/ |
masked_window_targeter.cc | 23 gfx::Path mask; local 24 if (!GetHitTestMask(window, &mask)) 36 return mask_region.setPath(mask, clip_region) &&
|
/external/fio/ |
memalign.c | 11 #define PTR_ALIGN(ptr, mask) \ 12 (char *) (((uintptr_t) ((ptr) + (mask)) & ~(mask)))
|
/external/iptables/extensions/ |
libxt_devgroup.c | 16 "[!] --src-group value[/mask] Match device group of incoming device\n" 17 "[!] --dst-group value[/mask] Match device group of outgoing device\n" 46 unsigned int *mask) 54 ok = xtables_strtoui(end + 1, NULL, mask, 57 *mask = ~0U; 66 *mask = ~0U; 73 unsigned int id, mask; local 78 devgroup_parse_groupspec(cb->arg, &id, &mask); 80 info->src_mask = mask; 86 devgroup_parse_groupspec(cb->arg, &id, &mask); [all...] |
/external/jemalloc/test/include/test/ |
SFMT-sse2.h | 60 * @param mask 128-bit mask 64 __m128i c, __m128i d, __m128i mask) { 74 y = _mm_and_si128(y, mask); 86 __m128i r, r1, r2, mask; local 87 mask = _mm_set_epi32(MSK4, MSK3, MSK2, MSK1); 93 mask); 100 mask); 116 __m128i r, r1, r2, mask; local 117 mask = _mm_set_epi32(MSK4, MSK3, MSK2, MSK1) [all...] |
/external/lldb/source/Plugins/Process/gdb-remote/ |
ProcessGDBRemoteLog.h | 39 GetLogIfAllCategoriesSet(uint32_t mask = 0); 42 GetLogIfAnyCategoryIsSet (uint32_t mask); 54 LogIf (uint32_t mask, const char *format, ...);
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
LogChannelDWARF.h | 80 GetLogIfAll (uint32_t mask); 83 GetLogIfAny (uint32_t mask); 86 LogIf (uint32_t mask, const char *format, ...);
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_logic.h | 68 LLVMValueRef mask, 74 LLVMValueRef mask, 80 unsigned mask,
|
lp_bld_flow.c | 123 * Check if the mask predicate is zero. If so, jump to the end of the block. 126 lp_build_mask_check(struct lp_build_mask_context *mask) 128 LLVMBuilderRef builder = mask->skip.gallivm->builder; 132 value = lp_build_mask_value(mask); 143 /* cond = (mask == 0) */ 146 LLVMBuildBitCast(builder, value, mask->reg_type, ""), 147 LLVMConstNull(mask->reg_type), 151 lp_build_flow_skip_cond_break(&mask->skip, cond); 156 * Begin a section of code which is predicated on a mask. 157 * \param mask the mask context, initialized her [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_bld_alpha.c | 53 struct lp_build_mask_context *mask, 91 lp_build_mask_update(mask, test); 94 lp_build_mask_check(mask);
|
/external/opencv/cv/src/ |
cvfloodfill.cpp | 379 uchar* mask = (pMask += maskStep + 1) + maskStep*seed.y; local 394 if( mask[L] ) 397 mask[L] = newMaskVal; 412 while( !mask[R + 1] && DIFF_INT_C1( img + (R+1), val0 )) 413 mask[++R] = newMaskVal; 415 while( !mask[L - 1] && DIFF_INT_C1( img + (L-1), val0 )) 416 mask[--L] = newMaskVal; 420 while( !mask[R + 1] && DIFF_INT_C1( img + (R+1), img + R )) 421 mask[++R] = newMaskVal; 423 while( !mask[L - 1] && DIFF_INT_C1( img + (L-1), img + L ) 685 uchar* mask = (pMask += maskStep + 1) + maskStep*seed.y; local 1033 CvMat maskstub, *mask = (CvMat*)maskarr; local [all...] |
/development/ndk/platforms/android-3/include/linux/ |
jbd.h | 97 #define JFS_HAS_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask)))) 98 #define JFS_HAS_RO_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask)))) 99 #define JFS_HAS_INCOMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
|
/external/chromium_org/crypto/ |
encryptor.cc | 61 uint8* mask, 64 CHECK(mask); 74 counter_->Write(mask); 75 mask += kBlockLength; 86 const void* mask, 90 const uint8* mask_ptr = reinterpret_cast<const uint8*>(mask);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_flow.c | 123 * Check if the mask predicate is zero. If so, jump to the end of the block. 126 lp_build_mask_check(struct lp_build_mask_context *mask) 128 LLVMBuilderRef builder = mask->skip.gallivm->builder; 132 value = lp_build_mask_value(mask); 143 /* cond = (mask == 0) */ 146 LLVMBuildBitCast(builder, value, mask->reg_type, ""), 147 LLVMConstNull(mask->reg_type), 151 lp_build_flow_skip_cond_break(&mask->skip, cond); 156 * Begin a section of code which is predicated on a mask. 157 * \param mask the mask context, initialized her [all...] |
/external/e2fsprogs/lib/e2p/ |
e2p.h | 48 const char *e2p_feature2string(int compat, unsigned int mask); 49 const char *e2p_jrnl_feature2string(int compat, unsigned int mask); 50 int e2p_string2feature(char *string, int *compat, unsigned int *mask); 51 int e2p_jrnl_string2feature(char *string, int *compat_type, unsigned int *mask); 64 const char *e2p_mntopt2string(unsigned int mask); 65 int e2p_string2mntopt(char *string, unsigned int *mask);
|
/external/libsepol/include/sepol/ |
node_record.h | 25 const char *mask, 30 const char **mask, int *proto); 56 const sepol_node_t * node, char **mask); 60 char **mask, size_t * mask_sz); 64 int proto, const char *mask); 68 const char *mask, size_t mask_sz);
|
/external/lldb/examples/synthetic/bitfield/ |
example.py | 33 if name == "mask": 72 return self.valobj.GetChildMemberWithName("mask") 78 mask = self.valobj.GetChildMemberWithName("mask").GetValueAsUnsigned() 81 value = value & mask 83 value = value | mask 85 value = value ^ mask 87 value = ~(value & mask) 89 value = ~(value | mask)
|
/external/chromium_org/content/browser/service_worker/ |
service_worker_registration.cc | 107 ChangedVersionAttributesMask mask; 108 UnsetVersionInternal(version, &mask); 109 if (mask.changed()) { 112 OnVersionAttributesChanged(this, mask, info)); 123 ChangedVersionAttributesMask mask; local 125 UnsetVersionInternal(version, &mask); 129 mask.add(change_flag); 132 OnVersionAttributesChanged(this, mask, info)); 137 ChangedVersionAttributesMask* mask) { 141 mask->add(ChangedVersionAttributesMask::INSTALLING_VERSION) 295 ChangedVersionAttributesMask mask; local [all...] |
/external/chromium_org/ppapi/shared_impl/ |
id_assignment.h | 42 const T mask = (static_cast<T>(1) << kPPIdTypeBits) - 1; local 43 return (id & mask) == type;
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollbarTheme.h | 60 void invalidateParts(ScrollbarThemeClient* scrollbar, ScrollbarControlPartMask mask) 62 if (mask & BackButtonStartPart) 64 if (mask & ForwardButtonStartPart) 66 if (mask & BackTrackPart) 68 if (mask & ThumbPart) 70 if (mask & ForwardTrackPart) 72 if (mask & BackButtonEndPart) 74 if (mask & ForwardButtonEndPart)
|
/external/chromium_org/third_party/brotli/src/brotli/enc/ |
histogram.cc | 36 size_t mask, 51 uint8_t prev_byte = pos > 0 ? ringbuffer[(pos - 1) & mask] : 0; 52 uint8_t prev_byte2 = pos > 1 ? ringbuffer[(pos - 2) & mask] : 0; 55 (*literal_histograms)[context].Add(ringbuffer[pos & mask]); 73 size_t mask, 83 uint8_t prev_byte = pos > 0 ? ringbuffer[(pos - 1) & mask] : 0; 84 uint8_t prev_byte2 = pos > 1 ? ringbuffer[(pos - 2) & mask] : 0; 86 (*histograms)[context].Add(ringbuffer[pos & mask]);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_ringbuffer.c | 13 unsigned mask; member in struct:util_ringbuffer 36 ring->mask = dwords - 1; 61 return (ring->tail - (ring->head + 1)) & ring->mask; 69 return util_ringbuffer_space(ring) == ring->mask; 83 assert(packet->dwords <= ring->mask); 100 ring->head &= ring->mask; 139 if (ring_packet->dwords > ring->mask + 1 - util_ringbuffer_space(ring) || 151 ring->tail &= ring->mask;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
polygon.h | 62 _mesa_PolygonStipple( const GLubyte *mask ); 65 _mesa_GetPolygonStipple( GLubyte *mask );
|