HomeSort by relevance Sort by last modified time
    Searched full:unpack (Results 201 - 225 of 702) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/openssl/crypto/des/
INSTALL 63 When building for glibc, ignore all of the above and just unpack into
  /external/oprofile/events/i386/core/
unit_masks 49 0x08 MMX unpack operations
  /external/proguard/src/proguard/wtk/
ProGuardObfuscator.java 88 // The preverify tool seems to unpack the resulting classes,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 401 filecrc = struct.unpack('>h', self.ifp.read(2))[0] & 0xffff
418 flags = struct.unpack('>h', rest[9:11])[0]
419 self.dlen = struct.unpack('>l', rest[11:15])[0]
420 self.rlen = struct.unpack('>l', rest[15:19])[0]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 401 filecrc = struct.unpack('>h', self.ifp.read(2))[0] & 0xffff
418 flags = struct.unpack('>h', rest[9:11])[0]
419 self.dlen = struct.unpack('>l', rest[11:15])[0]
420 self.rlen = struct.unpack('>l', rest[15:19])[0]
  /device/asus/deb/
releasetools.py 126 magic, num_images, start_offset, bootloader_size = struct.unpack(
133 imgs = [struct.unpack(img_info_fmt,
  /device/asus/flo/
releasetools.py 151 magic, num_images, start_offset, bootloader_size = struct.unpack(
158 imgs = [struct.unpack(img_info_fmt,
  /device/lge/mako/
releasetools.py 126 magic, num_images, start_offset, bootloader_size = struct.unpack(
133 imgs = [struct.unpack(img_info_fmt,
  /external/chromium/chrome/browser/
utility_process_host.h 122 // Start a process to unpack the extension at the given path. The process
128 // Start a process to unpack and parse a web resource from the given JSON
  /external/chromium/chrome/browser/web_resource/
web_resource_service.cc 111 // This class coordinates a web resource unpack and parse task which is run in
247 Unpack(parsed_json);
  /external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker.h 158 // Set |temp_dir_| as a temporary directory to unpack the extension in.
201 // The path to the CRX to unpack.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo.py 107 _, _, _, _, _, left, _, right, _, _, _ = struct.unpack("hhhhHhhhhhh", console_screen_buffer_info.raw)
117 _, columns, _, _ = struct.unpack('HHHH', packed)
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
swrast.h 131 const struct gl_pixelstore_attrib *unpack,
151 const struct gl_pixelstore_attrib *unpack,
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
decoder.py 259 format: The format string to pass to struct.unpack().
263 local_unpack = struct.unpack
282 This code works around a bug in struct.unpack for non-finite 32-bit
286 local_unpack = struct.unpack
295 # In Python 2.4, struct.unpack will convert it to a finite 64-bit value.
318 This code works around a bug in struct.unpack for not-a-number.
321 local_unpack = struct.unpack
330 # bit set, it's not a number. In Python 2.4, struct.unpack will treat it
  /external/mesa3d/src/mesa/swrast/
swrast.h 131 const struct gl_pixelstore_attrib *unpack,
151 const struct gl_pixelstore_attrib *unpack,
  /external/oprofile/events/i386/atom/
unit_masks 64 0x08 s SIMD unpack micro-ops executed
65 0x88 ar SIMD unpack micro-ops retired
  /frameworks/base/docs/html/sdk/installing/
index.jd 45 <li>Unpack the ZIP file you've downloaded. By default, it's unpacked
69 <li>Unpack the {@code .tgz} file you've downloaded. By default, the SDK files are unpacked
  /frameworks/base/libs/hwui/
Caches.h 198 * Binds the specified buffer as the current GL unpack pixel buffer.
203 * Resets the current unpack pixel buffer to 0 (default value.)
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
AddressUnitTests.java 573 * Simple quick checks of empty-input edge conditions for unpack()
582 result = Address.unpack(null);
586 result = Address.unpack("");
618 assertTrue(packed, addressArrayEquals(list, Address.unpack(packed)));
623 * Tests that unpackToString() returns the same result as toString(unpack()).
632 String s2 = Address.toString(Address.unpack(packed));
659 * 2. unpackFirst() with non-empty returns the same as unpack()[0]
667 Address[] array = Address.unpack(packed);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
dlist.c 911 const struct gl_pixelstore_attrib *unpack)
922 if (!_mesa_is_bufferobj(unpack->BufferObj)) {
927 image = _mesa_unpack_bitmap(width, height, pixels, unpack);
930 format, type, pixels, unpack);
936 else if (_mesa_validate_pbo_access(dimensions, unpack, width, height,
942 ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size,
943 GL_MAP_READ_BIT, unpack->BufferObj);
952 image = _mesa_unpack_bitmap(width, height, src, unpack);
955 format, type, src, unpack);
957 ctx->Driver.UnmapBuffer(ctx, unpack->BufferObj)
    [all...]
  /external/mesa3d/src/mesa/main/
dlist.c 911 const struct gl_pixelstore_attrib *unpack)
922 if (!_mesa_is_bufferobj(unpack->BufferObj)) {
927 image = _mesa_unpack_bitmap(width, height, pixels, unpack);
930 format, type, pixels, unpack);
936 else if (_mesa_validate_pbo_access(dimensions, unpack, width, height,
942 ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size,
943 GL_MAP_READ_BIT, unpack->BufferObj);
952 image = _mesa_unpack_bitmap(width, height, src, unpack);
955 format, type, src, unpack);
957 ctx->Driver.UnmapBuffer(ctx, unpack->BufferObj)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mux_client_for_testing.py 104 channel_id = struct.unpack('!L',
111 struct.unpack('!H', data[offset+1:offset+3])[0])
116 channel_id = struct.unpack('!H', data[offset:offset+2])[0] & 0x3fff
126 return struct.unpack('!H', data[offset:offset+2])[0]
129 + struct.unpack('!H', data[offset+1:offset+3])[0])
131 return struct.unpack('!L', data[offset:offset+4])[0]
  /external/chromium_org/gpu/command_buffer/client/
gles2_implementation.h 552 // The pixels pointer should already account for unpack skip rows and skip
629 // unpack alignment as last set by glPixelStorei
632 // unpack yflip as last set by glPixelstorei
635 // unpack row length as last set by glPixelStorei
638 // unpack skip rows as last set by glPixelStorei
641 // unpack skip pixels as last set by glPixelStorei
  /external/libvpx/libvpx/vp8/common/ppc/
variance_subpixel_altivec.asm 126 ;# Compute sum first. Unpack to so signed subract
247 vspltish v23, 0 ;# unpack
352 vspltish v23, 0 ;# unpack
486 vspltish v23, 0 ;# unpack
675 vspltish v23, 0 ;# unpack
792 vspltish v23, 0 ;# unpack
  /external/libmtp/src/
ptp-pack.c 273 /* DeviceInfo pack/unpack */
353 /* EOS Device Info unpack */
380 /* ObjectHandles array pack/unpack */
395 /* StoreIDs array pack/unpack */
406 /* StorageInfo pack/unpack */
434 /* ObjectInfo pack/unpack */
660 /*fprintf(stderr,"unhandled unpack of uint128n");*/
664 /*fprintf(stderr,"unhandled unpack of int128n");*/
710 /* Device Property pack/unpack */
790 /* (MTP) Object Property pack/unpack */
    [all...]

Completed in 1508 milliseconds

1 2 3 4 5 6 7 891011>>