/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
zipfile.py | 172 sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data) 186 struct.unpack(structEndArchive64, data) 222 # the signature is correct and there's no comment, unpack structure 223 endrec = struct.unpack(structEndArchive, data) 243 # found the magic number; attempt to unpack and interpret 248 endrec = list(struct.unpack(structEndArchive, recData)) 386 unpack = struct.unpack 388 tp, ln = unpack('<HH', extra[:4]) 391 counts = unpack('<QQQ', extra[4:28] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
zipfile.py | 172 sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data) 186 struct.unpack(structEndArchive64, data) 222 # the signature is correct and there's no comment, unpack structure 223 endrec = struct.unpack(structEndArchive, data) 243 # found the magic number; attempt to unpack and interpret 248 endrec = list(struct.unpack(structEndArchive, recData)) 386 unpack = struct.unpack 388 tp, ln = unpack('<HH', extra[:4]) 391 counts = unpack('<QQQ', extra[4:28] [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngvcrd.c | [all...] |
/external/chromium_org/chrome/browser/extensions/ |
sandboxed_unpacker.cc | 52 // path to the temp unpack directory is. See crbug.com/69693 . 72 // To get a sense of how CRX size impacts unpack time, record unpack 160 // On ChromeOS, we will only attempt to unpack extension in cryptohome (profile) 347 // in, so that it can unpack to that dir.
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_swtcl.c | 747 const struct gl_pixelstore_attrib *unpack, 858 _mesa_image_address2d(unpack, bitmap, width, height, 861 if (unpack->LsbFirst) { 863 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 880 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_swtcl.c | 747 const struct gl_pixelstore_attrib *unpack, 858 _mesa_image_address2d(unpack, bitmap, width, height, 861 if (unpack->LsbFirst) { 863 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 880 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
|
/packages/apps/Email/src/com/android/email/ |
LegacyConversions.java | 342 Address[] from = Address.unpack(localMessage.mFrom); 353 message.setRecipients(RecipientType.TO, Address.unpack(localMessage.mTo)); 354 message.setRecipients(RecipientType.CC, Address.unpack(localMessage.mCc)); 355 message.setRecipients(RecipientType.BCC, Address.unpack(localMessage.mBcc)); 356 message.setReplyTo(Address.unpack(localMessage.mReplyTo));
|
/external/chromium/chrome/browser/importer/ |
profile_import_process_messages.h | 27 // Traits for importer::SourceProfile struct to pack/unpack. 73 // Traits for history::URLRow to pack/unpack. 128 // Traits for ProfileWriter::BookmarkEntry to pack/unpack.
|
/external/tremolo/Tremolo/ |
treminfo.c | 144 for(i=0;i<ci->maps;i++) /* unpack does the range checking */ 150 for(i=0;i<ci->floors;i++) /* unpack does the range checking */ 160 for(i=0;i<ci->residues;i++) /* unpack does the range checking */
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
dd.h | 152 * \p unpack describes how to unpack the source image data. 157 const struct gl_pixelstore_attrib *unpack, 166 const struct gl_pixelstore_attrib *unpack, 181 const struct gl_pixelstore_attrib *unpack, 209 * \param packing describes how to unpack the source data. [all...] |
pack.c | 94 * Unpack a 32x32 pixel polygon stipple from user memory using the 95 * current pixel unpack settings. 145 * Unpack bitmap data. Resulting data will be in most-significant-bit-first [all...] |
/external/llvm/test/tools/llvm-readobj/Inputs/ |
relocs.py | 113 return struct.unpack('><'[self.isLSB] + 'h', self.read(2))[0] 116 return struct.unpack('><'[self.isLSB] + 'H', self.read(2))[0] 119 return struct.unpack('><'[self.isLSB] + 'i', self.read(4))[0] 122 return struct.unpack('><'[self.isLSB] + 'I', self.read(4))[0] 125 return struct.unpack('><'[self.isLSB] + 'q', self.read(8))[0] 128 return struct.unpack('><'[self.isLSB] + 'Q', self.read(8))[0] [all...] |
/external/mesa3d/src/mesa/main/ |
dd.h | 152 * \p unpack describes how to unpack the source image data. 157 const struct gl_pixelstore_attrib *unpack, 166 const struct gl_pixelstore_attrib *unpack, 181 const struct gl_pixelstore_attrib *unpack, 209 * \param packing describes how to unpack the source data. [all...] |
pack.c | 94 * Unpack a 32x32 pixel polygon stipple from user memory using the 95 * current pixel unpack settings. 145 * Unpack bitmap data. Resulting data will be in most-significant-bit-first [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
BitSet.pm | 55 $bits = reverse unpack('B*', pack('N', $args->{number})); 68 $bits .= reverse substr(unpack('B*', pack('h', hex $h)), 4);
|
/external/chromium_org/remoting/tools/ |
zip2msi.py | 66 print "Failed to unpack '%s': '%s' is not under '%s'" % ( 205 # Unpack .zip
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
data.py | 159 # Unpack the 'lines' item. 164 # Unpack the 'arcs' item.
|
/external/llvm/lib/CodeGen/ |
MachineInstrBundle.cpp | 35 INITIALIZE_PASS(UnpackMachineBundles, "unpack-mi-bundles", 36 "Unpack machine instruction bundles", false, false)
|
/frameworks/base/libs/hwui/font/ |
CacheTexture.cpp | 119 // OpenGL ES 3.0+ lets us specify the row length for unpack operations such 214 // The unpack row length only needs to be specified when a new
|
/bootable/recovery/minzip/ |
Zip.h | 205 * MZ_EXTRACT_FILES_ONLY - only unpack files, not directories or symlinks
|
/external/bison/djgpp/ |
djunpack.bat | 67 Rem unpack the source distribution
|
/external/ceres-solver/examples/ |
circle_fit.cc | 83 // Since the radius is parameterized as m^2, unpack m to get r.
|
/external/chromium/chrome/browser/extensions/ |
sandboxed_extension_unpacker_unittest.cc | 82 // unpack it.
|
/external/chromium/chrome/browser/ |
utility_process_host.cc | 34 // in, so that it can unpack to that dir.
|
/external/chromium_org/chrome/browser/web_resource/ |
web_resource_service.cc | 48 Unpack(parsed_json);
|