Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 353 for little32 (0.2 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.one"/>
        <magic priority="50">
          <!-- GUID {7B5C52E4-D88C-4DA7-AEB1-5378D02996D3} -->
          <match value="0x7B5C52E4" type="little32" offset="0">
            <match value="0xD88C" type="little16" offset="4">
              <match value="0x4DA7" type="little16" offset="6">
                <match value="0xAEB15378D02996D3" offset="8" />
              </match>
            </match>
          </match>
        </magic>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

        return b1;
      }
    
      /**
       * Reads an unsigned {@code short} as specified by {@link DataInputStream#readUnsignedShort()},
       * except using little-endian byte order.
       *
       * @return the next two bytes of the input stream, interpreted as an unsigned 16-bit integer in
       *     little-endian byte order
       * @throws IOException if an I/O error occurs
       */
      @CanIgnoreReturnValue // to skip some bytes
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/LittleEndianDataInputStream.java

        return b1;
      }
    
      /**
       * Reads an unsigned {@code short} as specified by {@link DataInputStream#readUnsignedShort()},
       * except using little-endian byte order.
       *
       * @return the next two bytes of the input stream, interpreted as an unsigned 16-bit integer in
       *     little-endian byte order
       * @throws IOException if an I/O error occurs
       */
      @CanIgnoreReturnValue // to skip some bytes
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20/xor.go

    package chacha20
    
    import "runtime"
    
    // Platforms that have fast unaligned 32-bit little endian accesses.
    const unaligned = runtime.GOARCH == "386" ||
    	runtime.GOARCH == "amd64" ||
    	runtime.GOARCH == "arm64" ||
    	runtime.GOARCH == "ppc64le" ||
    	runtime.GOARCH == "s390x"
    
    // addXor reads a little endian uint32 from src, XORs it with (a + b) and
    // places the result in little endian byte order in dst.
    func addXor(dst, src []byte, a, b uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 22:52:07 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/LittleEndianDataOutputStream.java

       * little-endian byte order.
       *
       * @throws IOException if an I/O error occurs
       */
      @Override
      public void writeChar(int v) throws IOException {
        writeShort(v);
      }
    
      /**
       * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except
       * each character is written using little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/syscall/dir_plan9.go

    	b[0] = byte(v)
    	return b[1:]
    }
    
    // pbit16 copies the 16-bit number v to b in little-endian order and returns the remaining slice of b.
    func pbit16(b []byte, v uint16) []byte {
    	byteorder.LePutUint16(b, v)
    	return b[2:]
    }
    
    // pbit32 copies the 32-bit number v to b in little-endian order and returns the remaining slice of b.
    func pbit32(b []byte, v uint32) []byte {
    	byteorder.LePutUint32(b, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/LittleEndianDataOutputStream.java

       * little-endian byte order.
       *
       * @throws IOException if an I/O error occurs
       */
      @Override
      public void writeChar(int v) throws IOException {
        writeShort(v);
      }
    
      /**
       * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except
       * each character is written using little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/plan9/dir_plan9.go

    func gbit16(b []byte) (uint16, []byte) {
    	return uint16(b[0]) | uint16(b[1])<<8, b[2:]
    }
    
    // gbit32 reads a 32-bit number in little-endian order from b and returns it with the remaining slice of b.
    func gbit32(b []byte) (uint32, []byte) {
    	return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24, b[4:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/list10.txt

    -- input --
    
    	1. This list
    	2. Starts the comment
    	3. And also has a blank line before it.
    
    All of which is a little weird.
    -- gofmt --
     1. This list
     2. Starts the comment
     3. And also has a blank line before it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 247 bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

      private LittleEndianDataOutputStream out = new LittleEndianDataOutputStream(baos);
    
      public void testWriteLittleEndian() throws IOException {
    
        /* Write out various test values in LITTLE ENDIAN FORMAT */
        out.write(new byte[] {-100, 100});
        out.writeBoolean(true);
        out.writeBoolean(false);
        out.writeByte(100);
        out.writeByte(-100);
        out.writeByte((byte) 200);
        out.writeChar('a');
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
Back to top