Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,477 for bstart (0.53 sec)

  1. src/runtime/sys_aix_ppc64.s

    	ADD $144+FIXED_FRAME, R1
    	MOVD	16(R1), R0
    	MOVD	R0, LR
    	BR (LR)
    
    // runtime.tstart is a function descriptor to the real tstart.
    DATA	runtime·tstart+0(SB)/8, $tstart<>(SB)
    DATA	runtime·tstart+8(SB)/8, $TOC(SB)
    DATA	runtime·tstart+16(SB)/8, $0
    GLOBL	runtime·tstart(SB), NOPTR, $24
    
    TEXT tstart<>(SB),NOSPLIT,$0
    	XOR	 R0, R0 // reset R0
    
    	// set g
    	MOVD	m_g0(R3), g
    	BL	runtime·save_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/runtime/os_aix.go

    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    func mdestroy(mp *m) {
    }
    
    // tstart is a function descriptor to _tstart defined in assembly.
    var tstart funcDescriptor
    
    func newosproc(mp *m) {
    	var (
    		attr pthread_attr
    		oset sigset
    		tid  pthread
    	)
    
    	if pthread_attr_init(&attr) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/life.go

    // Keep the channels visible from Go.
    var chans [4]chan bool
    
    // Double return value is just for testing.
    //
    //export GoStart
    func GoStart(i, xdim, ydim, xstart, xend, ystart, yend C.int, a *C.int, n *C.int) (int, int) {
    	c := make(chan bool, int(C.MYCONST))
    	go func() {
    		C.DoStep(xdim, ydim, xstart, xend, ystart, yend, a, n)
    		c <- true
    	}()
    	chans[i] = c
    	return int(i), int(i + 100)
    }
    
    //export GoWait
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 889 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	// Remove the setting if value is "".
    	if value == "" {
    		start, sep, end, _ := t.findTypeForKey(key)
    		if start != sep {
    			// Remove a possible empty extension.
    			switch {
    			case t.str[start-2] != '-': // has previous elements.
    			case end == len(t.str), // end of string
    				end+2 < len(t.str) && t.str[end+2] == '-': // end of extension
    				start -= 2
    			}
    			if start == int(t.pVariant) && end == len(t.str) {
    				t.str = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm_test.go

    // REG_Vx & 63 == x + 32
    func TestRegValueAlignment(t *testing.T) {
    	tstFunc := func(rstart, rend, msk, rout int) {
    		for i := rstart; i <= rend; i++ {
    			if i&msk != rout {
    				t.Errorf("%v is not aligned to 0x%X (expected %d, got %d)\n", rconv(i), msk, rout, rstart&msk)
    			}
    			rout++
    		}
    	}
    	var testType = []struct {
    		rstart int
    		rend   int
    		msk    int
    		rout   int
    	}{
    		{REG_VS0, REG_VS63, 63, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/compile.go

    				}
    			}
    		}
    
    		tStart := time.Now()
    		p.fn(f)
    		tEnd := time.Now()
    
    		// Need something less crude than "Log the whole intermediate result".
    		if f.Log() || f.HTMLWriter != nil {
    			time := tEnd.Sub(tStart).Nanoseconds()
    			var stats string
    			if logMemStats {
    				var mEnd runtime.MemStats
    				runtime.ReadMemStats(&mEnd)
    				nBytes := mEnd.TotalAlloc - mStart.TotalAlloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. releasenotes/notes/send-stat.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 12 16:23:08 UTC 2020
    - 178 bytes
    - Viewed (0)
  8. releasenotes/notes/alt-stat-name.yaml

    Rama Chavali <******@****.***> 1716199771 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 10:09:31 UTC 2024
    - 184 bytes
    - Viewed (0)
  9. src/runtime/os_darwin.go

    		exit(1)
    	}
    	mp.g0.stack.hi = stacksize // for mstart
    
    	// Tell the pthread library we won't join with this thread.
    	if pthread_attr_setdetachstate(&attr, _PTHREAD_CREATE_DETACHED) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    
    	// Finally, create the thread. It starts at mstart_stub, which does some low-level
    	// setup and then calls mstart.
    	var oset sigset
    	sigprocmask(_SIG_SETMASK, &sigset_all, &oset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/inline.go

    						d = 1
    					}
    					del := p.Text[0] == '~'
    					x := &Emph{Marker: p.Text[:d], Inner: append([]Inline(nil), dst[start.i+1:]...)}
    					start.Text = start.Text[:len(start.Text)-d]
    					p.Text = p.Text[d:]
    					if start.Text == "" {
    						dst = dst[:start.i]
    					} else {
    						dst = dst[:start.i+1]
    					}
    					trimStack()
    					if del {
    						dst = append(dst, (*Del)(x))
    					} else if d == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top