Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for pushfw (0.28 sec)

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

    	"PSUBW",
    	"PTEST",
    	"PUNPCKHBW",
    	"PUNPCKHLQ",
    	"PUNPCKHQDQ",
    	"PUNPCKHWL",
    	"PUNPCKLBW",
    	"PUNPCKLLQ",
    	"PUNPCKLQDQ",
    	"PUNPCKLWL",
    	"PUSHAL",
    	"PUSHAW",
    	"PUSHFL",
    	"PUSHFQ",
    	"PUSHFW",
    	"PUSHL",
    	"PUSHQ",
    	"PUSHW",
    	"PXOR",
    	"QUAD",
    	"RCLB",
    	"RCLL",
    	"RCLQ",
    	"RCLW",
    	"RCPPS",
    	"RCPSS",
    	"RCRB",
    	"RCRL",
    	"RCRQ",
    	"RCRW",
    	"RDFSBASEL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	MOVSD:     "movsl",
    	MOVSD_XMM: "movsd",
    	OUTSD:     "outsl",
    	POPA:      "popaw",
    	POPAD:     "popa",
    	POPF:      "popfw",
    	POPFD:     "popf",
    	PUSHA:     "pushaw",
    	PUSHAD:    "pusha",
    	PUSHF:     "pushfw",
    	PUSHFD:    "pushf",
    	SCASB:     "scas",
    	SCASD:     "scas",
    	SCASQ:     "scas",
    	SCASW:     "scas",
    	STOSB:     "stos",
    	STOSD:     "stos",
    	STOSQ:     "stos",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/aenum.go

    	APSUBUSW
    	APSUBW
    	APTEST
    	APUNPCKHBW
    	APUNPCKHLQ
    	APUNPCKHQDQ
    	APUNPCKHWL
    	APUNPCKLBW
    	APUNPCKLLQ
    	APUNPCKLQDQ
    	APUNPCKLWL
    	APUSHAL
    	APUSHAW
    	APUSHFL
    	APUSHFQ
    	APUSHFW
    	APUSHL
    	APUSHQ
    	APUSHW
    	APXOR
    	AQUAD
    	ARCLB
    	ARCLL
    	ARCLQ
    	ARCLW
    	ARCPPS
    	ARCPSS
    	ARCRB
    	ARCRL
    	ARCRQ
    	ARCRW
    	ARDFSBASEL
    	ARDFSBASEQ
    	ARDGSBASEL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    			}
    		case ev := <-con.PushCh():
    			pushEv := ev.(*Event)
    			err := s.pushConnectionDelta(con, pushEv)
    			pushEv.done()
    			if err != nil {
    				return err
    			}
    		case <-con.StopCh():
    			return nil
    		}
    	}
    }
    
    // Compute and send the new configuration for a connection.
    func (s *DiscoveryServer) pushConnectionDelta(con *Connection, pushEv *Event) error {
    	pushRequest := pushEv.pushRequest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) Push(ev any) error {
    	pushEv := ev.(*Event)
    	err := conn.s.pushConnection(conn, pushEv)
    	pushEv.done()
    	return err
    }
    
    // processRequest handles one discovery request. This is currently called from the 'main' thread, which also
    // handles 'push' requests and close - the code will eventually call the 'push' code, and it needs more mutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. pkg/util/concurrent/debouncer.go

    	var timeChan <-chan time.Time
    	var startDebounce time.Time
    	var lastConfigUpdateTime time.Time
    
    	pushCounter := 0
    	debouncedEvents := 0
    
    	// Keeps track of the push requests. If updates are debounce they will be merged.
    	combinedEvents := sets.New[T]()
    
    	free := true
    	freeCh := make(chan struct{}, 1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 13:44:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/incluster/controller.go

    			gvk := oldcfg.GroupVersionKind
    			if (gvk == config.GroupVersionKind{}) {
    				gvk = newcfg.GroupVersionKind
    			}
    			chKind <- gvk
    		})
    	}
    	oldmsgs := map[string]diag.Messages{}
    	pushFn := func(combinedKinds sets.Set[config.GroupVersionKind]) {
    		res, err := c.analyzer.ReAnalyzeSubset(combinedKinds, stop)
    		if err != nil {
    			log.Errorf("In-cluster analysis has failed: %s", err)
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/seh.go

    	// - Stack split code (optional)
    	// - PUSHQ	BP
    	// - MOVQ	SP,	BP
    	//
    	// If the prologue layout change, the unwind information should be updated
    	// accordingly.
    
    	// Search for the PUSHQ BP instruction inside the prologue.
    	var pushbp *obj.Prog
    	for p := s.Func().Text; p != nil; p = p.Link {
    		if p.As == APUSHQ && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_BP {
    			pushbp = p
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/workload.go

    	// This is only an escape hatch for a lack of complete mapping of "Input changed -> Output changed".
    	// WDS does not suffer this limitation, so we could almost safely ignore these.
    	// However, other code will merge "Partial push + Full push -> Full push", so skipping full pushes isn't viable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/cmd/link/testdata/linkname/push.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // "Push" linknames are ok.
    
    package main
    
    import (
    	"cmd/link/testdata/linkname/p"
    	_ "unsafe"
    )
    
    // Push f1 to p.
    //
    //go:linkname f1 cmd/link/testdata/linkname/p.f1
    func f1() { f2() }
    
    // f2 is pushed from p.
    //
    //go:linkname f2
    func f2()
    
    func main() {
    	p.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 426 bytes
    - Viewed (0)
Back to top