/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_linkage.h | 35 unsigned long masks[256 / 8 / sizeof(unsigned long)]; member in struct:util_semantic_set 41 return !!(set->masks[value / (sizeof(long) * 8)] & (1 << (value / (sizeof(long) * 8))));
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_linkage.h | 35 unsigned long masks[256 / 8 / sizeof(unsigned long)]; member in struct:util_semantic_set 41 return !!(set->masks[value / (sizeof(long) * 8)] & (1 << (value / (sizeof(long) * 8))));
|
/external/elfutils/libcpu/ |
i386_parse.y | 243 spec: masks kPERCPERC '\n' instrs 253 masks: masks '\n' mask label [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
rbt_rule.cpp | 246 * Return true if this rule masks another rule. If r1 masks r2 then 247 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks 248 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y". 249 * "[c]a>x" masks "[dc]a>y". 251 UBool TransliterationRule::masks(const TransliterationRule& r2) const { function in class:TransliterationRule 252 /* Rule r1 masks rule r2 if the string formed of the 271 * means the row masks the column, N means it doesn't [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_const.c | 401 LLVMValueRef masks[LP_MAX_VECTOR_LENGTH]; local 408 masks[j + i] = LLVMConstInt(elem_type, 414 return LLVMConstVector(masks, type.length);
|
lp_bld_format_aos.c | 156 LLVMValueRef masks[4]; local 200 masks[i] = LLVMConstNull(LLVMInt32TypeInContext(gallivm->context)); 213 masks[i] = lp_build_const_int32(gallivm, mask); 230 masked = LLVMBuildAnd(builder, shifted, LLVMConstVector(masks, 4), "");
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/ |
utils.c | 249 const uint32_t * masks; local 291 masks = masks_table_rgb[ index ]; 295 masks = masks_table_rgba[ index ]; 299 masks = masks_table_bgr[ index ]; 303 masks = masks_table_bgra[ index ]; 345 modes->redMask = masks[0]; 346 modes->greenMask = masks[1]; 347 modes->blueMask = masks[2]; 348 modes->alphaMask = masks[3]; 355 modes->accumAlphaBits = (masks[3] != 0) ? 16 * j : 0 [all...] |
/external/chromium_org/tools/site_compare/commands/ |
maskmaker.py | 5 """Component for automatically creating masks of changing areas of a website. 15 import time # Used for sleep() and naming masks by time namespace 41 ["-o", "--outdir"], "Directory to store generated masks", metaname="DIR", 99 # Get the list of URLs to generate masks for 262 print " %d masks successfully generated" % len(complete_list) 265 print " %d masks failed with too many errors" % len(error_list) 269 print (" %d masks were not completed before "
|
/external/dropbear/ |
random.c | 217 const unsigned char masks[] = {0xff, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f}; local 231 randbuf[0] &= masks[size_bits % 8];
|
/external/icu4c/i18n/ |
rbt_rule.cpp | 247 * Return true if this rule masks another rule. If r1 masks r2 then 248 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks 249 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y". 250 * "[c]a>x" masks "[dc]a>y". 252 UBool TransliterationRule::masks(const TransliterationRule& r2) const { function in class:TransliterationRule 253 /* Rule r1 masks rule r2 if the string formed of the 272 * means the row masks the column, N means it doesn't [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_const.c | 401 LLVMValueRef masks[LP_MAX_VECTOR_LENGTH]; local 408 masks[j + i] = LLVMConstInt(elem_type, 414 return LLVMConstVector(masks, type.length);
|
lp_bld_format_aos.c | 156 LLVMValueRef masks[4]; local 200 masks[i] = LLVMConstNull(LLVMInt32TypeInContext(gallivm->context)); 213 masks[i] = lp_build_const_int32(gallivm, mask); 230 masked = LLVMBuildAnd(builder, shifted, LLVMConstVector(masks, 4), "");
|
/external/mesa3d/src/mesa/drivers/dri/common/ |
utils.c | 249 const uint32_t * masks; local 291 masks = masks_table_rgb[ index ]; 295 masks = masks_table_rgba[ index ]; 299 masks = masks_table_bgr[ index ]; 303 masks = masks_table_bgra[ index ]; 345 modes->redMask = masks[0]; 346 modes->greenMask = masks[1]; 347 modes->blueMask = masks[2]; 348 modes->alphaMask = masks[3]; 355 modes->accumAlphaBits = (masks[3] != 0) ? 16 * j : 0 [all...] |
/external/tcpdump/ |
print-cnfp.c | 77 u_int32_t masks; /* src,dst addr prefix; v6: encaps */ member in struct:nfrec 137 (EXTRACT_32BITS(&nr->masks) >> 24) & 0xff); 146 (EXTRACT_32BITS(&nr->masks) >> 16) & 0xff); 182 (EXTRACT_32BITS(&nr->masks) >> 8) & 0xff, 183 (EXTRACT_32BITS(&nr->masks)) & 0xff);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
IncludeOverlay.java | 32 * The {@link IncludeOverlay} class renders masks to -partially- hide everything outside 76 Collection<Rectangle> masks = subtractRectangles(whole, includedBounds); local 78 for (Rectangle mask : masks) {
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/os/ |
FileUtils.java | 125 int[] masks = {S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP, local 127 for (int i = 0; i < masks.length; i++) { 128 if (!hasModeFlag(mode, masks[i])) {
|
/external/chromium_org/third_party/freetype/src/pshinter/ |
pshrec.h | 108 /* masks and counters table descriptor */ 113 PS_Mask masks; member in struct:PS_Mask_TableRec_ 122 PS_Mask_TableRec masks; member in struct:PS_DimensionRec_
|
/external/freetype/src/pshinter/ |
pshrec.h | 108 /* masks and counters table descriptor */ 113 PS_Mask masks; member in struct:PS_Mask_TableRec_ 122 PS_Mask_TableRec masks; member in struct:PS_DimensionRec_
|
/external/libppp/src/ |
ncpaddr.c | 143 const u_char masks[] = { 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe }; local 152 for (c = masks, m = 0; c < masks + sizeof masks; c++, m++) 520 const u_char masks[] = { 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff }; local 539 if ((*addrp++ ^ *rangep++) & masks[bits > 7 ? 7 : bits - 1])
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_dataflow.c | 655 struct branch_write_mask * masks = &d->BranchMasks[*branch_depth]; local 657 if (masks->HasElse) { 661 masks->IfWriteMask & ~masks->ElseWriteMask; 665 masks->ElseWriteMask & ~d->AliveWriteMask; 667 d->AliveWriteMask = masks->IfWriteMask 668 ^ ((masks->IfWriteMask ^ masks->ElseWriteMask) 669 & (masks->IfWriteMask ^ d->AliveWriteMask)); 672 masks->IfWriteMask & ~d->AliveWriteMask [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_dataflow.c | 655 struct branch_write_mask * masks = &d->BranchMasks[*branch_depth]; local 657 if (masks->HasElse) { 661 masks->IfWriteMask & ~masks->ElseWriteMask; 665 masks->ElseWriteMask & ~d->AliveWriteMask; 667 d->AliveWriteMask = masks->IfWriteMask 668 ^ ((masks->IfWriteMask ^ masks->ElseWriteMask) 669 & (masks->IfWriteMask ^ d->AliveWriteMask)); 672 masks->IfWriteMask & ~d->AliveWriteMask [all...] |
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-darwin.c | 4403 exception_mask_t masks[32]; member in struct:__anon27876 [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
pcm.h | 212 struct snd_mask masks[SNDRV_PCM_HW_PARAM_LAST_MASK - member in struct:snd_pcm_hw_constraints 224 return &constrs->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; 782 return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; 794 return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
pcm.h | 212 struct snd_mask masks[SNDRV_PCM_HW_PARAM_LAST_MASK - member in struct:snd_pcm_hw_constraints 224 return &constrs->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; 782 return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; 794 return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; [all...] |
/bionic/libc/kernel/common/sound/ |
asound.h | 319 struct snd_mask masks[SNDRV_PCM_HW_PARAM_LAST_MASK - member in struct:snd_pcm_hw_params [all...] |