Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for retlarge (0.57 sec)

  1. test/codegen/issue38554.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that we are zeroing directly instead of
    // copying a large zero value. Issue 38554.
    
    package codegen
    
    func retlarge() [256]byte {
    	// amd64:-"DUFFCOPY"
    	return [256]byte{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 24 23:58:10 UTC 2020
    - 355 bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/SessionRetargetResponsePacket.java

                                int bufferIndex )
                                throws IOException {
            if( in.read( buffer, bufferIndex, length ) != length ) {
                throw new IOException( "unexpected EOF reading netbios retarget session response" );
            }
            int addr = readInt4( buffer, bufferIndex );
            bufferIndex += 4;
            retargetAddress = new NbtAddress( null, addr, false, NbtAddress.B_NODE );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm_arm64_test.go

    			}
    		}
    	}
    }
    
    // TestLarge generates a very large file to verify that large
    // program builds successfully, in particular, too-far
    // conditional branches are fixed, and also verify that the
    // instruction's pc can be correctly aligned even when branches
    // need to be fixed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skip in short mode")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/SessionRetargetResponsePacket.java

            if ( in.read(buffer, bufferIndex, this.length) != this.length ) {
                throw new IOException("unexpected EOF reading netbios retarget session response");
            }
            int addr = readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            new NbtAddress(null, addr, false, NbtAddress.B_NODE);
            readInt2(buffer, bufferIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/objz.go

    				p2.To.SetTarget(q)
    			}
    
    		case obj.ARET:
    			retTarget := p.To.Sym
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				if autosize == 0 {
    					p.As = ABR
    					p.From = obj.Addr{}
    					if retTarget == nil {
    						p.To.Type = obj.TYPE_REG
    						p.To.Reg = REG_LR
    					} else {
    						p.To.Type = obj.TYPE_BRANCH
    						p.To.Sym = retTarget
    					}
    					p.Mark |= BRANCH
    					break
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    				break
    			}
    
    			retTarget := p.To.Sym
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				if autosize == 0 {
    					p.As = ABR
    					p.From = obj.Addr{}
    					if retTarget == nil {
    						p.To.Type = obj.TYPE_REG
    						p.To.Reg = REG_LR
    					} else {
    						p.To.Type = obj.TYPE_BRANCH
    						p.To.Sym = retTarget
    					}
    					p.Mark |= BRANCH
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm_test.go

    		}
    	}
    }
    
    // TestLarge generates a very large file to verify that large
    // program builds successfully, and branches which exceed the
    // range of BC are rewritten to reach.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skip in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	dir, err := os.MkdirTemp("", "testlarge")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    }
    
    func parse(s string, flags Flags) (_ *Regexp, err error) {
    	defer func() {
    		switch r := recover(); r {
    		default:
    			panic(r)
    		case nil:
    			// ok
    		case ErrLarge: // too big
    			err = &Error{Code: ErrLarge, Expr: s}
    		case ErrNestingDepth:
    			err = &Error{Code: ErrNestingDepth, Expr: s}
    		}
    	}()
    
    	if flags&Literal != 0 {
    		// Trivial parser for literal string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/crypto/md5/md5_test.go

    		if actual, actual2 := h.Sum(nil), h2.Sum(nil); !bytes.Equal(actual, actual2) {
    			t.Errorf("md5(%q) = 0x%x != marshaled 0x%x", g.in, actual, actual2)
    		}
    	}
    }
    
    func TestLarge(t *testing.T) {
    	const N = 10000
    	ok := "2bb571599a4180e1d542f76904adc3df" // md5sum of "0123456789" * 1000
    	block := make([]byte, 10004)
    	c := New()
    	for offset := 0; offset < 4; offset++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  10. src/internal/zstd/zstd_test.go

    	if zstdBigErr != nil {
    		t.Fatal(zstdBigErr)
    	}
    	return zstdBigBytes
    }
    
    // Test decompressing a large file. We don't have a compressor,
    // so this test only runs on systems with zstd installed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping expensive test in short mode")
    	}
    
    	data := bigData(t)
    	compressed := zstdBigData(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top