Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for dword (0.04 sec)

  1. src/net/url/url_test.go

    		&URL{
    			Path: "a/b/c",
    		},
    		"a/b/c",
    	},
    	// escaped '?' in username and password
    	{
    		"http://%3Fam:******@****.***",
    		&URL{
    			Scheme: "http",
    			User:   UserPassword("?am", "pa?sword"),
    			Host:   "google.com",
    		},
    		"",
    	},
    	// host subcomponent; IPv4 address in RFC 3986
    	{
    		"http://192.168.0.1/",
    		&URL{
    			Scheme: "http",
    			Host:   "192.168.0.1",
    			Path:   "/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    	r, _ := GetStdHandle(h)
    	return r
    }
    
    const ImplementsGetwd = true
    
    func Getwd() (wd string, err error) {
    	b := make([]uint16, 300)
    	// The path of the current directory may not fit in the initial 300-word
    	// buffer when long path support is enabled. The current directory may also
    	// change between subsequent calls of GetCurrentDirectory. As a result, we
    	// need to retry the call in a loop until the current directory fits, each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    		(MOVLstoreconst [makeValAndOff(0,0)] destptr mem))
    (Zero [7] destptr mem) =>
    	(MOVLstoreconst [makeValAndOff(0,3)] destptr
    		(MOVLstoreconst [makeValAndOff(0,0)] destptr mem))
    
    // Strip off any fractional word zeroing.
    (Zero [s] destptr mem) && s%8 != 0 && s > 8 && !config.useSSE =>
    	(Zero [s-s%8] (OffPtr <destptr.Type> destptr [s%8])
    		(MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
    
    // Zero small numbers of words directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = r
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r0
    		pbahead.To.SetTarget(p)
    
    		p = s.Prog(obj.ANOP)
    		pbover.To.SetTarget(p)
    
    	case ssa.OpPPC64DIVW:
    		// word-width version of above
    		r := v.Reg()
    		r0 := v.Args[0].Reg()
    		r1 := v.Args[1].Reg()
    
    		p := s.Prog(ppc64.ACMPW)
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r1
    		p.To.Type = obj.TYPE_CONST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_s390x.s

    #define K0    V31
    TEXT ·p256OrdMul<>(SB), NOSPLIT, $0
    	MOVD res+0(FP), res_ptr
    	MOVD in1+8(FP), x_ptr
    	MOVD in2+16(FP), y_ptr
    
    	VZERO T2
    	MOVD  $p256ordK0<>+0x00(SB), R4
    
    	// VLEF    $3, 0(R4), K0
    	WORD $0xE7F40000
    	BYTE $0x38
    	BYTE $0x03
    	MOVD $p256ord<>+0x00(SB), R4
    	VL   16(R4), M0
    	VL   0(R4), M1
    
    	VL   (0*16)(x_ptr), X0
    	VPDI $0x4, X0, X0, X0
    	VL   (1*16)(x_ptr), X1
    	VPDI $0x4, X1, X1, X1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    	svcPort.nameString = svcPortName.String()
    
    	return svcPort
    }
    
    // getFirstColumn reads all the content from r into memory and return a
    // slice which consists of the first word from each line.
    func getFirstColumn(r io.Reader) ([]string, error) {
    	b, err := io.ReadAll(r)
    	if err != nil {
    		return nil, err
    	}
    
    	lines := strings.Split(string(b), "\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    // Assumes that in gcc, char is 1 byte, short 2 bytes, int 4 bytes, long long 8 bytes.
    // These assumptions are checked by the gccProlog.
    // Also assumes that gc convention is to word-align the
    // input and output parameters.
    func (p *Package) structType(n *Name) (string, int64) {
    	var buf strings.Builder
    	fmt.Fprint(&buf, "struct {\n")
    	off := int64(0)
    	for i, t := range n.FuncType.Params {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	// support. See https://man.openbsd.org/pkg-config.1
    	tg.tempFile("foo.pc", `
    Name: foo
    Description: The foo library
    Version: 1.0.0
    Cflags: -Dhello=10 -Dworld=+32 -DDEFINED_FROM_PKG_CONFIG=hello\ world
    `)
    	tg.tempFile("foo.go", `package main
    
    /*
    #cgo pkg-config: foo
    int value() {
    	return DEFINED_FROM_PKG_CONFIG;
    }
    */
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top