Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 11 of 11 for dec_uint16be (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

         * Decodes a short integer (2 bytes) from NDR format.
         *
         * @return the decoded short integer value
         */
        public int dec_ndr_short() {
            align(2);
            final int val = Encdec.dec_uint16le(this.buf, this.index);
            advance(2);
            return val;
        }
    
        /**
         * Encodes a long integer (4 bytes) in NDR format.
         *
         * @param l the long integer value to encode
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 10.7K bytes
    - Click Count (0)
Back to Top