HomeSort by relevance Sort by last modified time
    Searched defs:read32 (Results 1 - 11 of 11) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/zlib/
minigzip.py 18 def read32(input): function
100 crc32 = read32(input)
101 isize = read32(input)
  /external/python/cpython2/Demo/zlib/
minigzip.py 18 def read32(input): function
100 crc32 = read32(input)
101 isize = read32(input)
  /external/tensorflow/tensorflow/lite/tutorials/
dataset.py 35 def read32(bytestream): function
44 magic = read32(f)
45 read32(f) # num_images, unused
46 rows = read32(f)
47 cols = read32(f)
60 magic = read32(f)
61 read32(f) # num_items, unused
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
gzip.py 24 def read32(input): function
186 self.mtime = read32(self.fileobj)
334 crc32 = read32(self.fileobj)
335 isize = read32(self.fileobj) # may exceed 2GB
  /external/python/cpython2/Lib/
gzip.py 24 def read32(input): function
201 self.mtime = read32(self.fileobj)
349 crc32 = read32(self.fileobj)
350 isize = read32(self.fileobj) # may exceed 2GB
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/arj/
ArjArchiveInputStream.java 103 private int read32(final DataInputStream dataIn) throws IOException { method in class:ArjArchiveInputStream
146 final long basicHeaderCrc32 = read32(in) & 0xFFFFFFFFL;
179 hdr.dateTimeCreated = read32(firstHeader);
180 hdr.dateTimeModified = read32(firstHeader);
181 hdr.archiveSize = 0xffffFFFFL & read32(firstHeader);
182 hdr.securityEnvelopeFilePosition = read32(firstHeader);
203 final long extendedHeaderCrc32 = 0xffffFFFFL & read32(in);
234 localFileHeader.dateTimeModified = read32(firstHeader);
235 localFileHeader.compressedSize = 0xffffFFFFL & read32(firstHeader);
236 localFileHeader.originalSize = 0xffffFFFFL & read32(firstHeader)
    [all...]
  /external/skia/src/core/
SkReadBuffer.cpp 125 int32_t SkReadBuffer::read32() { function in class:SkReadBuffer
284 bounds.fRight = this->read32();
285 bounds.fBottom = this->read32();
296 int32_t size = this->read32();
328 (void)this->read32(); // originX
329 (void)this->read32(); // originY
355 int32_t index = this->read32();
377 int32_t index = this->read32();
416 uint32_t sizeRecorded = this->read32();
444 int32_t value = this->read32();
    [all...]
SkReadBuffer.h 88 int32_t read32();
279 int32_t read32() { return 0; } function in class:SkReadBuffer
  /external/skqp/src/core/
SkReadBuffer.cpp 125 int32_t SkReadBuffer::read32() { function in class:SkReadBuffer
284 bounds.fRight = this->read32();
285 bounds.fBottom = this->read32();
296 int32_t size = this->read32();
328 (void)this->read32(); // originX
329 (void)this->read32(); // originY
355 int32_t index = this->read32();
377 int32_t index = this->read32();
416 uint32_t sizeRecorded = this->read32();
444 int32_t value = this->read32();
    [all...]
SkReadBuffer.h 88 int32_t read32();
279 int32_t read32() { return 0; } function in class:SkReadBuffer
  /external/nos/host/android/manual_tests/
test_citadel.c 315 static uint32_t read32(uint32_t address, uint32_t *valptr) function
380 retval = read32(address, &value);
596 if (0 != read32(GPIO_DATA, &curr)) {
608 if (0 != read32(GPIO_DATA, &curr)) {
622 if (0 != read32(GPIO_DATA, &curr)) {
654 if (0 != read32(GPIO_DATA, &curr)) {
664 if (0 != read32(GPIO_DATA, &curr)) {
678 if (0 != read32(GPIO_DATA, &curr)) {
708 if (0 != read32(GPIO_DATAOUT, &curr)) {
732 if (0 != read32(GPIO_DATAOUT, &curr))
    [all...]

Completed in 411 milliseconds