HomeSort by relevance Sort by last modified time
    Searched full:mask (Results 1251 - 1275 of 2232) sorted by null

<<51525354555657585960>>

  /frameworks/base/libs/binder/
Parcel.cpp 541 static const uint32_t mask[4] = { local
546 static const uint32_t mask[4] = { local
550 //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
552 *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
    [all...]
  /hardware/ti/wlan/wl1271/TWD/TWDriver/
Device.h 64 Host Interrupt Mask Register - 32bit (RW)
94 Host Interrupt Mask Set 16bit, (Write only)
98 without effecting the mask
104 Host Interrupt Mask Clear 16bit,(Write only)
108 without effecting the mask
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/TnetwServices/
tnetwCommon.h 75 Host Interrupt Mask Register - 32bit (RW)
105 Host Interrupt Mask Set 16bit, (Write only)
109 without effecting the mask
115 Host Interrupt Mask Clear 16bit,(Write only)
119 without effecting the mask
  /system/wlan/ti/wilink_6_1/TWD/TWDriver/
Device.h 64 Host Interrupt Mask Register - 32bit (RW)
94 Host Interrupt Mask Set 16bit, (Write only)
98 without effecting the mask
104 Host Interrupt Mask Clear 16bit,(Write only)
108 without effecting the mask
  /frameworks/base/core/jni/
android_opengl_GLES20.cpp 347 /* void glClear ( GLbitfield mask ) */
350 (JNIEnv *_env, jobject _this, jint mask) {
352 (GLbitfield)mask
    [all...]
android_opengl_GLES10.cpp 207 /* void glClear ( GLbitfield mask ) */
210 (JNIEnv *_env, jobject _this, jint mask) {
212 (GLbitfield)mask
    [all...]
  /external/qemu/
ppc-dis.c 56 /* The opcode mask. This is used by the disassembler. This is a
57 mask containing ones indicating those bits which must match the
60 unsigned long mask; member in struct:powerpc_opcode
1222 long mask = (insn >> 12) & 0xff; local
1253 unsigned long uval, mask; local
    [all...]
  /external/libpng/
libpng-1.2.44.txt 463 followed the set of transformations indicated by the transform mask,
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 53 // this guy aligns with the masks, so we can compute a mask from a varaible 0/1
72 unsigned mask = 0; local
77 mask |= kPerspective_Mask;
82 mask |= kTranslate_Mask;
91 mask |= kAffine_Mask;
95 mask |= kScale_Mask;
98 if ((mask & kPerspective_Mask) == 0) {
114 mask |= ((dp0 & ds1) | (dp1 & ds0)) << kRectStaysRect_Shift;
117 return SkToU8(mask);
    [all...]
  /external/tcpdump/
print-rx.c 700 #define STOREATTROUT() { unsigned long mask, i; \
702 mask = EXTRACT_32BITS(bp); bp += sizeof(int32_t); \
703 if (mask) printf (" StoreStatus"); \
704 if (mask & 1) { printf(" date"); DATEOUT(); } \
707 if (mask & 2) printf(" owner %lu", i); \
709 if (mask & 4) printf(" group %lu", i); \
711 if (mask & 8) printf(" mode %lo", i & 07777); \
713 if (mask & 16) printf(" segsize %lu", i); \
715 if (mask & 1024) printf(" fsync"); \
    [all...]
  /development/apps/Term/src/com/android/term/
Term.java 1473 int mask = getDecFlagsMask(getArg0(0)); local
    [all...]
  /external/ppp/pppd/
sys-linux.c 1749 u_int32_t ina, mask; local
1875 u_int32_t mask, nmask, ina; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/os2fslib/
SDL_os2fslib.c 74 // We have to report empty alpha mask, otherwise SDL will select
    [all...]
  /external/kernel-headers/original/linux/
sched.h 9 #define CSIGNAL 0x000000ff /* signal mask to be sent at exit */
    [all...]
  /external/v8/src/arm/
regexp-macro-assembler-arm.cc 437 uint32_t mask,
439 __ and_(r0, current_character(), Operand(mask));
446 uint32_t mask,
448 __ and_(r0, current_character(), Operand(mask));
457 uc16 mask,
461 __ and_(r0, r0, Operand(mask));
    [all...]
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.cc 447 uint32_t mask,
450 __ and_(eax, mask);
457 uint32_t mask,
460 __ and_(eax, mask);
469 uc16 mask,
473 __ and_(eax, mask);
    [all...]
  /external/v8/src/
jsregexp.h 514 // Details of a quick mask-compare check that can look ahead in the
537 Position() : mask(0), value(0), determines_perfectly(false) { }
538 uc16 mask; member in struct:v8::internal::QuickCheckDetails::Position
549 uint32_t mask() { return mask_; }
587 // For a given number of characters this returns a mask and a value. The
588 // next n characters are anded with the mask and compared with the value.
    [all...]
  /external/v8/src/x64/
regexp-macro-assembler-x64.cc 466 uint32_t mask,
469 __ and_(rax, Immediate(mask));
476 uint32_t mask,
479 __ and_(rax, Immediate(mask));
488 uc16 mask,
492 __ and_(rax, Immediate(mask));
    [all...]
  /frameworks/base/core/java/android/view/
ViewDebug.java 227 * @ViewDebug.FlagToString(mask = ENABLED_MASK, equals = ENABLED, name = "ENABLED"),
228 * @ViewDebug.FlagToString(mask = ENABLED_MASK, equals = DISABLED, name = "DISABLED"),
294 * The mask to apply to the original value.
298 int mask(); method in interface:ViewDebug.FlagToString
302 * <code>original value &amp; {@link #mask()}</code>.
    [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 120 // C function void glClear ( GLbitfield mask )
123 int mask
938 // C function void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
943 int mask
946 // C function void glStencilMask ( GLuint mask )
949 int mask
    [all...]
  /external/bluetooth/glib/glib/
gutils.c 2912 guint mask = 0; local
2969 guint mask; local
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/TNETWIF/BusTxn/
whalHwAccess.c 470 wspi_config.mask = HW_ACCESS_WSPI_INIT_CMD_MASK;
1129 UINT32 mask = 0; local
1303 UINT32 mask = 0; local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/
Double.java 412 // mask exponent bits and shift down
414 // mask significand bits and shift up
Float.java 418 // mask exponent bits and shift down
420 // mask significand bits and shift up
  /development/pdk/docs/porting/
display_drivers.jd 125 unsigned int mask = (1 << bf->length) - 1;
127 return (val >> (16 - bf->length) & mask) << bf->offset;

Completed in 245 milliseconds

<<51525354555657585960>>