Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 210 for fInt64 (0.12 sec)

  1. src/sync/atomic/atomic_test.go

    	}
    }
    
    func testCompareAndSwapUint64(t *testing.T, cas func(*uint64, uint64, uint64) bool) {
    	var x struct {
    		before uint64
    		i      uint64
    		after  uint64
    	}
    	magic64 := uint64(magic64)
    	x.before = magic64
    	x.after = magic64
    	for val := uint64(1); val+val > val; val += val {
    		x.i = val
    		if !cas(&x.i, val, val+1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    			sh = elfshname(".note.netbsd.ident")
    			resoff -= int64(elfnetbsdsig(sh, uint64(startva), uint64(resoff)))
    
    		case objabi.Hopenbsd:
    			sh = elfshname(".note.openbsd.ident")
    			resoff -= int64(elfopenbsdsig(sh, uint64(startva), uint64(resoff)))
    
    		case objabi.Hfreebsd:
    			sh = elfshname(".note.tag")
    			resoff -= int64(elffreebsdsig(sh, uint64(startva), uint64(resoff)))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    }
    func int8ToAuxInt(i int8) int64 {
    	return int64(i)
    }
    func int16ToAuxInt(i int16) int64 {
    	return int64(i)
    }
    func int32ToAuxInt(i int32) int64 {
    	return int64(i)
    }
    func int64ToAuxInt(i int64) int64 {
    	return int64(i)
    }
    func uint8ToAuxInt(i uint8) int64 {
    	return int64(int8(i))
    }
    func float32ToAuxInt(f float32) int64 {
    	return int64(math.Float64bits(float64(f)))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    	case objabi.R_POWER_TLS_IE:
    		out.Write64(uint64(elf.R_PPC64_GOT_TPREL16_HA) | uint64(elfsym)<<32)
    		out.Write64(uint64(r.Xadd))
    		out.Write64(uint64(sectoff + 4))
    		out.Write64(uint64(elf.R_PPC64_GOT_TPREL16_LO_DS) | uint64(elfsym)<<32)
    	case objabi.R_ADDRPOWER:
    		out.Write64(uint64(elf.R_PPC64_ADDR16_HA) | uint64(elfsym)<<32)
    		out.Write64(uint64(r.Xadd))
    		out.Write64(uint64(sectoff + 4))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.obj.?field == optional.of('a')":                 uint64(1844674407370955268),
    				"self.obj.?absentField == optional.none()":            uint64(1844674407370955268),
    				"self.obj.?field.orValue('v') == 'a'":                 5,
    				"self.m[?'k'] == optional.of('v')":                    uint64(1844674407370955268),
    				"self.l[?0] == optional.of('a')":                      uint64(1844674407370955268),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Select1 (ADDCconst (MOVDconst [c]) [d]))
      && uint64(c+int64(d)) >= uint64(c) && c+int64(d) == 0
      => (FlagEQ)
    (Select1 (ADDCconst (MOVDconst [c]) [d]))
      && uint64(c+int64(d)) >= uint64(c) && c+int64(d) != 0
      => (FlagLT)
    
    // borrow flag generation
    // (only constant fold borrow of zero)
    (Select1 (SUBC (MOVDconst [c]) (MOVDconst [d])))
      && uint64(d) <= uint64(c) && c-d == 0
      => (FlagGT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. src/debug/elf/file_test.go

    						{Attr: dwarf.AttrName, Val: "t.c", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrCompDir, Val: "/tmp", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLowpc, Val: uint64(0x0), Class: dwarf.ClassAddress},
    						{Attr: dwarf.AttrHighpc, Val: uint64(0x5), Class: dwarf.ClassAddress},
    						{Attr: dwarf.AttrStmtList, Val: int64(0), Class: dwarf.ClassLinePtr},
    					},
    				},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  8. src/time/time.go

    		wantLen++
    	}
    	if len(buf) != wantLen {
    		return errors.New("Time.UnmarshalBinary: invalid length")
    	}
    
    	buf = buf[1:]
    	sec := int64(buf[7]) | int64(buf[6])<<8 | int64(buf[5])<<16 | int64(buf[4])<<24 |
    		int64(buf[3])<<32 | int64(buf[2])<<40 | int64(buf[1])<<48 | int64(buf[0])<<56
    
    	buf = buf[8:]
    	nsec := int32(buf[3]) | int32(buf[2])<<8 | int32(buf[1])<<16 | int32(buf[0])<<24
    
    	buf = buf[4:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    //
    // The world must be stopped.
    func (c *gcControllerState) resetLive(bytesMarked uint64) {
    	c.heapMarked = bytesMarked
    	c.heapLive.Store(bytesMarked)
    	c.heapScan.Store(uint64(c.heapScanWork.Load()))
    	c.lastHeapScan = uint64(c.heapScanWork.Load())
    	c.lastStackScan.Store(uint64(c.stackScanWork.Load()))
    	c.triggered = ^uint64(0) // Reset triggered.
    
    	// heapLive was updated, so emit a trace event.
    	trace := traceAcquire()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    	Ostackpsize uint8    // Requested stack page size
    	Oflags      uint8    // Flags And TLS Alignment
    	Otsize      uint64   // Text Size In Bytes
    	Odsize      uint64   // Data Size In Bytes
    	Obsize      uint64   // Bss Size In Bytes
    	Oentry      uint64   // Entry Point Address
    	Omaxstack   uint64   // Max Stack Size Allowed
    	Omaxdata    uint64   // Max Data Size Allowed
    	Osntdata    int16    // Section Number For Tdata Section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top