Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,686 for intp (0.18 sec)

  1. src/math/rand/rand.go

    			low = uint32(prod)
    		}
    	}
    	return int32(prod >> 32)
    }
    
    // Intn returns, as an int, a non-negative pseudo-random number in the half-open interval [0,n).
    // It panics if n <= 0.
    func (r *Rand) Intn(n int) int {
    	if n <= 0 {
    		panic("invalid argument to Intn")
    	}
    	if n <= 1<<31-1 {
    		return int(r.Int31n(int32(n)))
    	}
    	return int(r.Int63n(int64(n)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. security/pkg/pki/testdata/multilevelpki/int-cert.pem

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. security/pkg/pki/testdata/multilevelpki/int-key.pem

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    				}
    			}
    		}
    	}
    
    	switch inst.Op {
    	case AAM, AAD:
    		if imm, ok := iargs[0].(Imm); ok {
    			if inst.DataSize == 32 {
    				iargs[0] = Imm(uint32(int8(imm)))
    			} else if inst.DataSize == 16 {
    				iargs[0] = Imm(uint16(int8(imm)))
    			}
    		}
    
    	case PUSH:
    		if imm, ok := iargs[0].(Imm); ok {
    			iargs[0] = Imm(uint32(imm))
    		}
    	}
    
    	for _, p := range inst.Prefix {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/abiutils_test.go

    	exp := makeExpectedDump(`
            IN 0: R{ I0 } spilloffset: 0 typ: int8
            IN 1: R{ I1 I2 I3 I4 } spilloffset: 2 typ: struct { int8; int8; struct {}; int8; int16 }
            IN 2: R{ I5 } spilloffset: 8 typ: int64
            OUT 0: R{ I0 I1 I2 I3 } spilloffset: -1 typ: struct { int8; int8; struct {}; int8; int16 }
            OUT 1: R{ I4 } spilloffset: -1 typ: int8
            OUT 2: R{ I5 } spilloffset: -1 typ: int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. security/pkg/pki/testdata/multilevelpki/int-cert-chain.pem

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

        /*
         * This trick allows us to avoid having separate states for "first four ints" and "all other
         * four int chunks."  The state we want after the first four bytes is
         *
         * crc0 = ~int0
         * crc1 = int1
         * crc2 = int2
         * crc3 = int3
         *
         * ...so we set crc0 so that computeForWord(crc0) = -1 and xoring it with the first int
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Crc32cHashFunction.java

        /*
         * This trick allows us to avoid having separate states for "first four ints" and "all other
         * four int chunks."  The state we want after the first four bytes is
         *
         * crc0 = ~int0
         * crc1 = int1
         * crc2 = int2
         * crc3 = int3
         *
         * ...so we set crc0 so that computeForWord(crc0) = -1 and xoring it with the first int
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/ip_test.go

    	} else {
    		t.Fatal("expected result must not be nil")
    	}
    }
    
    func TestIP(t *testing.T) {
    	ipv4Addr, _ := netip.ParseAddr("192.168.0.1")
    	int4 := types.Int(4)
    
    	ipv6Addr, _ := netip.ParseAddr("2001:db8::68")
    	int6 := types.Int(6)
    
    	trueVal := types.Bool(true)
    	falseVal := types.Bool(false)
    
    	cases := []struct {
    		name              string
    		expr              string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:07 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. security/pkg/pki/testdata/multilevelpki/ecc-int2-cert.pem

    jacob-delgado <******@****.***> 1588995233 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 09 03:33:53 UTC 2020
    - 692 bytes
    - Viewed (0)
Back to top