/external/iproute2/tc/ |
q_dsmark.c | 90 fprintf(stderr, "Usage: ... dsmark [ mask MASK ] [ value VALUE ]\n"); 104 if (!strcmp(*argv,"mask")) { 144 fprintf(stderr,"dsmark: empty mask\n"); 145 else fprintf(f,"mask 0x%02x ",
|
em_meta.c | 33 " META_ID := id [ shift SHIFT ] [ mask MASK ]\n" \ 37 " meta(tcindex mask 0xf0 eq 0xf0)\n" \ 45 char * mask; member in struct:meta_entry 49 #define __A(id, name, mask, desc) { TCF_META_ID_##id, name, mask, desc } 98 __A(SK_SHUTDOWN, "sk_shutdown", "i", "Shutdown mask"), 179 for (p = entry->mask; p; p++) 199 char *p = meta_table[i].mask; 278 obj->kind = entry->id | (map_type(entry->mask[0]) << 12) 331 unsigned long mask; local [all...] |
/external/skia/include/core/ |
SkDraw.h | 67 /** Helper function that creates a mask from a path and an optional maskfilter. 68 Note however, that the resulting mask will not have been actually filtered, 70 solely to assist in computing the mask's bounds (if the mode requests that). 74 SkMask* mask, SkMask::CreateMode mode); 79 void drawDevMask(const SkMask& mask, const SkPaint&) const;
|
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/TrafficMonitor/ |
GeneralUtilApi.h | 50 typedef void (*GeneralEventCall_t)(TI_HANDLE Context,int EventCount,UINT16 Mask,UINT32 Cookie); 55 TI_HANDLE DistributorMgr_Reg(TI_HANDLE hDistributorMgr,UINT16 Mask,TI_HANDLE CallBack,TI_HANDLE Context,UINT32 Cookie); 56 TI_STATUS DistributorMgr_ReReg(TI_HANDLE hDistributorMgr,TI_HANDLE ReqElmenth ,UINT16 Mask,TI_HANDLE CallBack,TI_HANDLE Context,UINT32 Cookie); 57 TI_STATUS DistributorMgr_AddToMask(TI_HANDLE hDistributorMgr,TI_HANDLE ReqElmenth,UINT16 Mask); 61 VOID DistributorMgr_EventCall(TI_HANDLE hDistributorMgr,UINT16 Mask,int EventCount);
|
/external/skia/src/core/ |
SkDraw.cpp | 733 const SkMask* mask = &srcM; local 740 mask = &dstM; 743 if (fBounder && !fBounder->doIRect(mask->fBounds)) { 749 blitter->blitMaskRegion(*mask, *fClip); 866 SkMask mask; local 868 &fClip->getBounds(), paint.getMaskFilter(), &mask, 870 this->drawDevMask(mask, paint); 871 SkMask::FreeImage(mask.fImage); 914 SkMatrix::TypeMask mask = matrix.getType(); local 916 if (mask & (SkMatrix::kAffine_Mask | SkMatrix::kPerspective_Mask)) 940 SkMask mask; local 949 SkMask mask; local 1293 SkMask mask; local 1327 SkMask mask; local 1359 SkMask mask; local [all...] |
SkBlitter.cpp | 108 void SkBlitter::blitMask(const SkMask& mask, const SkIRect& clip) 110 SkASSERT(mask.fBounds.contains(clip)); 112 if (mask.fFormat == SkMask::kBW_Format) 116 int maskLeft = mask.fBounds.fLeft; 117 int mask_rowBytes = mask.fRowBytes; 120 const uint8_t* bits = mask.getAddr1(cx, cy); 122 if (cx == maskLeft && clip.fRight == mask.fBounds.fRight) 142 // check for empty right mask, so we don't read off the end (or go slower than we need to) 182 const uint8_t* aa = mask.getAddr(clip.fLeft, clip.fTop); 192 aa += mask.fRowBytes [all...] |
/system/core/nexus/ |
WifiNetwork.h | 336 int setKeyManagement(uint32_t mask); 337 int setProtocols(uint32_t mask); 338 int setAuthAlgorithms(uint32_t mask); 339 int setPairwiseCiphers(uint32_t mask); 340 int setGroupCiphers(uint32_t mask); 346 int parseKeyManagementMask(const char *buffer, uint32_t *mask); 347 int parseProtocolsMask(const char *buffer, uint32_t *mask); 348 int parseAuthAlgorithmsMask(const char *buffer, uint32_t *mask); 349 int parsePairwiseCiphersMask(const char *buffer, uint32_t *mask); 350 int parseGroupCiphersMask(const char *buffer, uint32_t *mask); [all...] |
/frameworks/base/core/java/android/text/util/ |
Linkify.java | 57 * take an options mask 63 * that take an options mask 69 * take an options mask 75 * take an options mask 80 * Bit mask indicating that all available patterns should be matched in 81 * methods that take an options mask 193 * of the link types indicated in the mask into clickable links. 194 * If the mask is nonzero, it also removes any existing URLSpans 198 public static final boolean addLinks(Spannable text, int mask) { 199 if (mask == 0) [all...] |
/external/webkit/JavaScriptCore/assembler/ |
MacroAssemblerX86_64.h | 338 Jump branchTestPtr(Condition cond, RegisterID reg, RegisterID mask) 340 m_assembler.testq_rr(reg, mask); 344 Jump branchTestPtr(Condition cond, RegisterID reg, Imm32 mask = Imm32(-1)) 347 if (mask.m_value == -1) 349 else if ((mask.m_value & ~0x7f) == 0) 350 m_assembler.testb_i8r(mask.m_value, reg); 352 m_assembler.testq_i32r(mask.m_value, reg); 356 Jump branchTestPtr(Condition cond, Address address, Imm32 mask = Imm32(-1)) 358 if (mask.m_value == -1) 361 m_assembler.testq_i32m(mask.m_value, address.offset, address.base) [all...] |
/frameworks/base/awt/java/awt/image/ |
PackedColorModel.java | 226 * @return the mask. 245 * the color mask array. 247 * the alpha mask. 264 // awt.23B=The mask of the {0} component is not contiguous 273 // awt.23C=The mask of the alpha component is not contiguous 306 // awt.23D=The mask of the red component is not contiguous 312 // awt.23E=The mask of the green component is not contiguous 318 // awt.23F=The mask of the blue component is not contiguous 325 // awt.23C=The mask of the alpha component is not contiguous 337 * the comp mask 386 int mask = componentMasks[i]; local [all...] |
/hardware/broadcom/wlan/bcm4329/src/include/ |
bcmpcispi.h | 77 uint32 spih_int_mask; /* 0x48 SPI Interrupt Mask */ 100 uint32 P_AM0; /* 0x108 32 R/W PCI Image0 Address Mask register */ 104 uint32 P_AM1; /* 0x118 32 R/W PCI Image1 Address Mask register */ 108 uint32 P_AM2; /* 0x128 32 R/W PCI Image2 Address Mask register */ 112 uint32 P_AM3; /* 0x138 32 R/W PCI Image3 Address Mask register */ 116 uint32 P_AM4; /* 0x148 32 R/W PCI Image4 Address Mask register */ 120 uint32 P_AM5; /* 0x158 32 R/W PCI Image5 Address Mask register */ 131 uint32 W_AM1; /* 0x18C 32 R/W WISHBONE Image1 Address Mask register */ 135 uint32 W_AM2; /* 0x19C 32 R/W WISHBONE Image2 Address Mask register */ 139 uint32 W_AM3; /* 0x1AC 32 R/W WISHBONE Image3 Address Mask register * [all...] |
sbsdpcmdev.h | 171 #define PCMCIA_MES_PA_MASK 0x7fff /* PCMCIA Message Portal Address Mask */ 172 #define PCMCIA_MES_PM_MASK 0x7fff /* PCMCIA Message Portal Mask Mask */ 173 #define PCMCIA_WFBC_MASK 0xffff /* PCMCIA Write Frame Byte Count Mask */ 174 #define PCMCIA_UT_MASK 0x07ff /* PCMCIA Underflow Timer Mask */ 181 #define I_SMB_SW_MASK 0x0000000f /* To SB Mail S/W interrupts mask */ 187 #define I_HMB_SW_MASK 0x000000f0 /* To Host Mail S/W interrupts mask */ 216 #define SDA_DATA_MASK 0x000000ff /* Read/Write Data Mask */ 217 #define SDA_ADDR_MASK 0x000fff00 /* Read/Write Address Mask */ 246 #define SDA_F2WATERMARK_MASK 0x7f /* F2Watermark Mask */ [all...] |
/system/core/libpixelflinger/codeflinger/ |
texturing.cpp | 125 parts.packed = (!mTextureMachine.mask && !mBlending 139 // pre-mask the iterated color 142 uint32_t mask = 0; local 149 mask |= ((1<<(h-l))-1) << l; 154 if (mMasking && ((mask & size)==0)) { 155 // none of the components are present in the mask 167 // pre-mask the iterated color 170 mask, bits); 266 mTextureMachine.mask = 0; 273 tmu.mask = 0 752 uint32_t mask = 0; local 891 int mask = scratches.obtain(); local [all...] |
/external/kernel-headers/original/linux/ |
ext2_fs.h | 437 #define EXT2_HAS_COMPAT_FEATURE(sb,mask) \ 438 ( EXT2_SB(sb)->s_es->s_feature_compat & cpu_to_le32(mask) ) 439 #define EXT2_HAS_RO_COMPAT_FEATURE(sb,mask) \ 440 ( EXT2_SB(sb)->s_es->s_feature_ro_compat & cpu_to_le32(mask) ) 441 #define EXT2_HAS_INCOMPAT_FEATURE(sb,mask) \ 442 ( EXT2_SB(sb)->s_es->s_feature_incompat & cpu_to_le32(mask) ) 443 #define EXT2_SET_COMPAT_FEATURE(sb,mask) \ 444 EXT2_SB(sb)->s_es->s_feature_compat |= cpu_to_le32(mask) 445 #define EXT2_SET_RO_COMPAT_FEATURE(sb,mask) \ 446 EXT2_SB(sb)->s_es->s_feature_ro_compat |= cpu_to_le32(mask) [all...] |
/external/qemu/hw/ |
dma.c | 56 uint8_t mask; member in struct:dma_cont 218 case 0x0a: /* single mask */ 220 d->mask |= 1 << (data & 3); 222 d->mask &= ~(1 << (data & 3)); 251 d->mask = ~0; 256 case 0x0e: /* clear mask for all channels */ 257 d->mask = 0; 261 case 0x0f: /* write mask for all channels */ 262 d->mask = data; 290 case 0x0f: /* mask */ 366 int mask; local [all...] |
/external/iptables/extensions/ |
libipt_addrtype.c | 52 parse_type(const char *name, size_t strlen, u_int16_t *mask) 59 *mask |= (1 << i); 66 static void parse_types(const char *arg, u_int16_t *mask) 71 if (comma == arg || !parse_type(arg, comma-arg, mask)) 77 if (strlen(arg) == 0 || !parse_type(arg, strlen(arg), mask)) 126 static void print_types(u_int16_t mask) 132 if (mask & (1 << i)) {
|
/external/qemu/distrib/libpng-1.2.19/ |
png.c | 80 /* Mask to determine which pixels are valid in a pass */ 83 /* Mask to determine which pixels to overwrite while displaying */ 328 int freer, png_uint_32 mask) 334 info_ptr->free_me |= mask; 336 info_ptr->free_me &= ~mask; 344 png_free_data(png_structp png_ptr, png_infop info_ptr, png_uint_32 mask, 354 if ((mask & PNG_FREE_TEXT) & info_ptr->free_me) 356 if (mask & PNG_FREE_TEXT) 382 if ((mask & PNG_FREE_TRNS) & info_ptr->free_me) 384 if ((mask & PNG_FREE_TRNS) && (png_ptr->flags & PNG_FLAG_FREE_TRNS) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/gem/ |
SDL_gemmouse.c | 63 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y) 110 mask1 = (Uint16 *) &mask[i<<1]; 111 printf("sdl:video:gem: source: line %d: data=0x%04x, mask=0x%04x\n", 118 new_mform->mf_mask[i]= mask[i]<<8; 123 new_mform->mf_mask[i]= (mask[i<<1]<<8) | mask[(i<<1)+1]; 130 printf("sdl:video:gem: cursor: line %d: data=0x%04x, mask=0x%04x\n",
|
/external/skia/src/effects/ |
SkEmbossMask.cpp | 93 void SkEmbossMask::Emboss(SkMask* mask, const SkEmbossMaskFilter::Light& light) 97 SkASSERT(mask->fFormat == SkMask::k3D_Format); 107 size_t planeSize = mask->computeImageSize(); 108 uint8_t* alpha = mask->fImage; 112 int rowBytes = mask->fRowBytes; 113 int maxy = mask->fBounds.height() - 1; 114 int maxx = mask->fBounds.width() - 1;
|
/external/webkit/WebCore/rendering/style/ |
SVGRenderStyle.cpp | 52 mask = defaultStyle->mask; 69 mask.init(); 83 mask = other.mask; 99 stops == o.stops && clip == o.clip && mask == o.mask &&
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ubitset.h | 51 inline const value_type Mask (uoff_t n) const { assert (n < Size); return (1 << (n % s_WordBits)); } 55 inline void flip (uoff_t n) { BitRef(n) ^= Mask(n); } 62 inline const bool test (uoff_t n) const { return (BitRef(n) & Mask(n)); } 76 const value_type mask (Mask (n)); 77 const value_type bOn (br | mask), bOff (br & ~mask);
|
/system/core/libpixelflinger/ |
clear.cpp | 27 static void ggl_clear(void* c, GGLbitfield mask); 92 static void ggl_clear(void* con, GGLbitfield mask) 109 mask &= ~GGL_COLOR_BUFFER_BIT; 112 mask &= ~GGL_DEPTH_BUFFER_BIT; 115 mask &= ~GGL_STENCIL_BUFFER_BIT; 117 if (mask & GGL_COLOR_BUFFER_BIT) { 133 if (mask & GGL_DEPTH_BUFFER_BIT) {
|
/system/core/toolbox/ |
ifconfig.c | 64 unsigned int addr, mask, flags; local 94 mask = ((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr.s_addr; 108 mask & 0xff, 109 ((mask >> 8) & 0xff), 110 ((mask >> 16) & 0xff), 111 ((mask >> 24) & 0xff)); 112 printf("%s: ip %s mask %s flags [", ifr.ifr_name,
|
/external/iptables/ |
ip6tables-save.c | 32 /* This assumes that mask is contiguous, and byte-bounded. */ 34 print_iface(char letter, const char *iface, const unsigned char *mask, 39 if (mask[0] == 0) 45 if (mask[i] != 0) { 50 * a few lines above we make sure that mask[0] != 0 */ 122 /* print a given ip including mask if neccessary */ 123 static void print_ip(char *prefix, const struct in6_addr *ip, const struct in6_addr *mask, int invert) 126 int l = ipv6_prefix_length(mask); 137 printf("/%s ", inet_ntop(AF_INET6, mask, buf, sizeof buf));
|
/dalvik/libcore/luni/src/main/java/java/io/ |
FilePermission.java | 65 transient int mask = -1; field in class:FilePermission 138 mask = getMask(actions); 140 // convert the mask to a canonical action list. 142 // the test mask - shift the 1 to the leftmost position of the 146 // if a bit of mask is set, append the corresponding action to result 150 if ((highestBitMask & mask) != 0) { 167 * @return the action mask 246 return match != 0 && match == ((FilePermission) p).mask; 255 * @return the mask applied to the given permission 262 int matchedMask = mask & fp.mask [all...] |