Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for reg2 (0.04 sec)

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

    	for _, test := range tests {
    		enc := EncodeRegisterRange(test.reg0, test.reg1)
    		reg0, reg1 := decodeRegisterRange(enc)
    
    		if int16(reg0) != test.reg0 {
    			t.Errorf("%s reg0 mismatch: have %d, want %d",
    				test.printed, reg0, test.reg0)
    		}
    		if int16(reg1) != test.reg1 {
    			t.Errorf("%s reg1 mismatch: have %d, want %d",
    				test.printed, reg1, test.reg1)
    		}
    		wantPrinted := test.printed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/list6.go

    	if REG_AL <= r && r-REG_AL < len(Register) {
    		return Register[r-REG_AL]
    	}
    	return fmt.Sprintf("Rgok(%d)", r-obj.RBaseAMD64)
    }
    
    func rlconv(bits int64) string {
    	reg0, reg1 := decodeRegisterRange(bits)
    	return fmt.Sprintf("[%s-%s]", rconv(reg0), rconv(reg1))
    }
    
    func opSuffixString(s uint8) string {
    	return "." + opSuffix(s).String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/evex.go

    }
    
    // EncodeRegisterRange packs [reg0-reg1] list into 64-bit value that
    // is intended to be stored inside obj.Addr.Offset with TYPE_REGLIST.
    func EncodeRegisterRange(reg0, reg1 int16) int64 {
    	return (int64(reg0) << 0) |
    		(int64(reg1) << 16) |
    		obj.RegListX86Lo
    }
    
    // decodeRegisterRange unpacks [reg0-reg1] list from 64-bit value created by EncodeRegisterRange.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. tests/test_response_model_include_exclude.py

        }
    
    
    @app.get(
        "/mixed",
        response_model=Model3,
        response_model_include={"ref2", "name"},
        response_model_exclude={"ref2": {"baz"}},
    )
    def mixed():
        return Model3(
            name="mixed model3 name",
            age=3,
            ref2=Model2(
                ref=Model1(foo="mixed model foo", bar="mixed model bar"),
                baz="mixed model2 baz",
            ),
        )
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jul 19 19:14:58 UTC 2021
    - 4K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/testdata/escaping.dot

        missing="false"
        beingDeleted="false"
        deletingDependents="false"
        virtual="false"
      ];
      "ref2-" [
        label="uid=ref2-\nnamespace=ref2ns\nref2kind-.version.ref2group/ref2name-\n"
        group="ref2group"
        version="version"
        kind="ref2kind-"
        namespace="ref2ns"
        name="ref2name-"
        uid="ref2-"
        missing="false"
        beingDeleted="false"
        deletingDependents="false"
        virtual="false"
      ];
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 1010 bytes
    - Viewed (0)
  6. src/runtime/signal_linux_arm.go

    func (c *sigctxt) r7() uint32  { return c.regs().r7 }
    func (c *sigctxt) r8() uint32  { return c.regs().r8 }
    func (c *sigctxt) r9() uint32  { return c.regs().r9 }
    func (c *sigctxt) r10() uint32 { return c.regs().r10 }
    func (c *sigctxt) fp() uint32  { return c.regs().fp }
    func (c *sigctxt) ip() uint32  { return c.regs().ip }
    func (c *sigctxt) sp() uint32  { return c.regs().sp }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. src/runtime/signal_freebsd_arm.go

    func (c *sigctxt) r6() uint32  { return c.regs().__gregs[6] }
    func (c *sigctxt) r7() uint32  { return c.regs().__gregs[7] }
    func (c *sigctxt) r8() uint32  { return c.regs().__gregs[8] }
    func (c *sigctxt) r9() uint32  { return c.regs().__gregs[9] }
    func (c *sigctxt) r10() uint32 { return c.regs().__gregs[10] }
    func (c *sigctxt) fp() uint32  { return c.regs().__gregs[11] }
    func (c *sigctxt) ip() uint32  { return c.regs().__gregs[12] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 02:31:25 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  8. src/runtime/signal_freebsd_386.go

    func (c *sigctxt) esp() uint32 { return c.regs().mc_esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().mc_eip }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().mc_eflags }
    func (c *sigctxt) cs() uint32      { return c.regs().mc_cs }
    func (c *sigctxt) fs() uint32      { return c.regs().mc_fs }
    func (c *sigctxt) gs() uint32      { return c.regs().mc_gs }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/signal_openbsd_386.go

    func (c *sigctxt) esp() uint32 { return c.regs().sc_esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().sc_eip }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().sc_eflags }
    func (c *sigctxt) cs() uint32      { return c.regs().sc_cs }
    func (c *sigctxt) fs() uint32      { return c.regs().sc_fs }
    func (c *sigctxt) gs() uint32      { return c.regs().sc_gs }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  10. src/runtime/signal_darwin_amd64.go

    func (c *sigctxt) rbp() uint64 { return c.regs().rbp }
    func (c *sigctxt) rsp() uint64 { return c.regs().rsp }
    func (c *sigctxt) r8() uint64  { return c.regs().r8 }
    func (c *sigctxt) r9() uint64  { return c.regs().r9 }
    func (c *sigctxt) r10() uint64 { return c.regs().r10 }
    func (c *sigctxt) r11() uint64 { return c.regs().r11 }
    func (c *sigctxt) r12() uint64 { return c.regs().r12 }
    func (c *sigctxt) r13() uint64 { return c.regs().r13 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top