HomeSort by relevance Sort by last modified time
    Searched refs:unpack (Results 1 - 25 of 328) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_draw.c 47 const struct gl_pixelstore_attrib *unpack,
52 unpack, pixels);
57 unpack, pixels);
intel_pixel_bitmap.c 66 const struct gl_pixelstore_attrib *unpack,
71 if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
78 buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size,
80 unpack->BufferObj);
103 const struct gl_pixelstore_attrib *unpack,
111 GLuint src_offset = (x + unpack->SkipPixels) & 0x7;
112 GLuint mask = unpack->LsbFirst ? 0 : 7;
120 __FUNCTION__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
136 const GLubyte *rowsrc = _mesa_image_address2d(unpack, bitmap,
175 const struct gl_pixelstore_attrib *unpack,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_draw.c 47 const struct gl_pixelstore_attrib *unpack,
52 unpack, pixels);
57 unpack, pixels);
intel_pixel_bitmap.c 66 const struct gl_pixelstore_attrib *unpack,
71 if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
78 buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size,
80 unpack->BufferObj);
103 const struct gl_pixelstore_attrib *unpack,
111 GLuint src_offset = (x + unpack->SkipPixels) & 0x7;
112 GLuint mask = unpack->LsbFirst ? 0 : 7;
120 __FUNCTION__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
136 const GLubyte *rowsrc = _mesa_image_address2d(unpack, bitmap,
175 const struct gl_pixelstore_attrib *unpack,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pbo.c 141 const struct gl_pixelstore_attrib *unpack,
146 if (_mesa_is_bufferobj(unpack->BufferObj)) {
147 /* unpack from PBO */
149 unpack->BufferObj->Size,
151 unpack->BufferObj);
158 /* unpack from normal memory */
177 const struct gl_pixelstore_attrib *unpack,
185 if (!_mesa_validate_pbo_access(dimensions, unpack, width, height, depth,
187 if (_mesa_is_bufferobj(unpack->BufferObj)) {
198 if (!_mesa_is_bufferobj(unpack->BufferObj))
    [all...]
pbo.h 42 const struct gl_pixelstore_attrib *unpack,
48 const struct gl_pixelstore_attrib *unpack,
55 const struct gl_pixelstore_attrib *unpack);
65 const struct gl_pixelstore_attrib *unpack,
79 const struct gl_pixelstore_attrib *unpack,
90 const struct gl_pixelstore_attrib *unpack);
  /external/mesa3d/src/mesa/main/
pbo.c 141 const struct gl_pixelstore_attrib *unpack,
146 if (_mesa_is_bufferobj(unpack->BufferObj)) {
147 /* unpack from PBO */
149 unpack->BufferObj->Size,
151 unpack->BufferObj);
158 /* unpack from normal memory */
177 const struct gl_pixelstore_attrib *unpack,
185 if (!_mesa_validate_pbo_access(dimensions, unpack, width, height, depth,
187 if (_mesa_is_bufferobj(unpack->BufferObj)) {
198 if (!_mesa_is_bufferobj(unpack->BufferObj))
    [all...]
pbo.h 42 const struct gl_pixelstore_attrib *unpack,
48 const struct gl_pixelstore_attrib *unpack,
55 const struct gl_pixelstore_attrib *unpack);
65 const struct gl_pixelstore_attrib *unpack,
79 const struct gl_pixelstore_attrib *unpack,
90 const struct gl_pixelstore_attrib *unpack);
  /external/chromium_org/third_party/brotli/src/
woff2_header_dump.py 13 header_values = struct.unpack('>IIIHHIHHIIIII', header[:44])
30 entry = struct.unpack('>IIIII', header[44+20*i:44+20*(i+1)])
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_bitmap.c 51 const struct gl_pixelstore_attrib *unpack,
63 bitmap = (const GLubyte *) _mesa_map_pbo_source(ctx, unpack, bitmap);
78 const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
81 if (unpack->LsbFirst) {
83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7);
105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
137 _mesa_unmap_pbo_source(ctx, unpack);
150 const struct gl_pixelstore_attrib *unpack,
176 const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
179 if (unpack->LsbFirst)
    [all...]
s_drawpix.c 55 const struct gl_pixelstore_attrib *unpack,
59 _mesa_image_address2d(unpack, pixels, width,
61 const GLint srcRowStride = _mesa_image_row_stride(unpack, width,
102 const struct gl_pixelstore_attrib *unpack,
106 _mesa_image_address2d(unpack, pixels, width,
109 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE);
151 const struct gl_pixelstore_attrib *unpack,
155 _mesa_image_address2d(unpack, pixels, width,
158 _mesa_image_row_stride(unpack, width, format, type);
200 struct gl_pixelstore_attrib unpack; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_bitmap.c 51 const struct gl_pixelstore_attrib *unpack,
63 bitmap = (const GLubyte *) _mesa_map_pbo_source(ctx, unpack, bitmap);
78 const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
81 if (unpack->LsbFirst) {
83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7);
105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
137 _mesa_unmap_pbo_source(ctx, unpack);
150 const struct gl_pixelstore_attrib *unpack,
176 const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
179 if (unpack->LsbFirst)
    [all...]
s_drawpix.c 55 const struct gl_pixelstore_attrib *unpack,
59 _mesa_image_address2d(unpack, pixels, width,
61 const GLint srcRowStride = _mesa_image_row_stride(unpack, width,
102 const struct gl_pixelstore_attrib *unpack,
106 _mesa_image_address2d(unpack, pixels, width,
109 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE);
151 const struct gl_pixelstore_attrib *unpack,
155 _mesa_image_address2d(unpack, pixels, width,
158 _mesa_image_row_stride(unpack, width, format, type);
200 struct gl_pixelstore_attrib unpack; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_aepack.py 31 unpacked = aepack.unpack(packed)
37 unpacked = aepack.unpack(packed)
43 unpacked = aepack.unpack(packed)
49 unpacked = aepack.unpack(packed)
55 unpacked = aepack.unpack(packed)
68 unpacked = aepack.unpack(packed)
80 unpacked = aepack.unpack(packed)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_aepack.py 31 unpacked = aepack.unpack(packed)
37 unpacked = aepack.unpack(packed)
43 unpacked = aepack.unpack(packed)
49 unpacked = aepack.unpack(packed)
55 unpacked = aepack.unpack(packed)
68 unpacked = aepack.unpack(packed)
80 unpacked = aepack.unpack(packed)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 5 unpack(desc) does the reverse
131 def unpack(desc, formodulename=""): function
132 """Unpack an AE descriptor to a python object"""
143 l.append(unpack(item, formodulename))
149 d[keyword] = unpack(item, formodulename)
153 return mkaetext(unpack(record, formodulename))
158 return struct.unpack('b', desc.data)[0]
174 return struct.unpack('d', data)[0]
181 return mkinsertionloc(unpack(record, formodulename))
184 script, language = struct.unpack('hh', desc.data[:4]
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
PixelTransfer11.h 9 // Used to implement pixel unpack and pixel pack buffers in ES3.
37 // unpack: the source buffer is stored in the unpack state, and buffer strides
38 // offset: the start of the data within the unpack buffer
42 bool copyBufferToTexture(const gl::PixelUnpackState &unpack, unsigned int offset, RenderTarget *destRenderTarget,
60 const gl::PixelUnpackState &unpack, unsigned int offset, CopyShaderParams *parametersOut);
  /external/chromium_org/tools/gyp/test/mac/
gyptest-loadable-module.py 30 if struct.unpack('4I', open(binary, 'rb').read(16))[3] != MH_BUNDLE:
  /external/chromium_org/native_client_sdk/src/tools/lib/
elf.py 35 header = struct.unpack(elf_header_format, header)
76 header = struct.unpack(elf_header_format, header)
96 phdr_type = struct.unpack(elf_phdr_format, p_header[:4])[0]
  /external/libvorbis/lib/
backends.h 32 vorbis_info_floor *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon28537
90 vorbis_info_residue *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon28540
125 vorbis_info_mapping *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon28541
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 912 EOT = unpack( 1, -1, 1, 11, 14, -1, 1, 11, 1, 20, 1, 11, 2, -1, 1,
914 EOF = unpack( 24, -1 )
915 MIN = unpack( 1, 9, 1, 114, 1, 58, 13, -1, 1, 111, 1, 61, 1, 117,
917 MAX = unpack( 1, 122, 1, 114, 1, 58, 13, -1, 1, 111, 1, 61, 1, 117,
919 ACCEPT = unpack( 3, -1, 1, 3, 1, 5, 1, 6, 1, 7, 1, 8, 1, 9, 1, 10,
922 SPECIAL = unpack( 24, -1 )
924 unpack( 2, 15, 1, -1, 2, 15, 18, -1, 1, 15, 1, -1, 1, 13, 1, 14,
928 unpack( 1, 16 ),
929 unpack( 1, 17 ),
930 unpack( ),
    [all...]
  /external/qemu/distrib/libsparse/src/
simg_dump.py 56 header = struct.unpack("<I4H4I", header_bin)
98 header = struct.unpack("<2H2I", header_bin)
123 fill = struct.unpack("<I", fill_bin)
138 crc = struct.unpack("<I", crc)
145 header = struct.unpack("<12B", header_bin)
  /system/core/libsparse/
simg_dump.py 56 header = struct.unpack("<I4H4I", header_bin)
98 header = struct.unpack("<2H2I", header_bin)
123 fill = struct.unpack("<I", fill_bin)
138 crc = struct.unpack("<I", crc)
145 header = struct.unpack("<12B", header_bin)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ppc/
encodemb_altivec.asm 46 vmrghb v3, v0, v1 ;# unpack high src to short
47 vmrghb v4, v0, v2 ;# unpack high pred to short
60 vmrghb v3, v0, v1 ;# unpack high src to short
61 vmrglb v4, v0, v2 ;# unpack high pred to short
83 vmrghb v3, v0, v1 ;# unpack high src to short
84 vmrghb v4, v0, v2 ;# unpack high pred to short
97 vmrghb v3, v0, v1 ;# unpack high src to short
98 vmrglb v4, v0, v2 ;# unpack high pred to short
133 vmrghb v3, v0, v1 ;# unpack high src to short
134 vmrghb v4, v0, v2 ;# unpack high pred to shor
    [all...]
  /external/libvpx/libvpx/vp8/encoder/ppc/
encodemb_altivec.asm 46 vmrghb v3, v0, v1 ;# unpack high src to short
47 vmrghb v4, v0, v2 ;# unpack high pred to short
60 vmrghb v3, v0, v1 ;# unpack high src to short
61 vmrglb v4, v0, v2 ;# unpack high pred to short
83 vmrghb v3, v0, v1 ;# unpack high src to short
84 vmrghb v4, v0, v2 ;# unpack high pred to short
97 vmrghb v3, v0, v1 ;# unpack high src to short
98 vmrglb v4, v0, v2 ;# unpack high pred to short
133 vmrghb v3, v0, v1 ;# unpack high src to short
134 vmrghb v4, v0, v2 ;# unpack high pred to shor
    [all...]

Completed in 950 milliseconds

1 2 3 4 5 6 7 8 91011>>