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

1 2 3 4 5 6 7 8 910

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_GetVLCInfo.c 72 OMX_U32 Mask = 4, RunBefore;
129 Value == -1 ? Mask : 0;
130 Mask >>= 1;
136 Mask = 0;
147 /* Mask becomes zero after entering */
148 if (Mask &&
155 Value == -1 ? Mask : 0;
156 Mask >>= 1;
163 if (Mask)
165 Mask = 0
    [all...]
  /external/chromium_org/third_party/skia/src/svg/
SkSVGMask.h 16 DECLARE_SVG_INFO(Mask);
SkSVGMask.cpp 21 DEFINE_SVG_INFO(Mask)
  /external/skia/src/svg/
SkSVGMask.h 16 DECLARE_SVG_INFO(Mask);
SkSVGMask.cpp 21 DEFINE_SVG_INFO(Mask)
  /external/chromium_org/third_party/leveldatabase/src/util/
crc32c_test.cc 59 TEST(CRC, Mask) {
61 ASSERT_NE(crc, Mask(crc));
62 ASSERT_NE(crc, Mask(Mask(crc)));
63 ASSERT_EQ(crc, Unmask(Mask(crc)));
64 ASSERT_EQ(crc, Unmask(Unmask(Mask(Mask(crc)))));
crc32c.h 31 inline uint32_t Mask(uint32_t crc) {
  /external/clang/include/clang/AST/
DeclAccessPair.h 33 enum { Mask = 0x3 };
43 return (NamedDecl*) (~Mask & (uintptr_t) Ptr);
46 return AccessSpecifier(Mask & (uintptr_t) Ptr);
DeclGroup.h 58 enum Kind { SingleDeclKind=0x0, DeclGroupKind=0x1, Mask=0x1 };
62 return (Kind) (reinterpret_cast<uintptr_t>(D) & Mask);
97 return *((DeclGroup*)(reinterpret_cast<uintptr_t>(D) & ~Mask));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xdefs.h 75 typedef unsigned long Mask;
77 typedef CARD32 Mask;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xdefs.h 75 typedef unsigned long Mask;
77 typedef CARD32 Mask;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xdefs.h 75 typedef unsigned long Mask;
77 typedef CARD32 Mask;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 291 /// elements from either LHS or RHS, return the shuffle mask and true.
294 SmallVectorImpl<Constant*> &Mask) {
300 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
306 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i));
312 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()),
330 if (CollectSingleShuffleElements(VecOp, LHS, RHS, Mask)) {
331 // If so, update the mask to reflect the inserted undef.
332 Mask[InsertedIdx] = UndefValue::get(Type::getInt32Ty(V->getContext()));
345 if (CollectSingleShuffleElements(VecOp, LHS, RHS, Mask)) {
346 // If so, update the mask to reflect the inserted value
    [all...]
  /external/llvm/include/llvm/ADT/
SmallBitVector.h 232 // Mask off previous bits.
311 uintptr_t Mask = EMask - IMask;
312 setSmallBits(getSmallBits() | Mask);
342 uintptr_t Mask = EMask - IMask;
343 setSmallBits(getSmallBits() & ~Mask);
523 /// setBitsInMask - Add '1' bits from Mask to this vector. Don't resize.
524 /// This computes "*this |= Mask".
525 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
527 applyMask<true, false>(Mask, MaskWords);
529 getPointer()->setBitsInMask(Mask, MaskWords)
    [all...]
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 28 // Mask manipulation functions.
34 /// getMaskElt - Return element N of the specified mask.
35 static unsigned getMaskElt(unsigned Mask, unsigned Elt) {
36 return (Mask >> ((3-Elt)*4)) & 0xF;
39 static unsigned setMaskElt(unsigned Mask, unsigned Elt, unsigned NewVal) {
41 return (Mask & ~(0xF << FieldShift)) | (NewVal << FieldShift);
45 static bool isValidMask(unsigned short Mask) {
46 unsigned short UndefBits = Mask & 0x8888;
47 return (Mask & ((UndefBits >> 1)|(UndefBits>>2)|(UndefBits>>3))) == 0;
50 /// hasUndefElements - Return true if any of the elements in the mask are undef
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 88 ModRefResult Mask = ModRef;
90 Mask = Ref;
114 if ((Mask & Mod) && pointsToConstantMemory(Loc))
115 Mask = ModRefResult(Mask & ~Mod);
118 if (!AA) return Mask;
121 // in any mask we've managed to compute.
122 return ModRefResult(AA->getModRefInfo(CS, Loc) & Mask);
140 AliasAnalysis::ModRefResult Mask = ModRef;
145 Mask = ModRefResult(Mask & Ref)
    [all...]
CostModel.cpp 84 static bool isReverseVectorMask(SmallVectorImpl<int> &Mask) {
85 for (unsigned i = 0, MaskSize = Mask.size(); i < MaskSize; ++i)
86 if (Mask[i] > 0 && Mask[i] != (int)(MaskSize - 1 - i))
208 SmallVector<int, 16> Mask = Shuffle->getShuffleMask();
210 if (NumVecElems == Mask.size() && isReverseVectorMask(Mask))
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-utf-private.hh 35 #define HB_UTF8_COMPUTE(Char, Mask, Len) \
36 if (Char < 128) { Len = 1; Mask = 0x7f; } \
37 else if ((Char & 0xe0) == 0xc0) { Len = 2; Mask = 0x1f; } \
38 else if ((Char & 0xf0) == 0xe0) { Len = 3; Mask = 0x0f; } \
39 else if ((Char & 0xf8) == 0xf0) { Len = 4; Mask = 0x07; } \
47 hb_codepoint_t c = *text, mask; local
52 HB_UTF8_COMPUTE (c, mask, len);
59 result = c & mask;
84 hb_codepoint_t c = *text, mask; local
89 HB_UTF8_COMPUTE (c, mask, len)
    [all...]
  /external/harfbuzz_ng/src/
hb-utf-private.hh 35 #define HB_UTF8_COMPUTE(Char, Mask, Len) \
36 if (Char < 128) { Len = 1; Mask = 0x7f; } \
37 else if ((Char & 0xe0) == 0xc0) { Len = 2; Mask = 0x1f; } \
38 else if ((Char & 0xf0) == 0xe0) { Len = 3; Mask = 0x0f; } \
39 else if ((Char & 0xf8) == 0xf0) { Len = 4; Mask = 0x07; } \
47 hb_codepoint_t c = *text, mask; local
52 HB_UTF8_COMPUTE (c, mask, len);
59 result = c & mask;
84 hb_codepoint_t c = *text, mask; local
89 HB_UTF8_COMPUTE (c, mask, len)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 95 // Return a mask with Count low bits set.
104 // (or (rotl Input, Rotate), ~Mask)
108 // (and (rotl Input, Rotate), Mask)
114 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63),
119 uint64_t Mask;
247 // Try to update RxSBG so that only the bits of RxSBG.Input in Mask are used.
249 bool refineRxSBGMask(RxSBGOperands &RxSBG, uint64_t Mask);
597 // We need a constant mask.
622 bool SystemZDAGToDAGISel::refineRxSBGMask(RxSBGOperands &RxSBG, uint64_t Mask) {
625 Mask = (Mask << RxSBG.Rotate) | (Mask >> (64 - RxSBG.Rotate))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
depth.c 116 if (ctx->Depth.Mask == flag)
120 ctx->Depth.Mask = flag;
171 ctx->Depth.Mask = GL_TRUE;
  /external/mesa3d/src/mesa/main/
depth.c 116 if (ctx->Depth.Mask == flag)
120 ctx->Depth.Mask = flag;
171 ctx->Depth.Mask = GL_TRUE;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
multibufst.h 274 CARD32 mask B32;
315 if ((pPRIV->funcsWrapped & FUNC_NAME##Mask) == 0) \
319 pPRIV->funcsWrapped |= FUNC_NAME##Mask; \
326 pPRIV->funcsWrapped &= ~(FUNC_NAME##Mask); \
334 pPRIV->funcsWrapped |= FUNC_NAME##Mask; \
340 if ((pPRIV->funcsWrapped & FUNC_NAME/**/Mask) == 0) \
344 pPRIV->funcsWrapped |= FUNC_NAME/**/Mask; \
351 pPRIV->funcsWrapped &= ~(FUNC_NAME/**/Mask); \
359 pPRIV->funcsWrapped |= FUNC_NAME/**/Mask; \
375 Mask eventMask; /* MultibufferClobberNotifyMask|ExposureMask|MultibufferUpdateNotifyMask *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
multibufst.h 274 CARD32 mask B32;
315 if ((pPRIV->funcsWrapped & FUNC_NAME##Mask) == 0) \
319 pPRIV->funcsWrapped |= FUNC_NAME##Mask; \
326 pPRIV->funcsWrapped &= ~(FUNC_NAME##Mask); \
334 pPRIV->funcsWrapped |= FUNC_NAME##Mask; \
340 if ((pPRIV->funcsWrapped & FUNC_NAME/**/Mask) == 0) \
344 pPRIV->funcsWrapped |= FUNC_NAME/**/Mask; \
351 pPRIV->funcsWrapped &= ~(FUNC_NAME/**/Mask); \
359 pPRIV->funcsWrapped |= FUNC_NAME/**/Mask; \
375 Mask eventMask; /* MultibufferClobberNotifyMask|ExposureMask|MultibufferUpdateNotifyMask *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
multibufst.h 274 CARD32 mask B32;
315 if ((pPRIV->funcsWrapped & FUNC_NAME##Mask) == 0) \
319 pPRIV->funcsWrapped |= FUNC_NAME##Mask; \
326 pPRIV->funcsWrapped &= ~(FUNC_NAME##Mask); \
334 pPRIV->funcsWrapped |= FUNC_NAME##Mask; \
340 if ((pPRIV->funcsWrapped & FUNC_NAME/**/Mask) == 0) \
344 pPRIV->funcsWrapped |= FUNC_NAME/**/Mask; \
351 pPRIV->funcsWrapped &= ~(FUNC_NAME/**/Mask); \
359 pPRIV->funcsWrapped |= FUNC_NAME/**/Mask; \
375 Mask eventMask; /* MultibufferClobberNotifyMask|ExposureMask|MultibufferUpdateNotifyMask *
    [all...]

Completed in 467 milliseconds

1 2 3 4 5 6 7 8 910