Searched refs:masks (Results 26 - 50 of 69) sorted by relevance

123

/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow.c655 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
[all...]
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DAPIInfo.java47 public int[] masks = { 0x7, 0x3, 0x1, 0x1, 0x1, 0x1, 0x7 }; field in class:APIInfo
153 return (info >>> shifts[typ]) & masks[typ];
175 int val = (info >>> shifts[typ]) & masks[typ];
186 if (typ < masks.length) {
187 info &= ~(masks[typ] << shifts[typ]);
188 info |= (val&masks[typ]) << shifts[typ];
227 info &= ~(masks[typ] << shifts[typ]);
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
H A Dmerge.py210 masks = [K.expand_dims(m, 0) for m in mask if m is not None]
211 return K.all(K.concatenate(masks, axis=0), axis=0, keepdims=False)
414 # Make a list of masks while making sure
417 masks = []
420 # Input is unmasked. Append all 1s to masks,
421 masks.append(K.ones_like(input_i, dtype='bool'))
424 masks.append(K.expand_dims(mask_i))
426 masks.append(mask_i)
427 concatenated = K.concatenate(masks, axis=self.axis)
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_const.c401 LLVMValueRef masks[LP_MAX_VECTOR_LENGTH]; local
408 masks[j + i] = LLVMConstInt(elem_type,
414 return LLVMConstVector(masks, type.length);
H A Dlp_bld_format_aos.c228 LLVMValueRef masks[4]; local
270 masks[i] = LLVMConstNull(LLVMInt32TypeInContext(gallivm->context));
283 masks[i] = lp_build_const_int32(gallivm, mask);
323 masks[i] = lp_build_const_int32(gallivm, mask);
326 masked = LLVMBuildAnd(builder, packed, LLVMConstVector(masks, 4), "");
329 masked = LLVMBuildAnd(builder, shifted, LLVMConstVector(masks, 4), "");
/external/tensorflow/tensorflow/core/util/
H A Dstrided_slice_op.cc160 begin_tensor->NumElements() < 32 /* using 32 bit masks */);
265 const std::array<int64, 2> masks = { local
270 auto canonical = [stride_i, i, dim_i, masks, valid_range](int64 x, int c) {
271 if (masks[c]) {
/external/tensorflow/tensorflow/python/keras/_impl/keras/engine/
H A Dtopology.py96 input_mask, output_mask: Same as above, for masks.
712 masks = []
715 masks.append(mask)
717 tf_layers_util.object_list_uid(masks))
718 masks = []
721 masks.append(mask)
722 if len(masks) == 1:
723 mask = masks[0]
725 mask = masks
867 masks
[all...]
H A Dtraining.py703 # Prepare output masks.
705 masks = self.compute_mask(self.inputs, mask=None)
706 if masks is None:
707 masks = [None for _ in self.outputs]
708 if not isinstance(masks, list):
709 masks = [masks]
893 mask = masks[i]
980 y_true, y_pred, weights=weights, mask=masks[i])
/external/skia/src/codec/
H A DSkBmpCodec.cpp296 // Determine the input compression format and set bit masks if necessary
304 // the use of bit masks to determine pixel components. The standard
331 // Load the masks
335 // The V1 header stores the bit masks after the header
388 SkCodecPrintf("Error: invalid bmp bit masks header.\n");
522 // Check that input bit masks are valid and create the masks object
523 std::unique_ptr<SkMasks> masks(SkMasks::CreateMasks(inputMasks, bitsPerPixel));
524 if (nullptr == masks) {
525 SkCodecPrintf("Error: invalid input masks
[all...]
/external/skqp/src/codec/
H A DSkBmpCodec.cpp291 // Determine the input compression format and set bit masks if necessary
299 // the use of bit masks to determine pixel components. The standard
326 // Load the masks
330 // The V1 header stores the bit masks after the header
383 SkCodecPrintf("Error: invalid bmp bit masks header.\n");
517 // Check that input bit masks are valid and create the masks object
518 std::unique_ptr<SkMasks> masks(SkMasks::CreateMasks(inputMasks, bitsPerPixel));
519 if (nullptr == masks) {
520 SkCodecPrintf("Error: invalid input masks
[all...]
/external/tensorflow/tensorflow/contrib/crf/python/ops/
H A Dcrf.py218 masks = array_ops.sequence_mask(sequence_lengths,
222 unary_scores = math_ops.reduce_sum(unary_scores * masks, 1)
254 masks = array_ops.sequence_mask(sequence_lengths,
257 truncated_masks = array_ops.slice(masks, [0, 1], [-1, -1])
/external/tensorflow/tensorflow/python/layers/
H A Dnetwork.py318 # we compute the output tensors, output masks and output shapes in one pass,
766 mask: A mask or list of masks. A mask can be
775 masks = [None for _ in range(len(inputs))]
777 masks = nest.flatten(mask)
783 + '_' + layers_util.object_list_uid(masks))
788 outputs, _ = self._run_internal_graph(inputs, masks)
890 def _run_internal_graph(self, inputs, masks=None):
899 masks: List of masks (tensors or None).
911 if masks i
[all...]
H A Dbase.py1508 masks = []
1512 masks.append(mask)
1514 masks.append(None)
1515 if len(masks) == 1:
1516 return masks[0]
1517 return masks
/external/google-breakpad/src/client/mac/handler/
H A Dexception_handler.cc105 exception_mask_t masks[EXC_TYPES_COUNT]; member in struct:google_breakpad::ExceptionParameters
437 current.masks,
446 if (current.masks[found] & (1 << exception)) {
672 previous_->masks,
707 result = task_set_exception_ports(current_task, previous_->masks[i],
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransliterationRuleSet.java161 if (r1.masks(r2)) {
167 errors.append("Rule " + r1 + " masks " + r2);
H A DTransliterationRule.java50 // are used only by masks() and getIndexValue() which are called
268 * Return true if this rule masks another rule. If r1 masks r2 then
269 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
270 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
271 * "[c]a>x" masks "[dc]a>y".
273 public boolean masks(TransliterationRule r2) { method in class:TransliterationRule
274 /* Rule r1 masks rul
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliterationRuleSet.java160 if (r1.masks(r2)) {
166 errors.append("Rule " + r1 + " masks " + r2);
H A DTransliterationRule.java49 // are used only by masks() and getIndexValue() which are called
267 * Return true if this rule masks another rule. If r1 masks r2 then
268 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
269 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
270 * "[c]a>x" masks "[dc]a>y".
272 public boolean masks(TransliterationRule r2) { method in class:TransliterationRule
273 /* Rule r1 masks rul
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_target_nv50.cpp562 recordLocation(uint16_t *locs, uint8_t *masks, argument
577 if (var->sn == TGSI_SEMANTIC_POSITION && masks)
578 masks[0] = var->mask;
/external/icu/icu4c/source/i18n/
H A Drbt_rule.cpp249 * Return true if this rule masks another rule. If r1 masks r2 then
250 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
251 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
252 * "[c]a>x" masks "[dc]a>y".
254 UBool TransliterationRule::masks(const TransliterationRule& r2) const { function in class:TransliterationRule
255 /* Rule r1 masks rule r2 if the string formed of the
274 * means the row masks th
[all...]
/external/ltp/testcases/kernel/device-drivers/agp/kernel_space/
H A Dstr_agp.h65 // might have different types of memory masks. For other
109 struct gatt_mask *masks; member in struct:agp_bridge_driver
H A Dtagp.c331 .masks = NULL,
/external/freetype/src/pshinter/
H A Dpshalgo.c212 /* activate the hints that are given by the initial hint masks */
215 PS_Mask mask = hint_masks->masks;
231 FT_TRACE0(( "psh_hint_table_init: missing/incorrect hint masks\n" ));
1268 &ps_hints->dimension[0].masks,
1276 &ps_hints->dimension[1].masks,
1572 PS_Mask mask = table->hint_masks->masks;
1621 psh_hint_table_activate_mask( table, table->hint_masks->masks );
/external/deqp/modules/gles31/functional/
H A Des31fSampleVariableTests.cpp1542 // can't check the uniqueness if the masks don't work at all
1783 const tcu::ScopedLogSection section (m_testCtx.getLog(), "Verify", "Verify masks");
1785 // convert color layers to 32 bit coverage masks, 2 passes per coverage
1818 // verify masks
1863 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying invocation sample masks do not share bits." << tcu::TestLog::EndMessage;
1925 std::set<deUint32> masks;
1930 masks.insert(mask);
1933 if ((int)masks.size() < (int)minNumInvocations)
1939 << "Pixel (" << x << ", " << y << "): Pixel invocations had only " << (int)masks.size() << " separate mask sets. Expected " << minNumInvocations << " or more. Found masks
[all...]
/external/elfutils/libcpu/
H A Di386_parse.y247 spec: masks kPERCPERC '\n' instrs
257 masks: masks '\n' mask label

Completed in 1159 milliseconds

123