Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for intSize (0.14 sec)

  1. src/cmd/link/internal/loadelf/ldelf.go

    			sect.flags = elf.SectionFlag(b.Flags)
    			sect.addr = b.Addr
    			sect.off = b.Off
    			sect.size = b.Size
    			sect.link = b.Link
    			sect.info = b.Info
    			sect.align = b.Addralign
    			sect.entsize = b.Entsize
    		} else {
    			var b elf.Section32
    
    			if err := binary.Read(f, e, &b); err != nil {
    				return errorf("malformed elf file: %v", err)
    			}
    			sect.nameoff = b.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    				Info:      bo.Uint32(shdata[off+unsafe.Offsetof(sh.Info):]),
    				Addralign: uint64(bo.Uint32(shdata[off+unsafe.Offsetof(sh.Addralign):])),
    				Entsize:   uint64(bo.Uint32(shdata[off+unsafe.Offsetof(sh.Entsize):])),
    			}
    		case ELFCLASS64:
    			var sh Section64
    			names = append(names, bo.Uint32(shdata[off+unsafe.Offsetof(sh.Name):]))
    			s.SectionHeader = SectionHeader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            private IndexRoot root;
    
            @Override
            protected byte getType() {
                return 0x77;
            }
    
            @Override
            protected int getSize() {
                return Block.INT_SIZE + Block.LONG_SIZE + (3 * Block.LONG_SIZE) * maxChildIndexEntries;
            }
    
            @Override
            public void read(DataInputStream instr) throws IOException {
                int count = instr.readInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/inl_test.go

    		// internal/runtime/atomic.Loaduintptr is only intrinsified on these platforms.
    		want["runtime"] = append(want["runtime"], "traceAcquire")
    	}
    	if bits.UintSize == 64 {
    		// mix is only defined on 64-bit architectures
    		want["runtime"] = append(want["runtime"], "mix")
    		// (*Bool).CompareAndSwap is just over budget on 32-bit systems (386, arm).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat_test.go

    		if a.Equal(aAgain) != 1 {
    			t.Errorf("%v != %v", a, aAgain)
    			return false
    		}
    		return true
    	}, &quick.Config{})
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    func TestShiftIn(t *testing.T) {
    	if bits.UintSize != 64 {
    		t.Skip("examples are only valid in 64 bit")
    	}
    	examples := []struct {
    		m, x, expected []byte
    		y              uint64
    	}{{
    		m:        []byte{13},
    		x:        []byte{0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top