Home
last modified time | relevance | path

Searched refs:pBits (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DImage9.cpp79 const uint8_t *sourceData = static_cast<const uint8_t *>(sourceLocked.pBits); in GenerateMip()
80 uint8_t *destData = static_cast<uint8_t *>(destLocked.pBits); in GenerateMip()
130 ASSERT(sourceLock.pBits && destLock.pBits); in CopyLockableSurfaces()
144 memcpy((char *)destLock.pBits + destLock.Pitch * i, in CopyLockableSurfaces()
145 (char *)sourceLock.pBits + sourceLock.Pitch * i, bytes); in CopyLockableSurfaces()
199 const uint8_t *sourceData = static_cast<const uint8_t *>(sourceLocked.pBits) + in CopyImage()
202 uint8_t *destData = static_cast<uint8_t *>(destLocked.pBits) + in CopyImage()
300 mWidth, mHeight, 1, static_cast<uint8_t *>(lockedRect.pBits), lockedRect.Pitch, 0); in createSurface()
507 static_cast<uint8_t *>(locked.pBits), locked.Pitch, 0); in loadData()
546 static_cast<uint8_t *>(locked.pBits), locked.Pitch, 0); in loadCompressedData()
[all …]
DFramebuffer9.cpp192 uint8_t *source = static_cast<uint8_t *>(lock.pBits); in readPixelsImpl()
/third_party/icu/icu4c/source/tools/toolutil/
Dpkg_genc.cpp747 getArchitecture(uint16_t *pCPU, uint16_t *pBits, UBool *pIsBigEndian, const char *optMatchArch) { in getArchitecture() argument
777 *pBits=32; in getArchitecture()
798 *pBits = 64; // Doesn't seem to be used for anything interesting though? in getArchitecture()
800 *pBits = 32; in getArchitecture()
833 …*pBits= buffer.header32.e_ident[EI_CLASS]==ELFCLASS32 ? 32 : 64; /* only 32 or 64: see check above… in getArchitecture()
835 if(*pBits!=32 && *pBits!=64) { in getArchitecture()
840 if(*pBits!=32) { in getArchitecture()
866 *pBits= *pCPU==IMAGE_FILE_MACHINE_I386 ? 32 : 64; in getArchitecture()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dpkg_genc.cpp747 getArchitecture(uint16_t *pCPU, uint16_t *pBits, UBool *pIsBigEndian, const char *optMatchArch) { in getArchitecture() argument
777 *pBits=32; in getArchitecture()
798 *pBits = 64; // Doesn't seem to be used for anything interesting though? in getArchitecture()
800 *pBits = 32; in getArchitecture()
833 …*pBits= buffer.header32.e_ident[EI_CLASS]==ELFCLASS32 ? 32 : 64; /* only 32 or 64: see check above… in getArchitecture()
835 if(*pBits!=32 && *pBits!=64) { in getArchitecture()
840 if(*pBits!=32) { in getArchitecture()
866 *pBits= *pCPU==IMAGE_FILE_MACHINE_I386 ? 32 : 64; in getArchitecture()
/third_party/node/deps/icu-small/source/tools/toolutil/
Dpkg_genc.cpp802 getArchitecture(uint16_t *pCPU, uint16_t *pBits, UBool *pIsBigEndian, const char *optMatchArch) { in getArchitecture() argument
832 *pBits=32; in getArchitecture()
853 *pBits = 64; // Doesn't seem to be used for anything interesting though? in getArchitecture()
855 *pBits = 32; in getArchitecture()
888 …*pBits= buffer.header32.e_ident[EI_CLASS]==ELFCLASS32 ? 32 : 64; /* only 32 or 64: see check above… in getArchitecture()
890 if(*pBits!=32 && *pBits!=64) { in getArchitecture()
895 if(*pBits!=32) { in getArchitecture()
921 *pBits= *pCPU==IMAGE_FILE_MACHINE_I386 ? 32 : 64; in getArchitecture()
/third_party/mesa3d/src/glx/windows/
Dwindows_drawable.c120 void *pBits; in windows_create_drawable() local
142 DIB_RGB_COLORS, &pBits, d->hSection, in windows_create_drawable()
/third_party/mesa3d/src/gallium/frontends/nine/
Dsurface9.c449 pLockedRect->pBits = NULL; in NineSurface9_LockRect()
510 pLockedRect->pBits = data + box.y * This->desc.Width + box.x; in NineSurface9_LockRect()
513 pLockedRect->pBits = data + in NineSurface9_LockRect()
519 DBG("returning system memory %p\n", pLockedRect->pBits); in NineSurface9_LockRect()
532 pLockedRect->pBits = pipe->texture_map(pipe, resource, in NineSurface9_LockRect()
Dvolume9.c273 pLockedVolume->pBits = NULL; in NineVolume9_LockBox()
334 pLockedVolume->pBits = data + in NineVolume9_LockBox()
345 pLockedVolume->pBits = in NineVolume9_LockBox()
Ddevice9.c858 lock.pBits, lock.Pitch, in NineDevice9_SetCursorProperties()
862 void *data = lock.pBits; in NineDevice9_SetCursorProperties()
867 lock.pBits, lock.Pitch, in NineDevice9_SetCursorProperties()
1936 util_fill_rect(lock.pBits, surf->base.info.format,lock.Pitch, in NineDevice9_ColorFill()
/third_party/openh264/codec/decoder/core/src/
Dau_parser.cpp67 uint8_t* pBits = (uint8_t*)kpBuf; in DetectStartCodePrefix() local
71 while ((iIdx < iBufSize) && (! (*pBits))) { in DetectStartCodePrefix()
72 ++ pBits; in DetectStartCodePrefix()
78 ++ pBits; in DetectStartCodePrefix()
80 if ((iIdx >= 3) && ((* (pBits - 1)) == 0x1)) { in DetectStartCodePrefix()
81 *pOffset = (int32_t) (((uintptr_t)pBits) - ((uintptr_t)kpBuf)); in DetectStartCodePrefix()
82 return pBits; in DetectStartCodePrefix()
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_dx9.cpp337 …memcpy((unsigned char*)tex_locked_rect.pBits + (size_t)tex_locked_rect.Pitch * y, pixels + (size_t… in ImGui_ImplDX9_CreateFontsTexture()
/third_party/mesa3d/include/D3D9/
Dd3d9types.h1637 void* pBits; member
1642 void* pBits; member
/third_party/ffmpeg/libavutil/
Dhwcontext_dxva2.c323 (uint8_t*)LockedRect.pBits, dst->linesize); in dxva2_map_frame()
/third_party/openh264/codec/console/dec/src/
Dd3d9_utils.cpp442 unsigned char* pOutY = (unsigned char*)sD3DLockedRect.pBits; in Dump2Surface()