HomeSort by relevance Sort by last modified time
    Searched refs:masks (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /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))));
u_linkage.c 38 unsigned long *p = &set->masks[value / (sizeof(long) * 8)];
74 memset(set->masks, 0, sizeof(set->masks));
115 #define UTIL_SEMANTIC_SET_FOR_EACH(i, set) for(i = 0; i < 256; ++i) if(set->masks[i / (sizeof(long) * 8)] & (1 << (i % (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))));
u_linkage.c 38 unsigned long *p = &set->masks[value / (sizeof(long) * 8)];
74 memset(set->masks, 0, sizeof(set->masks));
115 #define UTIL_SEMANTIC_SET_FOR_EACH(i, set) for(i = 0; i < 256; ++i) if(set->masks[i / (sizeof(long) * 8)] & (1 << (i % (sizeof(long) * 8))))
  /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_
pshrec.c 219 PS_Mask mask = table->masks;
225 FT_FREE( table->masks );
231 /* ensure that a mask table can contain "count" masks */
245 if ( !FT_RENEW_ARRAY( table->masks, old_max, new_max ) )
273 mask = table->masks + count - 1;
303 mask = table->masks + count - 1;
372 /* test whether two masks in a table intersect */
378 PS_Mask mask1 = table->masks + index1;
379 PS_Mask mask2 = table->masks + index2;
404 /* merge two masks, used by ps_mask_table_merge_all *
    [all...]
  /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_
pshrec.c 219 PS_Mask mask = table->masks;
225 FT_FREE( table->masks );
231 /* ensure that a mask table can contain "count" masks */
245 if ( !FT_RENEW_ARRAY( table->masks, old_max, new_max ) )
273 mask = table->masks + count - 1;
303 mask = table->masks + count - 1;
372 /* test whether two masks in a table intersect */
378 PS_Mask mask1 = table->masks + index1;
379 PS_Mask mask2 = table->masks + index2;
404 /* merge two masks, used by ps_mask_table_merge_all *
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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_
pshrec.c 219 PS_Mask mask = table->masks;
225 FT_FREE( table->masks );
231 /* ensure that a mask table can contain "count" masks */
245 if ( !FT_RENEW_ARRAY( table->masks, old_max, new_max ) )
273 mask = table->masks + count - 1;
303 mask = table->masks + count - 1;
372 /* test whether two masks in a table intersect */
378 PS_Mask mask1 = table->masks + index1;
379 PS_Mask mask2 = table->masks + index2;
404 /* merge two masks, used by ps_mask_table_merge_all *
    [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);
  /external/chromium_org/chrome/test/ispy/common/
image_tools.py 115 def AddMasks(masks):
119 masks: a list of mask-images.
126 Exception: if masks is an empty list, or if masks are not the same size.
128 if not masks:
129 raise Exception('masks must be a list containing at least one image.')
130 if len(masks) > 1 and not _AreTheSameSize(masks):
131 raise Exception('masks in list must be of the same size.')
134 masks_data = [mask.getdata() for mask in masks]
    [all...]
  /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/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...]
  /device/asus/fugu/libaudio/
alsa_utils.cpp 310 void HDMIAudioCaps::getChannelMasksForAF(String8& masks, bool skipStereo) {
312 masks.clear();
322 masks.append("AUDIO_CHANNEL_OUT_STEREO");
331 if (masks.length())
332 masks.append("|");
334 masks.append((mModes[ndx].max_ch >= 8)
alsa_utils.h 108 void getChannelMasksForAF(String8& masks, bool skipStereo);
  /external/chromium_org/third_party/icu/source/i18n/
rbt_rule.h 60 // are used only by masks() and getIndexValue() which are called
244 * Return true if this rule masks another rule. If r1 masks r2 then
245 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
246 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
247 * "[c]a>x" masks "[dc]a>y".
249 * @return true if this rule masks 'r2'
251 virtual UBool masks(const TransliterationRule& r2) const
    [all...]
  /external/icu/icu4c/source/i18n/
rbt_rule.h 60 // are used only by masks() and getIndexValue() which are called
244 * Return true if this rule masks another rule. If r1 masks r2 then
245 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
246 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
247 * "[c]a>x" masks "[dc]a>y".
249 * @return true if this rule masks 'r2'
251 virtual UBool masks(const TransliterationRule& r2) const
    [all...]
  /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) {
  /external/lldb/tools/debugserver/source/MacOSX/
MachException.h 39 exception_mask_t masks[EXC_TYPES_COUNT]; member in struct:MachException::PortInfo
  /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/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);
  /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);

Completed in 467 milliseconds

1 2 3 4