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

1 2 3 4

  /external/elfutils/libcpu/
i386_parse.y 247 spec: masks kPERCPERC '\n' instrs
257 masks: masks '\n' mask label
    [all...]
  /external/toybox/toys/other/
inotifyd.c 53 char *path = *ss, *masks = strchr(*ss, ':'); local
56 if (!masks) mask = 0xfff; // default to all
58 *masks++ = 0;
59 for (*masks++ = 0; *masks; masks++) {
60 i = stridx(masklist, *masks);;
61 if (i == -1) error_exit("bad mask '%c'", *masks);
  /external/strace/tests/
fanotify_mark.c 108 static const struct strval64 masks[] = { local
157 for (k = 0; k < ARRAY_SIZE(masks); k++) {
163 masks[k].val,
164 masks[k].str,
  /external/strace/tests-m32/
fanotify_mark.c 108 static const struct strval64 masks[] = { local
157 for (k = 0; k < ARRAY_SIZE(masks); k++) {
163 masks[k].val,
164 masks[k].str,
  /external/strace/tests-mx32/
fanotify_mark.c 108 static const struct strval64 masks[] = { local
157 for (k = 0; k < ARRAY_SIZE(masks); k++) {
163 masks[k].val,
164 masks[k].str,
  /external/icu/icu4c/source/i18n/
rbt_rule.cpp 249 * 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 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 228 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/mesa3d/src/mesa/drivers/dri/common/
utils.c 182 const uint32_t * masks; local
196 masks = masks_table[0];
200 masks = masks_table[1];
204 masks = masks_table[2];
207 masks = masks_table[5];
210 masks = masks_table[6];
213 masks = masks_table[3];
216 masks = masks_table[4];
263 modes->redMask = masks[0];
264 modes->greenMask = masks[1]
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testautomation_pixels.c 129 Uint32 masks; local
144 masks = result->Rmask | result->Gmask | result->Bmask | result->Amask;
145 SDLTest_AssertCheck(masks == 0, "Verify value of result.[RGBA]mask combined; expected: 0, got %u", masks);
166 masks = result->Rmask | result->Gmask | result->Bmask | result->Amask;
167 SDLTest_AssertCheck(masks > 0, "Verify value of result.[RGBA]mask combined; expected: >0, got %u", masks);
  /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/freetype/src/pshinter/
pshrec.h 104 /* masks and counters table descriptor */
109 PS_Mask masks; member in struct:PS_Mask_TableRec_
118 PS_Mask_TableRec masks; member in struct:PS_DimensionRec_
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 103 int masks[] = {0x0000, 0x0001, 0x0003, 0x0007, 0x000F, 0x001F, 0x003F, 0x007F, 0x00FF, 0x01FF, field in class:LZWEncoder
256 cur_accum &= masks[cur_bits];
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-use.cc 259 /* We cannot setup masks here. We save information about characters
260 * and setup masks later on in a pause-callback. */
296 hb_mask_t masks[4], all_masks = 0; local
299 masks[i] = plan->map.get_1_mask (arabic_features[i]);
300 if (masks[i] == plan->map.get_global_mask ())
301 masks[i] = 0;
302 all_masks |= masks[i];
336 info[i].mask = (info[i].mask & other_masks) | masks[last_form];
342 info[i].mask = (info[i].mask & other_masks) | masks[last_form];
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliterationRule.java 50 // 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 rule r2 if the string formed of th
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliterationRule.java 49 // 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 rule r2 if the string formed of th
    [all...]
  /external/tensorflow/tensorflow/core/util/
strided_slice_op.cc 160 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/google-breakpad/src/client/mac/handler/
exception_handler.cc 105 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],
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
Obd2Connection.java 211 private static final int[] masks = field in class:Obd2Connection.FourByteBitSet
251 if (index < 0 || index >= masks.length)
253 return 0 != (b & masks[index]);
  /prebuilts/tools/common/m2/repository/com/sun/istack/istack-commons-tools/2.21/
istack-commons-tools-2.21.jar 
  /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/boringssl/mac-x86_64/crypto/fipsmodule/
bsaes-x86_64.S 987 leaq L$masks(%rip),%r11
    [all...]
  /external/dhcpcd-6.8.2/
ipv6.c 467 static const unsigned char masks[NBBY] = local
482 mask->s6_addr[bytes] = masks[bits - 1];
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
APIInfo.java 47 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/python/cpython2/Modules/
audioop.c 29 static const unsigned int masks[] = {0, 0xFF, 0xFFFF, 0xFFFFFF, 0xFFFFFFFF}; variable
979 mask = masks[size];
    [all...]

Completed in 408 milliseconds

1 2 3 4