Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for reg1 (0.06 sec)

  1. src/regexp/exec_test.go

    			}
    		}
    	}
    }
    
    func parseFowlerResult(s string) (ok, compiled, matched bool, pos []int) {
    	//   Field 4: the test outcome. This is either one of the posix error
    	//     codes (with REG_ omitted) or the match array, a list of (m,n)
    	//     entries with m and n being first and last+1 positions in the
    	//     field 3 string, or NULL if REG_NOSUB is in effect and success
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/wasm/asm.go

    func writeGlobalSec(ctxt *ld.Link) {
    	sizeOffset := writeSecHeader(ctxt, sectionGlobal)
    
    	globalRegs := []byte{
    		I32, // 0: SP
    		I64, // 1: CTXT
    		I64, // 2: g
    		I64, // 3: RET0
    		I64, // 4: RET1
    		I64, // 5: RET2
    		I64, // 6: RET3
    		I32, // 7: PAUSE
    	}
    
    	writeUleb128(ctxt.Out, uint64(len(globalRegs))) // number of globals
    
    	for _, typ := range globalRegs {
    		ctxt.Out.WriteByte(typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables.go

    	//
    	// All this is necessary because quite often apps use the same port for healthchecks as they do for reg. traffic, and
    	// we cannot make assumptions there.
    
    	// -A OUTPUT -m owner --socket-exists -p tcp -m set --match-set istio-inpod-probes dst,dst -j SNAT --to-source 169.254.7.127
    	iptablesBuilder.AppendRuleV4(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FDIVS", argLength: 2, reg: fp21, asm: "FDIVS"}, // arg0/arg1
    
    		{name: "DIVD", argLength: 2, reg: gp21, asm: "DIVD", typ: "Int64"},   // arg0/arg1 (signed 64-bit)
    		{name: "DIVW", argLength: 2, reg: gp21, asm: "DIVW", typ: "Int32"},   // arg0/arg1 (signed 32-bit)
    		{name: "DIVDU", argLength: 2, reg: gp21, asm: "DIVDU", typ: "Int64"}, // arg0/arg1 (unsigned 64-bit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"brvbar":   "\u00A6",
    	"sect":     "\u00A7",
    	"uml":      "\u00A8",
    	"copy":     "\u00A9",
    	"ordf":     "\u00AA",
    	"laquo":    "\u00AB",
    	"not":      "\u00AC",
    	"shy":      "\u00AD",
    	"reg":      "\u00AE",
    	"macr":     "\u00AF",
    	"deg":      "\u00B0",
    	"plusmn":   "\u00B1",
    	"sup2":     "\u00B2",
    	"sup3":     "\u00B3",
    	"acute":    "\u00B4",
    	"micro":    "\u00B5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top