HomeSort by relevance Sort by last modified time
    Searched defs:wmask (Results 1 - 12 of 12) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/string/
memmove.c 38 * SO THAT wmask BELOW IS ALL ONES
43 #define wmask (wsize - 1) macro
69 if ((t | (long)dst) & wmask) {
74 if ((t ^ (long)dst) & wmask || length < wsize)
77 t = wsize - (t & wmask);
86 t = length & wmask;
92 * (t&wmask) bytes to align, not wsize-(t&wmask).
97 if ((t | (long)dst) & wmask) {
98 if ((t ^ (long)dst) & wmask || length <= wsize
    [all...]
  /device/google/contexthub/firmware/lib/libc/
bcopy.c 41 * SO THAT wmask BELOW IS ALL ONES
46 #define wmask (wsize - 1) macro
88 if ((t | (uintptr_t)dst) & wmask) {
93 if ((t ^ (uintptr_t)dst) & wmask || length < wsize)
96 t = wsize - (t & wmask);
105 t = length & wmask;
111 * (t&wmask) bytes to align, not wsize-(t&wmask).
116 if ((t | (uintptr_t)dst) & wmask) {
117 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize
    [all...]
memset.c 41 #define wmask (wsize - 1) macro
103 if ((t = (long)dst & wmask) != 0) {
119 t = length & wmask;
  /external/freetype/src/pshinter/
pshrec.c 335 FT_Int wmask = 0x80; local
341 val = write[0] & ~wmask;
344 val |= wmask;
355 wmask >>= 1;
356 if ( wmask == 0 )
359 wmask = 0x80;
  /external/pdfium/third_party/freetype/src/pshinter/
pshrec.c 335 FT_Int wmask = 0x80; local
341 val = write[0] & ~wmask;
344 val |= wmask;
355 wmask >>= 1;
356 if ( wmask == 0 )
359 wmask = 0x80;
  /external/zlib/src/contrib/masmx86/
match686.asm 57 wmask equ dword ptr [esp+NbStack-52] define
121 ; low word: s->wmask
217 ;;; uInt wmask = s->w_mask;
234 ;;; It is then shifted into the high word, to make room for the wmask
309 ;;; } while ((cur_match = prev[cur_match & wmask]) > limit
319 ;;; edx = chainlenwmask - i.e., ((chainlen << 16) | wmask)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
deflate.c 1164 uInt wmask = s->w_mask; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
deflate.c 1043 uInt wmask = s->w_mask; local
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.c 475 int wmask = depth_stencil->stencil[1].writemask & 0xff; local
491 (wmask << BFM_STENCIL_WRITE_MASK_SHIFT));
    [all...]
  /external/pdfium/third_party/zlib_v128/
deflate.c 1163 uInt wmask = s->w_mask; local
    [all...]
  /external/syslinux/com32/lib/zlib/
deflate.c 1079 uInt wmask = s->w_mask; local
    [all...]
  /external/zlib/src/
deflate.c 1164 uInt wmask = s->w_mask; local
    [all...]

Completed in 584 milliseconds