Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BitOffset (0.09 sec)

  1. guava/src/com/google/common/io/BaseEncoding.java

          }
          // Position of first character is length of bitBuffer minus bitsPerChar.
          int bitOffset = (len + 1) * 8 - alphabet.bitsPerChar;
          int bitsProcessed = 0;
          while (bitsProcessed < len * 8) {
            int charIndex = (int) (bitBuffer >>> (bitOffset - bitsProcessed)) & alphabet.mask;
            target.append(alphabet.encode(charIndex));
            bitsProcessed += alphabet.bitsPerChar;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		}
    
    		// TODO: Handle fields that are anonymous structs by
    		// promoting the fields of the inner struct.
    
    		t := c.Type(ft, pos)
    		tgo := t.Go
    		size := t.Size
    		talign := t.Align
    		if f.BitOffset > 0 || f.BitSize > 0 {
    			// The layout of bitfields is implementation defined,
    			// so we don't know how they correspond to Go fields
    			// even if they are aligned at byte boundaries.
    			continue
    		}
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 18 15:07:34 UTC 2024
    - 97.1K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg debug/dwarf, type ArrayType struct, Type Type
    pkg debug/dwarf, type ArrayType struct, embedded CommonType
    pkg debug/dwarf, type Attr uint32
    pkg debug/dwarf, type BasicType struct
    pkg debug/dwarf, type BasicType struct, BitOffset int64
    pkg debug/dwarf, type BasicType struct, BitSize int64
    pkg debug/dwarf, type BasicType struct, embedded CommonType
    pkg debug/dwarf, type BoolType struct
    pkg debug/dwarf, type BoolType struct, embedded BasicType
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top