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

1 2 3

  /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/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) {
312 masks.clear();
318 masks.append("AUDIO_CHANNEL_OUT_STEREO");
327 if (masks.length())
328 masks.append("|");
330 masks.append((mModes[ndx].max_ch >= 8)
alsa_utils.h 108 void getChannelMasksForAF(String8& masks);
AudioHotplugThread.cpp 77 assert(p->masks);
79 return &(p->masks[n - SNDRV_PCM_HW_PARAM_FIRST_MASK]);
  /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...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachException.h 39 exception_mask_t masks[EXC_TYPES_COUNT]; member in struct:MachException::PortInfo
MachException.cpp 507 err = ::task_get_exception_ports (task, mask, masks, &count, ports, behaviors, flavors);
515 err = ::task_get_exception_ports (task, mask, masks, &count, ports, behaviors, flavors);
537 err = ::task_set_exception_ports (task, masks[i], ports[i], behaviors[i], flavors[i]);
540 err.LogThreaded("::task_set_exception_ports ( task = 0x%4.4x, exception_mask = 0x%8.8x, new_port = 0x%4.4x, behavior = 0x%8.8x, new_flavor = 0x%8.8x )", task, masks[i], ports[i], behaviors[i], flavors[i]);
  /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);
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
WebFontCache.mm 65 const NSFontTraitMask masks[] = {
78 while ((mask = masks[i++])) {
  /external/chromium_org/v8/test/mjsunit/regress/
internalized-string-not-equal.js 30 // A bug in r15773, when masks for internalized string and string types

Completed in 3309 milliseconds

1 2 3