Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Fong (0.96 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    // example, is an opcode byte (z[0]) then an asmando (which is some kind of
    // encoded addressing mode for the Yml arg), and then a single immediate byte.
    // Zilo_m is the same but a long (32-bit) immediate.
    var optab =
    // as, ytab, andproto, opcode
    [...]Optab{
    	{obj.AXXX, nil, 0, opBytes{}},
    	{AAAA, ynone, P32, opBytes{0x37}},
    	{AAAD, ynone, P32, opBytes{0xd5, 0x0a}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		p.SFiles,
    		p.SwigFiles,
    		p.SwigCXXFiles,
    		p.SysoFiles,
    		p.TestGoFiles,
    		p.XTestGoFiles,
    	)
    
    	// EmbedFiles may overlap with the other files.
    	// Dedup, but delay building the map as long as possible.
    	// Only files in the current directory (no slash in name)
    	// need to be checked against the files variable above.
    	var have map[string]bool
    	for _, file := range p.EmbedFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	    of all tests matching X, even those without sub-tests matching Y,
    //	    because it must run them to look for those sub-tests.
    //	    See also -skip.
    //
    //	-short
    //	    Tell long-running tests to shorten their run time.
    //	    It is off by default but set during all.bash so that installing
    //	    the Go tree can run a sanity check but not spend time running
    //	    exhaustive tests.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_MDEBR   uint32 = 0xB30C // FORMAT_RRE        MULTIPLY (short to long BFP)
    	op_MDER    uint32 = 0x3C00 // FORMAT_RR         MULTIPLY (short to long HFP)
    	op_MDR     uint32 = 0x2C00 // FORMAT_RR         MULTIPLY (long HFP)
    	op_MDTR    uint32 = 0xB3D0 // FORMAT_RRF1       MULTIPLY (long DFP)
    	op_MDTRA   uint32 = 0xB3D0 // FORMAT_RRF1       MULTIPLY (long DFP)
    	op_ME      uint32 = 0x7C00 // FORMAT_RX1        MULTIPLY (short to long HFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	{AMOVK, C_VCON, C_NONE, C_NONE, C_ZREG, C_NONE, 33, 4, 0, 0, 0},
    	{AMOVD, C_AACON, C_NONE, C_NONE, C_RSP, C_NONE, 4, 4, REGFROM, 0, 0},
    	{AMOVD, C_AACON2, C_NONE, C_NONE, C_RSP, C_NONE, 4, 8, REGFROM, NOTUSETMP, 0},
    
    	/* load long effective stack address (load int32 offset and add) */
    	{AMOVD, C_LACON, C_NONE, C_NONE, C_RSP, C_NONE, 34, 8, REGSP, LFROM, 0},
    
    	// Load a large constant into a vector register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    		/* 16 = Block access - program will soon make a transient access to EA. */
    		/* 17 = Block access - program will not access EA for a long time. */
    
    		/* L field for dcbf: */
    		/* 0 = invalidates the block containing EA in all processors. */
    		/* 1 = same as 0, but with limited scope (i.e. block in the current processor will not be reused soon). */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		log.Fatalf("error writing long arguments to response file: %v", err)
    	}
    	cleanup = func() { os.Remove(tf.Name()) }
    	var buf bytes.Buffer
    	for _, arg := range cmd.Args[1:] {
    		fmt.Fprintf(&buf, "%s\n", encodeArg(arg))
    	}
    	if _, err := tf.Write(buf.Bytes()); err != nil {
    		tf.Close()
    		cleanup()
    		log.Fatalf("error writing long arguments to response file: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    // larger than 2^25 bytes due to the size of call target offset field
    // in the 'bl' instruction. Splitting into smaller text sections
    // smaller than this limit allows the system linker to modify the long
    // calls appropriately. The limit allows for the space needed for
    // tables inserted by the linker.
    //
    // The same applies to Darwin/ARM64, with 2^27 byte threshold.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top