Searched defs:mask (Results 26 - 50 of 116) sorted by relevance

12345

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp537 UInt mask, sgn_msk = 0x80808080; local
542 mask = ~(0xFF00);
569 cur1 = cur1 & (mask << 8); /* mask first and third bytes */
572 cur2 = cur2 & (mask << 8); /* mask first and third bytes */
599 UInt mask = ~(0xFF00); local
608 load1 = load1 & (mask << 8); /* even bytes */
611 load2 = load2 & (mask << 8); /* even bytes */
H A Dme_utils.cpp318 Int tmp, tmp2, mask = 0x00FF00FF; local
326 tmp2 = tmp & mask;
327 tmp = (tmp >> 8) & mask;
331 tmp2 = tmp & mask;
332 tmp = (tmp >> 8) & mask;
336 tmp2 = tmp & mask;
337 tmp = (tmp >> 8) & mask;
342 tmp2 = tmp & mask;
343 tmp = (tmp >> 8) & mask;
348 tmp2 = tmp & mask;
[all...]
H A Dsad.cpp321 Int tmp, tmp2, tmp3, mask = 0xFF; local
335 tmp2 = (tmp3 >> 16) & mask;
338 tmp2 = (tmp3 >> 8) & mask;
341 tmp2 = tmp3 & mask;
349 tmp2 = (tmp3 >> 16) & mask;
352 tmp2 = (tmp3 >> 8) & mask;
356 tmp2 = tmp3 & mask;
H A Dsad_inline.h42 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask) argument
56 x7 = mask & ((uint32)x7 >> 1);
189 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask) argument
198 AND x7, mask, x7, lsr #1; local
208 __inline int32 sad_4pixelN(int32 src1, int32 src2, int32 mask) argument
217 ANDS x7, mask, x7, rrx; local
365 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask) argument
371 register int32 mm = mask;
390 __inline int32 sad_4pixelN(int32 src1, int32 src2, int32 mask) argument
396 register int32 mm = mask;
[all...]
H A Dfastidct.cpp48 if((UInt)tmp > mask) tmp = mask&(~(tmp>>31)); \
53 if((UInt)tmp > mask) tmp = mask&(~(tmp>>31)); \
1866 UInt mask = 0xFF; local
1921 if ((UInt)i > mask) i = mask & (~(i >> 31));
1952 if ((UInt)tmp2 > mask) tmp2 = mask & (~(tmp2 >> 31));
1955 if ((UInt)tmp > mask) tm
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_TransformResidual4x4_s.s130 mask RN 14 label
346 LDR mask, =0xffff03ff ;// Used to mask the down shifted 6 bits
356 AND colOp00, mask, colOp00, ASR #6
357 AND colOp02, mask, colOp02, ASR #6
366 AND colOp10, mask, colOp10, ASR #6
367 AND colOp12, mask, colOp12, ASR #6
376 AND colOp20, mask, colOp20, ASR #6
377 AND colOp22, mask, colOp22, ASR #6
386 AND colOp30, mask, colOp3
[all...]
H A DomxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s71 mask RN 11 label
175 LDR mask, =MASK_2
190 AND tunpk4, mask, row4
191 AND tunpk5, mask, row4, LSL#8
194 AND tunpk6, mask, row6
195 AND tunpk7, mask, row6, LSL#8
226 AND tunpk2, mask, row0
227 AND tunpk6, mask, row0, LSL#8
231 AND tunpk0, mask, row2
232 AND tunpk3, mask, row
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_MCReconBlock_s.s54 ;// M_UHADD8R $dest, $x, $y, $round, $mask
60 ;// $mask some register set to 0x80808080
66 M_UHADD8R $dest, $x, $y, $round, $mask
71 EOR $dest, $dest, $mask
75 EOR $dest, $dest, $mask
273 ;// "yMask" for mask variable "0x1010101x" set in it. In yMask 4 lsbs are
319 AND $lsb2, $lsb2, yMask, LSR # 4 ;// e2 = e2 & mask
393 LDR mask, =0x80808080
400 M_UHADD8R tmp5, tmp1, tmp3, (1-$rndVal), mask
401 M_UHADD8R tmp6, tmp2, tmp4, (1-$rndVal), mask
592 mask RN 11 label
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_header.c416 u32 tmp,numBits,mask; local
431 mask = ~0U;
434 while (tmp & (mask<<++numBits))
/frameworks/base/core/java/android/app/
H A DRemoteInput.java214 private void setFlag(int mask, boolean value) { argument
216 mFlags |= mask;
218 mFlags &= ~mask;
/frameworks/base/core/java/android/bluetooth/le/
H A DScanFilter.java339 private boolean matchesServiceUuid(UUID uuid, UUID mask, UUID data) { argument
340 if (mask == null) {
343 if ((uuid.getLeastSignificantBits() & mask.getLeastSignificantBits()) !=
344 (data.getLeastSignificantBits() & mask.getLeastSignificantBits())) {
347 return ((uuid.getMostSignificantBits() & mask.getMostSignificantBits()) ==
348 (data.getMostSignificantBits() & mask.getMostSignificantBits()));
460 mUuidMask = null; // clear uuid mask
465 * Set filter on partial service uuid. The {@code uuidMask} is the bit mask for the
466 * {@code serviceUuid}. Set any bit in the mask to 1 to indicate a match is needed for the
492 mServiceDataMask = null; // clear service data mask
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkUtils.java53 * @param mask {@see #RESET_IPV4_ADDRESSES} and {@see #RESET_IPV6_ADDRESSES}
55 public native static int resetConnections(String interfaceName, int mask); argument
244 byte mask = (byte)(0xFF << (8 - remainder));
246 if (offset < array.length) array[offset] = (byte)(array[offset] & mask);
257 * @param address the IP address to mask with
258 * @param prefixLength the prefixLength used to mask the IP
291 throw new IllegalArgumentException("Invalid IP address and mask " + ipAndMaskString);
/frameworks/base/core/java/android/text/util/
H A DLinkify.java63 * take an options mask
69 * that take an options mask
75 * take an options mask
81 * take an options mask
86 * Bit mask indicating that all available patterns should be matched in
87 * methods that take an options mask
199 * of the link types indicated in the mask into clickable links.
200 * If the mask is nonzero, it also removes any existing URLSpans
204 public static final boolean addLinks(Spannable text, int mask) { argument
205 if (mask
256 addLinks(TextView text, int mask) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_net_NetUtils.cpp82 jstring ifname, jint mask)
88 ALOGD("android_net_utils_resetConnections in env=%p clazz=%p iface=%s mask=0x%x\n",
89 env, clazz, nameStr, mask);
91 result = ::ifc_reset_connections(nameStr, mask);
81 android_net_utils_resetConnections(JNIEnv* env, jobject clazz, jstring ifname, jint mask) argument
/frameworks/base/services/core/jni/
H A Dcom_android_server_connectivity_Vpn.cpp168 in_addr_t mask = prefix ? (~0 << (32 - prefix)) : 0; local
169 *as_in_addr(&ifr4.ifr_netmask) = htonl(mask);
/frameworks/base/tools/aapt/
H A DAaptConfig.cpp576 uint8_t mask = 0; local
579 mask = ResTable_config::MASK_KEYSHIDDEN;
582 mask = ResTable_config::MASK_KEYSHIDDEN;
585 mask = ResTable_config::MASK_KEYSHIDDEN;
588 mask = ResTable_config::MASK_KEYSHIDDEN;
592 if (mask != 0) {
593 if (out) out->inputFlags = (out->inputFlags&~mask) | value;
619 uint8_t mask = 0; local
622 mask = ResTable_config::MASK_NAVHIDDEN;
625 mask
812 const uint32_t mask = ResTable_config::CONFIG_DENSITY | ResTable_config::CONFIG_VERSION; local
[all...]
/frameworks/native/include/private/gui/
H A DLayerState.h60 alpha(0), flags(0), mask(0),
87 uint8_t mask; member in struct:android::layer_state_t
/frameworks/native/libs/gui/
H A DBufferQueueConsumer.cpp398 uint64_t mask = 0; local
401 mask |= (1ULL << s);
405 // Remove from the mask queued buffers for which acquire has been called,
411 mask &= ~(1ULL << current->mSlot);
416 BQ_LOGV("getReleasedBuffers: returning mask %#" PRIx64, mask);
417 *outSlotMask = mask;
H A DConsumerBase.cpp126 uint64_t mask = 0; local
127 mConsumer->getReleasedBuffers(&mask);
129 if (mask & (1ULL << i)) {
H A DSurfaceControl.cpp122 status_t SurfaceControl::setFlags(uint32_t flags, uint32_t mask) { argument
125 return mClient->setFlags(mHandle, flags, mask);
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp272 egl_connection_t* cnx, uint32_t mask)
390 if (mask & EGL) {
416 if (mask & GLESv1_CM) {
423 if (mask & GLESv2) {
271 load_driver(const char* kind, egl_connection_t* cnx, uint32_t mask) argument
/frameworks/wilhelm/src/itf/
H A DIObject.c345 unsigned mask = 1 << index; local
363 if (!(thiz->mGottenMask & mask)) {
364 thiz->mGottenMask |= mask;
564 unsigned mask = 1 << i; local
565 assert(thisEngine->mInstanceMask & mask);
566 thisEngine->mInstanceMask &= ~mask;
H A DIOutputMixExt.c89 unsigned mask = 1 << i; local
91 assert(outputMix->mOutputMixExt.mActiveMask & mask);
92 outputMix->mOutputMixExt.mActiveMask &= ~mask;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp327 int mask = (half_range << 1) - 1; local
346 *vector = (MOT)((*vector + half_range) & mask) - half_range;
1473 uint code, mask; local
1477 mask = 0x4000; /* mask 100000000000000 */
1499 if (code & mask)
1502 while (mask && count > 0) /* fix 3/28/01 */
1504 mask = mask >> 1;
1505 if (code & mask)
1556 uint code, mask; local
[all...]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DInteractionController.java72 * Predicate for waiting for any of the events specified in the mask
76 WaitForAnyEventPredicate(int mask) { argument
77 mMask = mask;
92 * Predicate for waiting for all the events specified in the mask and populating
100 EventCollectingPredicate(int mask, List<AccessibilityEvent> events) { argument
101 mMask = mask;
120 * Predicate for waiting for every event specified in the mask to be matched at least once
124 WaitForAllEventPredicate(int mask) { argument
125 mMask = mask;
132 // remove from mask sinc
[all...]

Completed in 907 milliseconds

12345