Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 75 of 75 for fpregs (0.1 sec)

  1. src/database/sql/sql.go

    // DB is a database handle representing a pool of zero or more
    // underlying connections. It's safe for concurrent use by multiple
    // goroutines.
    //
    // The sql package creates and frees connections automatically; it
    // also maintains a free pool of idle connections. If the database has
    // a concept of per-connection state, such state can be reliably observed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	0x48, 0x89, 0x6c, 0x24, 0xf0, // MOVQ BP, -16(SP)
    	0x48, 0x8d, 0x6c, 0x24, 0xf0, // LEAQ -16(SP), BP
    }
    
    var bpduff2 = []byte{
    	0x48, 0x8b, 0x6d, 0x00, // MOVQ 0(BP), BP
    }
    
    // asmevex emits EVEX pregis and opcode byte.
    // In addition to asmvex r/m, vvvv and reg fields also requires optional
    // K-masking register.
    //
    // Expects asmbuf.evex to be properly initialized.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	//TODO: FNSTSW (BX)                     // dd3b
    	//TODO: FNSTSW (R11)                    // 41dd3b
    	FPATAN                                  // d9f3
    	FPREM                                   // d9f8
    	FPREM1                                  // d9f5
    	FPTAN                                   // d9f2
    	FRNDINT                                 // d9fc
    	//TODO: FRSTORL (BX)                    // dd23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    					// resetting the statement mark.
    					//
    					// The reset of s.pp.Pos occurs in (*Progs).Prog() -- if it emits
    					// an instruction, and the instruction's statement mark was set,
    					// and it is not one of the LosesStmtMark instructions,
    					// then Prog() resets the statement mark on the (*Progs).Pos.
    					return
    				}
    				p = p.WithNotStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	// TODO: this is a common one. It'd be nice to return true
    	// here and get into the fast path if we could be clever and
    	// calculate the size fast enough, or at least a conservative
    	// upper bound that usually fires. (Maybe if w.h and
    	// w.trailers are nil, so we don't need to enumerate it.)
    	// Otherwise I'm afraid that just calculating the length to
    	// answer this question would be slower than the ~2µs benefit.
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top