/third_party/mesa3d/src/mesa/main/ |
H A D | pbo.c | 147 const struct gl_pixelstore_attrib *unpack, in _mesa_map_pbo_source() 152 if (unpack->BufferObj) { in _mesa_map_pbo_source() 153 /* unpack from PBO */ in _mesa_map_pbo_source() 155 unpack->BufferObj->Size, in _mesa_map_pbo_source() 157 unpack->BufferObj, in _mesa_map_pbo_source() 165 /* unpack from normal memory */ in _mesa_map_pbo_source() 179 const struct gl_pixelstore_attrib *unpack, in _mesa_validate_pbo_source() 187 if (!_mesa_validate_pbo_access(dimensions, unpack, width, height, depth, in _mesa_validate_pbo_source() 189 if (unpack->BufferObj) { in _mesa_validate_pbo_source() 201 if (!unpack in _mesa_validate_pbo_source() 146 _mesa_map_pbo_source(struct gl_context *ctx, const struct gl_pixelstore_attrib *unpack, const GLvoid *src) _mesa_map_pbo_source() argument 178 _mesa_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, const GLvoid *ptr, const char *where) _mesa_validate_pbo_source() argument 221 _mesa_validate_pbo_source_compressed(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei imageSize, const GLvoid *pixels, const char *where) _mesa_validate_pbo_source_compressed() argument 258 _mesa_map_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, const GLvoid *ptr, const char *where) _mesa_map_validate_pbo_source() argument 281 _mesa_unmap_pbo_source(struct gl_context *ctx, const struct gl_pixelstore_attrib *unpack) _mesa_unmap_pbo_source() argument 336 _mesa_map_validate_pbo_dest(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, GLvoid *ptr, const char *where) _mesa_map_validate_pbo_dest() argument 395 _mesa_validate_pbo_teximage(struct gl_context *ctx, GLuint dimensions, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels, const struct gl_pixelstore_attrib *unpack, const char *funcName) _mesa_validate_pbo_teximage() argument 476 _mesa_unmap_teximage_pbo(struct gl_context *ctx, const struct gl_pixelstore_attrib *unpack) _mesa_unmap_teximage_pbo() argument [all...] |
H A D | pbo.h | 45 const struct gl_pixelstore_attrib *unpack, 51 const struct gl_pixelstore_attrib *unpack, 58 const struct gl_pixelstore_attrib *unpack); 68 const struct gl_pixelstore_attrib *unpack, 82 const struct gl_pixelstore_attrib *unpack, 94 const struct gl_pixelstore_attrib *unpack); 99 const struct gl_pixelstore_attrib *unpack, 107 const struct gl_pixelstore_attrib *unpack,
|
H A D | image.c | 392 * \param unpack bitmap unpacking state 400 const struct gl_pixelstore_attrib *unpack, in _mesa_expand_bitmap() 406 _mesa_image_address2d(unpack, bitmap, width, height, in _mesa_expand_bitmap() 408 const GLint srcStride = _mesa_image_row_stride(unpack, width, in _mesa_expand_bitmap() 416 if (unpack->LsbFirst) { in _mesa_expand_bitmap() 418 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); in _mesa_expand_bitmap() 440 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); in _mesa_expand_bitmap() 471 * and the unpack SkipPixels and SkipRows are adjusted so that the image 484 struct gl_pixelstore_attrib *unpack) in _mesa_clip_drawpixels() 488 if (unpack in _mesa_clip_drawpixels() 399 _mesa_expand_bitmap(GLsizei width, GLsizei height, const struct gl_pixelstore_attrib *unpack, const GLubyte *bitmap, GLubyte *destBuffer, GLint destStride, GLubyte onValue) _mesa_expand_bitmap() argument 481 _mesa_clip_drawpixels(const struct gl_context *ctx, GLint *destX, GLint *destY, GLsizei *width, GLsizei *height, struct gl_pixelstore_attrib *unpack) _mesa_clip_drawpixels() argument [all...] |
H A D | pack.c | 96 * current pixel unpack settings. 259 const struct gl_pixelstore_attrib *unpack ) in extract_uint_indexes() 280 if (unpack->LsbFirst) { in extract_uint_indexes() 281 GLubyte mask = 1 << (unpack->SkipPixels & 0x7); in extract_uint_indexes() 295 GLubyte mask = 128 >> (unpack->SkipPixels & 0x7); in extract_uint_indexes() 330 if (unpack->SwapBytes) { in extract_uint_indexes() 347 if (unpack->SwapBytes) { in extract_uint_indexes() 364 if (unpack->SwapBytes) { in extract_uint_indexes() 381 if (unpack->SwapBytes) { in extract_uint_indexes() 398 if (unpack in extract_uint_indexes() 1640 const struct util_format_unpack_description *unpack = _mesa_unpack_ubyte_rgba_row() local [all...] |
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | bmp_to_nv12.py | 25 file_size, = struct.unpack("I", bmp_file.read(4)) 30 offset, = struct.unpack("I", bmp_file.read(4)) 32 headersize, = struct.unpack("I", bmp_file.read(4)) 33 width, = struct.unpack("i", bmp_file.read(4)) 34 height, = struct.unpack("i", bmp_file.read(4)) 35 planes, = struct.unpack("H", bmp_file.read(2)) 36 bpp, = struct.unpack("H", bmp_file.read(2)) 37 compression, = struct.unpack("i", bmp_file.read(4)) 38 image_size, = struct.unpack("i", bmp_file.read(4)) 52 R, = struct.unpack(" [all...] |
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | AnyTest.java | 50 TestAllTypes result = container.getValue().unpack(TestAllTypes.class); in testAnyGeneratedApi() 56 container.getValue().unpack(TestAny.class); in testAnyGeneratedApi() 67 container.getValue().unpack(TestAllTypes.class); in testAnyGeneratedApi() 87 TestAllTypes result = container.getValue().unpack(TestAllTypes.class); in testCustomTypeUrls() 98 result = container.getValue().unpack(TestAllTypes.class); in testCustomTypeUrls() 109 result = container.getValue().unpack(TestAllTypes.class); in testCustomTypeUrls() 122 TestAllTypes result1 = container.getValue().unpack(TestAllTypes.class); in testCachedUnpackResult() 123 TestAllTypes result2 = container.getValue().unpack(TestAllTypes.class); in testCachedUnpackResult()
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_qpu_emit.c | 166 struct qinst *inst, uint64_t *unpack) in fixup_raddr_conflict() 190 /* If we had an unpack on this A-file source, we need to put in fixup_raddr_conflict() 194 *last_inst(block) |= *unpack; in fixup_raddr_conflict() 195 *unpack = 0; in fixup_raddr_conflict() 209 ASSERTED uint32_t unpack = QPU_GET_FIELD(*last_inst(block), QPU_UNPACK); in set_last_dst_pack() local 217 assert(!unpack || had_pm); in set_last_dst_pack() 220 assert(!unpack || !had_pm); in set_last_dst_pack() 296 uint64_t unpack = 0; in vc4_generate_code_block() local 308 assert(!unpack || in vc4_generate_code_block() 309 unpack in vc4_generate_code_block() 163 fixup_raddr_conflict(struct qblock *block, struct qpu_reg dst, struct qpu_reg *src0, struct qpu_reg *src1, struct qinst *inst, uint64_t *unpack) fixup_raddr_conflict() argument [all...] |
H A D | vc4_opt_copy_propagation.c | 101 uint8_t unpack; in try_copy_prop() local 103 /* Make sure that the meaning of the unpack in try_copy_prop() 112 /* There's only one unpack field, so make sure in try_copy_prop() 130 unpack = mov->src[0].pack; in try_copy_prop() 132 unpack = inst->src[i].pack; in try_copy_prop() 142 inst->src[i].pack = unpack; in try_copy_prop()
|
H A D | vc4_qpu_disasm.c | 96 /* The QPU unpack for A and R4 files can be described the same, it's just that 277 vc4_qpu_disasm_unpack(FILE *out, uint32_t unpack) in vc4_qpu_disasm_unpack() argument 279 if (unpack != QPU_UNPACK_NOP) in vc4_qpu_disasm_unpack() 280 fprintf(out, ".%s", DESC(qpu_unpack, unpack)); in vc4_qpu_disasm_unpack() 327 uint32_t unpack = QPU_GET_FIELD(inst, QPU_UNPACK); in print_alu_src() local 357 vc4_qpu_disasm_unpack(stderr, unpack); in print_alu_src()
|
/third_party/python/Lib/test/ |
H A D | test_struct.py | 56 self.assertRaises(struct.error, struct.unpack, 'd', b'flap') 58 self.assertRaises(struct.error, struct.unpack, 'iii', s) 59 self.assertRaises(struct.error, struct.unpack, 'i', s) 75 cp, bp, hp, ip, lp, fp, dp, tp = struct.unpack(format, s) 134 rev = struct.unpack(xfmt, res)[0] 200 unpack=struct.unpack, 226 retrieved = unpack(format, got)[0] 230 self.assertRaises((struct.error, TypeError), unpack, format, 337 assertStructError(struct.unpack, forma [all...] |
H A D | test_ioctl.py | 18 rpgrp = struct.unpack("i", r)[0] 36 rpgrp = struct.unpack("i", r)[0] 79 set_winsz_opcode_maybe_neg, = struct.unpack("i",
|
H A D | test_tcl.py | 629 def unpack(s): function 632 self.assertEqual(unpack(join([value])), value) 633 self.assertEqual(unpack(join([value, 0])), value) 634 self.assertEqual(unpack(unpack(join([[value]]))), value) 635 self.assertEqual(unpack(unpack(join([[value, 0]]))), value) 636 self.assertEqual(unpack(unpack(join([[value], 0]))), value) 637 self.assertEqual(unpack(unpac [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
H A D | TextureD3D.h | 130 const gl::PixelUnpackState &unpack, 139 const gl::PixelUnpackState &unpack, 145 const gl::PixelUnpackState &unpack, 152 const gl::PixelUnpackState &unpack, 156 const gl::PixelUnpackState &unpack, 159 const gl::PixelUnpackState &unpack, 239 const gl::PixelUnpackState &unpack, 247 const gl::PixelUnpackState &unpack, 255 const gl::PixelUnpackState &unpack, 262 const gl::PixelUnpackState &unpack, [all...] |
H A D | TextureD3D.cpp | 37 const gl::PixelUnpackState &unpack, in GetUnpackPointer() 45 // Do a CPU readback here, if we have an unpack buffer bound and the fast GPU path is not in GetUnpackPointer() 231 const gl::PixelUnpackState &unpack, in setImageImpl() 249 ANGLE_TRY(GetUnpackPointer(context, unpack, unpackBuffer, pixels, layerOffset, &pixelData)); in setImageImpl() 256 mTexStorage->setData(context, index, image, nullptr, type, unpack, pixelData)); in setImageImpl() 262 ANGLE_TRY(image->loadData(context, fullImageArea, unpack, type, pixelData, in setImageImpl() 277 const gl::PixelUnpackState &unpack, in subImage() 284 ANGLE_TRY(GetUnpackPointer(context, unpack, unpackBuffer, pixels, layerOffset, &pixelData)); in subImage() 293 return mTexStorage->setData(context, index, image, &area, type, unpack, pixelData); in subImage() 296 ANGLE_TRY(image->loadData(context, area, unpack, typ in subImage() 36 GetUnpackPointer(const gl::Context *context, const gl::PixelUnpackState &unpack, gl::Buffer *unpackBuffer, const uint8_t *pixels, ptrdiff_t layerOffset, const uint8_t **pointerOut) GetUnpackPointer() argument 228 setImageImpl(const gl::Context *context, const gl::ImageIndex &index, GLenum type, const gl::PixelUnpackState &unpack, gl::Buffer *unpackBuffer, const uint8_t *pixels, ptrdiff_t layerOffset) setImageImpl() argument 272 subImage(const gl::Context *context, const gl::ImageIndex &index, const gl::Box &area, GLenum format, GLenum type, const gl::PixelUnpackState &unpack, gl::Buffer *unpackBuffer, const uint8_t *pixels, ptrdiff_t layerOffset) subImage() argument 304 setCompressedImageImpl(const gl::Context *context, const gl::ImageIndex &index, const gl::PixelUnpackState &unpack, const uint8_t *pixels, ptrdiff_t layerOffset) setCompressedImageImpl() argument 336 subImageCompressed(const gl::Context *context, const gl::ImageIndex &index, const gl::Box &area, GLenum format, const gl::PixelUnpackState &unpack, const uint8_t *pixels, ptrdiff_t layerOffset) subImageCompressed() argument 361 isFastUnpackable(const gl::Buffer *unpackBuffer, const gl::PixelUnpackState &unpack, GLenum sizedInternalFormat) isFastUnpackable() argument 370 fastUnpackPixels(const gl::Context *context, const gl::PixelUnpackState &unpack, gl::Buffer *unpackBuffer, const uint8_t *pixels, const gl::Box &destArea, GLenum sizedInternalFormat, GLenum type, RenderTargetD3D *destRenderTarget) fastUnpackPixels() argument 994 setSubImage(const gl::Context *context, const gl::ImageIndex &index, const gl::Box &area, GLenum format, GLenum type, const gl::PixelUnpackState &unpack, gl::Buffer *unpackBuffer, const uint8_t *pixels) setSubImage() argument 1026 setCompressedImage(const gl::Context *context, const gl::ImageIndex &index, GLenum internalFormat, const gl::Extents &size, const gl::PixelUnpackState &unpack, size_t imageSize, const uint8_t *pixels) setCompressedImage() argument 1043 setCompressedSubImage(const gl::Context *context, const gl::ImageIndex &index, const gl::Box &area, GLenum format, const gl::PixelUnpackState &unpack, size_t imageSize, const uint8_t *pixels) setCompressedSubImage() argument [all...] |
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_cb_drawpixels.c | 487 const struct gl_pixelstore_attrib *unpack, in search_drawpixels_cache() 494 if ((unpack->RowLength != 0 && unpack->RowLength != width) || in search_drawpixels_cache() 495 unpack->SkipPixels != 0 || in search_drawpixels_cache() 496 unpack->SkipRows != 0 || in search_drawpixels_cache() 497 unpack->SwapBytes || in search_drawpixels_cache() 498 unpack->BufferObj) { in search_drawpixels_cache() 570 const struct gl_pixelstore_attrib *unpack, in cache_drawpixels_image() 574 if ((unpack->RowLength == 0 || unpack in cache_drawpixels_image() 484 search_drawpixels_cache(struct st_context *st, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const void *pixels) search_drawpixels_cache() argument 567 cache_drawpixels_image(struct st_context *st, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const void *pixels, struct pipe_resource *pt) cache_drawpixels_image() argument 608 make_texture(struct st_context *st, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const void *pixels) make_texture() argument 958 draw_stencil_pixels(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const void *pixels) draw_stencil_pixels() argument 1192 clamp_size(struct st_context *st, GLsizei *width, GLsizei *height, struct gl_pixelstore_attrib *unpack) clamp_size() argument 1272 st_DrawPixels(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const void *pixels) st_DrawPixels() argument 1525 struct gl_pixelstore_attrib pack, unpack; blit_copy_pixels() local [all...] |
H A D | st_cb_bitmap.c | 105 const struct gl_pixelstore_attrib *unpack, in unpack_bitmap() 111 _mesa_expand_bitmap(width, height, unpack, bitmap, in unpack_bitmap() 121 const struct gl_pixelstore_attrib *unpack, in make_bitmap_texture() 131 bitmap = _mesa_map_pbo_source(ctx, unpack, bitmap); in make_bitmap_texture() 143 _mesa_unmap_pbo_source(ctx, unpack); in make_bitmap_texture() 153 unpack_bitmap(st, 0, 0, width, height, unpack, bitmap, in make_bitmap_texture() 156 _mesa_unmap_pbo_source(ctx, unpack); in make_bitmap_texture() 474 const struct gl_pixelstore_attrib *unpack, in accum_bitmap() 528 bitmap = _mesa_map_pbo_source(ctx, unpack, bitmap); in accum_bitmap() 533 unpack_bitmap(st, px, py, width, height, unpack, bitma in accum_bitmap() 103 unpack_bitmap(struct st_context *st, GLint px, GLint py, GLsizei width, GLsizei height, const struct gl_pixelstore_attrib *unpack, const GLubyte *bitmap, ubyte *destBuffer, uint destStride) unpack_bitmap() argument 120 make_bitmap_texture(struct gl_context *ctx, GLsizei width, GLsizei height, const struct gl_pixelstore_attrib *unpack, const GLubyte *bitmap) make_bitmap_texture() argument 472 accum_bitmap(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, const struct gl_pixelstore_attrib *unpack, const GLubyte *bitmap ) accum_bitmap() argument 600 st_Bitmap(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, const struct gl_pixelstore_attrib *unpack, const GLubyte *bitmap) st_Bitmap() argument [all...] |
/third_party/littlefs/scripts/ |
H A D | readtree.py | 77 tail = struct.unpack('<II', mdir.tail.data) 94 nblocks = struct.unpack('<II', dirstruct.data) 106 struct.unpack('<HH', superblock[1].data[0:4].ljust(4, b'\xff')))) 113 tag = Tag(struct.unpack('<I', gstate[0:4].ljust(4, b'\xff'))[0]) 114 blocks = struct.unpack('<II', gstate[4:4+8].ljust(8, b'\xff')) 130 ' -> {%#x, %#x}' % struct.unpack('<II', mdir.tail.data)
|
/third_party/python/Lib/zoneinfo/ |
H A D | _common.py | 61 trans_list_utc = struct.unpack( 64 trans_idx = struct.unpack(f">{timecnt}B", fobj.read(timecnt)) 72 *(struct.unpack(">lbb", fobj.read(6)) for i in range(typecnt)) 158 args = args + struct.unpack(">6l", stream.read(24))
|
/third_party/skia/experimental/tools/ |
H A D | mskp_parser.py | 30 version, page_count = struct.unpack('II', src.read(8))[:2] 41 offset, size_x, size_y =struct.unpack('Qff', src.read(16)) 45 size_x, size_y =struct.unpack('ff', src.read(8))
|
/third_party/mesa3d/src/util/format/ |
H A D | u_format.c | 370 const struct util_format_unpack_description *unpack = in util_format_unpack_rgba_rect() local 374 if (unpack->unpack_rgba_rect) { in util_format_unpack_rgba_rect() 375 unpack->unpack_rgba_rect(dst, dst_stride, src, src_stride, w, h); in util_format_unpack_rgba_rect() 378 unpack->unpack_rgba(dst, src, w); in util_format_unpack_rgba_rect() 391 const struct util_format_unpack_description *unpack = in util_format_unpack_rgba_8unorm_rect() local 395 if (unpack->unpack_rgba_8unorm_rect) { in util_format_unpack_rgba_8unorm_rect() 396 unpack->unpack_rgba_8unorm_rect(dst, dst_stride, src, src_stride, w, h); in util_format_unpack_rgba_8unorm_rect() 399 unpack->unpack_rgba_8unorm(dst, src, w); in util_format_unpack_rgba_8unorm_rect() 653 const struct util_format_unpack_description *unpack = in util_format_translate() local 709 if (unpack in util_format_translate() 1188 const struct util_format_unpack_description *unpack = util_format_unpack_description_neon(format); util_format_unpack_table_init() local [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | PixelTransfer11.cpp | 9 // Used to implement pixel transfers from unpack and to pack buffers. 123 const gl::PixelUnpackState &unpack, in setBufferToTextureCopyParams() 133 unsigned int alignmentBytes = static_cast<unsigned int>(unpack.alignment); in setBufferToTextureCopyParams() 139 static_cast<unsigned int>((unpack.rowLength > 0) ? unpack.rowLength : destArea.width); in setBufferToTextureCopyParams() 152 const gl::PixelUnpackState &unpack, in copyBufferToTexture() 195 setBufferToTextureCopyParams(destArea, destSize, sourceglFormatInfo.sizedInternalFormat, unpack, in copyBufferToTexture() 120 setBufferToTextureCopyParams(const gl::Box &destArea, const gl::Extents &destSize, GLenum internalFormat, const gl::PixelUnpackState &unpack, unsigned int offset, CopyShaderParams *parametersOut) setBufferToTextureCopyParams() argument 151 copyBufferToTexture(const gl::Context *context, const gl::PixelUnpackState &unpack, gl::Buffer *unpackBuffer, unsigned int offset, RenderTargetD3D *destRenderTarget, GLenum destinationFormat, GLenum sourcePixelsType, const gl::Box &destArea) copyBufferToTexture() argument
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
H A D | TextureGL.cpp | 166 const gl::PixelUnpackState &unpack, in setImage() 176 unpack.rowLength != 0 && unpack.rowLength < size.width) in setImage() 178 // The rows overlap in unpack memory. Upload the texture row by row to work around in setImage() 189 return setSubImageRowByRowWorkaround(context, target, level, area, format, type, unpack, in setImage() 197 GetImplAs<ContextGL>(context), size, unpack, unpackBuffer, format, type, in setImage() 213 return setSubImagePaddingWorkaround(context, target, level, area, format, type, unpack, in setImage() 314 const gl::PixelUnpackState &unpack, in setSubImage() 335 unpack.rowLength != 0 && unpack in setSubImage() 160 setImage(const gl::Context *context, const gl::ImageIndex &index, GLenum internalFormat, const gl::Extents &size, GLenum format, GLenum type, const gl::PixelUnpackState &unpack, gl::Buffer *unpackBuffer, const uint8_t *pixels) setImage() argument 309 setSubImage(const gl::Context *context, const gl::ImageIndex &index, const gl::Box &area, GLenum format, GLenum type, const gl::PixelUnpackState &unpack, gl::Buffer *unpackBuffer, const uint8_t *pixels) setSubImage() argument 387 setSubImageRowByRowWorkaround(const gl::Context *context, gl::TextureTarget target, size_t level, const gl::Box &area, GLenum format, GLenum type, const gl::PixelUnpackState &unpack, const gl::Buffer *unpackBuffer, size_t maxBytesUploadedPerChunk, const uint8_t *pixels) setSubImageRowByRowWorkaround() argument 470 setSubImagePaddingWorkaround(const gl::Context *context, gl::TextureTarget target, size_t level, const gl::Box &area, GLenum format, GLenum type, const gl::PixelUnpackState &unpack, const gl::Buffer *unpackBuffer, const uint8_t *pixels) setSubImagePaddingWorkaround() argument 562 setCompressedImage(const gl::Context *context, const gl::ImageIndex &index, GLenum internalFormat, const gl::Extents &size, const gl::PixelUnpackState &unpack, size_t imageSize, const uint8_t *pixels) setCompressedImage() argument 609 setCompressedSubImage(const gl::Context *context, const gl::ImageIndex &index, const gl::Box &area, GLenum format, const gl::PixelUnpackState &unpack, size_t imageSize, const uint8_t *pixels) setCompressedSubImage() argument 699 gl::PixelUnpackState unpack; copyImage() local [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/ |
H A D | TextureNULL.h | 30 const gl::PixelUnpackState &unpack, 38 const gl::PixelUnpackState &unpack, 46 const gl::PixelUnpackState &unpack, 53 const gl::PixelUnpackState &unpack,
|
/third_party/python/Lib/ |
H A D | xdrlib.py | 164 return struct.unpack('>L', data)[0] 172 return struct.unpack('>l', data)[0] 196 return struct.unpack('>f', data)[0] 204 return struct.unpack('>d', data)[0]
|
/third_party/mesa3d/src/broadcom/compiler/ |
H A D | vir_dump.c | 261 enum v3d_qpu_input_unpack unpack[2]; in vir_dump_alu() local 273 unpack[0] = instr->alu.add.a_unpack; in vir_dump_alu() 274 unpack[1] = instr->alu.add.b_unpack; in vir_dump_alu() 285 unpack[0] = instr->alu.mul.a_unpack; in vir_dump_alu() 286 unpack[1] = instr->alu.mul.b_unpack; in vir_dump_alu() 292 fprintf(stderr, "%s", v3d_qpu_unpack_name(unpack[i])); in vir_dump_alu()
|