Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Ismail (0.07 sec)

  1. src/crypto/subtle/xor_ppc64x.s

    	STXVD2X	VS32, (R3)(R8)
    	STXVD2X	VS33, (R3)(R9)
    	ADD	$32, R8
    	ADD	$-32, R6
    	CMP	R6, $8
    	BLE	small
    	// Case for 8 <= n < 32 bytes
    	// Process 16 bytes if available
    xor16:
    	CMP	R6, $16
    	BLT	xor8
    	LXVD2X	(R4)(R8), VS32
    	LXVD2X	(R5)(R8), VS33
    	XXLXOR	VS32, VS33, VS32
    	STXVD2X	VS32, (R3)(R8)
    	ADD	$16, R8
    	ADD	$-16, R6
    small:
    	CMP	R6, $0
    	BC	12,2,LR		// BEQLR
    xor8:
    #ifdef GOPPC64_power10
    	SLD	$56,R6,R17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/flags_test.go

    			if a != b {
    				t.Errorf("asmAdd diff: x=%x y=%x got=%s want=%s\n", x, y, a, b)
    			}
    			coverage[a] = true
    		}
    	}
    	if len(coverage) != 9 { // TODO: can we cover all outputs?
    		t.Errorf("coverage too small, got %d want 9", len(coverage))
    	}
    }
    
    func TestSubFlagsNative(t *testing.T) {
    	var numbers = []int64{
    		1, 0, -1,
    		2, -2,
    		1<<63 - 1, -1 << 63,
    	}
    	coverage := map[flagConstant]bool{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:36:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/README

    This directory holds small tests and benchmarks of code
    generated by the compiler.  This code is not for importing,
    and the tests are intended to verify that specific optimizations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 206 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    [short] skip
    [!git] skip
    
    cd sub
    exec git init .
    exec git config user.name 'Nameless Gopher'
    exec git config user.email '******@****.***'
    exec git add sub.go
    exec git commit -m 'initial state'
    cd ..
    
    exec git init
    exec git config user.name 'Nameless Gopher'
    exec git config user.email '******@****.***'
    exec git submodule add ./sub
    exec git add go.mod example.go
    exec git commit -m 'initial state'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download_issue51114.txt

    -- go.mod --
    module test
    
    go 1.18
    
    require github.com/golang/notexist/subdir v0.1.0
    
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    	email = ******@****.***
    [url "******@****.***:"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/outbuf_nommap.go

    func (out *OutBuf) Mmap(filesize uint64) error {
    	// We need space to put all the symbols before we apply relocations.
    	oldheap := out.heap
    	if filesize < uint64(len(oldheap)) {
    		panic("mmap size too small")
    	}
    	out.heap = make([]byte, filesize)
    	copy(out.heap, oldheap)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 660 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/sigaltstack.go

    package cgotest
    
    /*
    #include <signal.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    
    #ifdef _AIX
    // On AIX, SIGSTKSZ is too small to handle Go sighandler.
    #define CSIGSTKSZ 0x4000
    #else
    #define CSIGSTKSZ SIGSTKSZ
    #endif
    
    static stack_t oss;
    static char signalStack[CSIGSTKSZ];
    
    static void changeSignalStack(void) {
    	stack_t ss;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    ! go install github.com/golang/nonexist@master
    stderr 'fatal: Could not read from remote repository.'
    ! stderr 'unknown revision'
    ! stdout .
    
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_illumos.go

    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept4(fd, &rsa, &len, flags)
    	if err != nil {
    		return
    	}
    	if len > SizeofSockaddrAny {
    		panic("RawSockaddrAny too small")
    	}
    	sa, err = anyToSockaddr(fd, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. doc/initial/6-stdlib/99-minor/README

    API changes and other small changes to the standard library go here....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 69 bytes
    - Viewed (0)
Back to top