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

1 2 3 4 5 6 7 8 91011>>

  /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...]
intel_pixel.h 53 const struct gl_pixelstore_attrib *unpack,
64 const struct gl_pixelstore_attrib *unpack,
intel_tex_image.c 135 const struct gl_pixelstore_attrib *unpack,
140 struct intel_buffer_object *pbo = intel_buffer_object(unpack->BufferObj);
145 if (!_mesa_is_bufferobj(unpack->BufferObj))
151 unpack->SkipPixels || unpack->SkipRows) {
175 if (unpack->RowLength > 0)
176 src_stride = unpack->RowLength;
207 const struct gl_pixelstore_attrib *unpack)
216 try_pbo_upload(ctx, texImage, unpack, format, type, pixels)) {
225 format, type, pixels, unpack);
    [all...]
  /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/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/gdb/darwin-x86/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)
test_struct.py 68 self.assertRaises(struct.error, struct.unpack, 'd', 'flap')
70 self.assertRaises(struct.error, struct.unpack, 'iii', s)
71 self.assertRaises(struct.error, struct.unpack, 'i', s)
87 cp, bp, hp, ip, lp, fp, dp, tp = struct.unpack(format, s)
146 rev = struct.unpack(xfmt, res)[0]
214 unpack=struct.unpack,
238 # Unpack work?
239 retrieved = unpack(format, got)[0]
243 self.assertRaises((struct.error, TypeError), unpack, format
    [all...]
  /prebuilts/gdb/linux-x86/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)
test_struct.py 68 self.assertRaises(struct.error, struct.unpack, 'd', 'flap')
70 self.assertRaises(struct.error, struct.unpack, 'iii', s)
71 self.assertRaises(struct.error, struct.unpack, 'i', s)
87 cp, bp, hp, ip, lp, fp, dp, tp = struct.unpack(format, s)
146 rev = struct.unpack(xfmt, res)[0]
214 unpack=struct.unpack,
238 # Unpack work?
239 retrieved = unpack(format, got)[0]
243 self.assertRaises((struct.error, TypeError), unpack, format
    [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/gdb/darwin-x86/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...]
  /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/vboot_reference/tests/futility/
test_main.sh 37 ./vbutil_key --unpack ${DEVKEYS}/installer_kernel_data_key.vbpubk | grep ${SHA}
39 ./vbutil_keyblock --unpack ${DEVKEYS}/installer_kernel.keyblock | grep ${SHA}
45 ./muggle vbutil_key --unpack ${DEVKEYS}/installer_kernel_data_key.vbpubk \
48 ./buggle vbutil_keyblock --unpack ${DEVKEYS}/installer_kernel.keyblock \
  /external/libvorbis/lib/
backends.h 32 vorbis_info_floor *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon16992
90 vorbis_info_residue *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon16995
125 vorbis_info_mapping *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon16996
  /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...]
  /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_bin)
145 header = struct.unpack("<12B", header_bin)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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/autotest/client/site_tests/hardware_SAT/
hardware_SAT.py 19 mchbar = struct.unpack('=I', fd.read(4))[0]
26 mad_chnl = struct.unpack('=I', fd.read(4))[0]
28 channel_hash = struct.unpack('=I', fd.read(4))[0]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testdfa.py 43 """DFA.unpack()"""
46 antlr3.DFA.unpack(
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/
Pack200Streams.java 30 * Unpack a stream in Pack200 format into a stream in JAR/ZIP format.
38 public static InputStream unpack(final InputStream input) method in class:Pack200Streams
42 Pack200.newUnpacker().unpack(new NoCloseInput(input), jar);
  /external/fonttools/Lib/fontTools/misc/
sstruct.py 32 unpack(fmt, data, object=None)
41 Convenience function. Same as unpack, except data may be longer
78 def unpack(fmt, data, obj=None): function
87 elements = struct.unpack(formatstring, data)
104 return unpack(fmt, data[:length], obj), data[length:]
205 print(unpack(fmt, data))
207 unpack(fmt, data, i2)

Completed in 751 milliseconds

1 2 3 4 5 6 7 8 91011>>