Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for xC (0.08 sec)

  1. src/crypto/md5/md5block.go

    		x7 := byteorder.LeUint32(q[4*0x7:])
    		x8 := byteorder.LeUint32(q[4*0x8:])
    		x9 := byteorder.LeUint32(q[4*0x9:])
    		xa := byteorder.LeUint32(q[4*0xa:])
    		xb := byteorder.LeUint32(q[4*0xb:])
    		xc := byteorder.LeUint32(q[4*0xc:])
    		xd := byteorder.LeUint32(q[4*0xd:])
    		xe := byteorder.LeUint32(q[4*0xe:])
    		xf := byteorder.LeUint32(q[4*0xf:])
    
    		// round 1
    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+x0+0xd76aa478, 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/runtime/memclr_s390x.s

    	RET
    
    clearmt32:
    	CMP	R5, $256
    	BLT	clearlt256
    	XC	$256, 0(R4), 0(R4)
    	ADD	$256, R4
    	ADD	$-256, R5
    	BR	clearmt32
    clearlt256:
    	CMPBEQ	R5, $0, done
    	ADD	$-1, R5
    	EXRL	$memclr_exrl_xc<>(SB), R5
    done:
    	RET
    
    // DO NOT CALL - target for exrl (execute relative long) instruction.
    TEXT memclr_exrl_xc<>(SB),NOSPLIT|NOFRAME,$0-0
    	XC	$1, 0(R4), 0(R4)
    	MOVD	$0, 0(R0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 29 19:11:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue30243.go

    // accurately, should remain the same in operations that don't
    // affect their values.
    
    package main
    
    import "fmt"
    
    func main() {
    	const x = 0.01
    	const xi = 0.01i
    	const xc = complex(0, x)
    
    	if imag(xi) != x {
    		fmt.Printf("FAILED: %g != %g\n", imag(xi), x)
    	}
    
    	if xi != complex(0, x) {
    		fmt.Printf("FAILED: %g != %g\n", xi, complex(0, x))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 21:05:17 UTC 2019
    - 578 bytes
    - Viewed (0)
  4. src/crypto/aes/asm_s390x.s

    	LMG	src+56(FP), R4, R5 // R4=base R5=len
    	LMG	aad+80(FP), R6, R7 // R6=base R7=len
    
    	// setup parameters
    	MOVD	cnt+112(FP), R8
    	XC	$12, (R1), (R1)     // reserved
    	MVC	$4, 12(R8), 12(R1)  // set chain value
    	MVC	$16, (R8), 64(R1)   // set initial counter value
    	XC	$32, 16(R1), 16(R1) // set hash subkey and tag
    	SLD	$3, R7, R12
    	MOVD	R12, 48(R1)         // set total AAD length
    	SLD	$3, R5, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_s390x.s

    //go:build gc
    
    #include "textflag.h"
    
    // func stfle() facilityList
    TEXT ·stfle(SB), NOSPLIT|NOFRAME, $0-32
    	MOVD $ret+0(FP), R1
    	MOVD $3, R0          // last doubleword index to store
    	XC   $32, (R1), (R1) // clear 4 doublewords (32 bytes)
    	WORD $0xb2b01000     // store facility list extended (STFLE)
    	RET
    
    // func kmQuery() queryResult
    TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/internal/cpu/cpu_s390x.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // func stfle() facilityList
    TEXT ·stfle(SB), NOSPLIT|NOFRAME, $0-32
    	MOVD $ret+0(FP), R1
    	MOVD $3, R0          // last doubleword index to store
    	XC   $32, (R1), (R1) // clear 4 doublewords (32 bytes)
    	WORD $0xb2b01000     // store facility list extended (STFLE)
    	RET
    
    // func kmQuery() queryResult
    TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/security_test.go

    	{"-mfpu=123"},
    	{"-mlarge-data-threshold=16"},
    	{"-mtune=happybirthday"},
    	{"-mstack-overflow"},
    	{"-mno-stack-overflow"},
    	{"-mmacosx-version"},
    	{"-mnop-fun-dllimport"},
    	{"-pthread"},
    	{"-std=c99"},
    	{"-xc"},
    	{"-D", "FOO"},
    	{"-D", "foo=bar"},
    	{"-I", "."},
    	{"-I", "/etc/passwd"},
    	{"-I", "世界"},
    	{"-I", "=/usr/include/libxml2"},
    	{"-I", "dir"},
    	{"-I", "$SYSROOT/dir"},
    	{"-isystem", "/usr/include/mozjs-68"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/s390x/ggen.go

    				ins = s390x.AMOVW
    			case 2:
    				ins = s390x.AMOVH
    			}
    			p = pp.Append(p, ins, obj.TYPE_CONST, 0, 0, obj.TYPE_MEM, reg, off)
    
    		// Handle clears that would require multiple move instructions with CLEAR (assembled as XC).
    		default:
    			p = pp.Append(p, s390x.ACLEAR, obj.TYPE_CONST, 0, n, obj.TYPE_MEM, reg, off)
    		}
    
    		cnt -= n
    		off += n
    	}
    
    	return p
    }
    
    func ginsnop(pp *objw.Progs) *obj.Prog {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. pkg/testcerts/testcerts.go

    cccp+u3oBX864ztaG9Gn0wbgRVeafsPfuAOUmShykohV1mVJddiA0wayxGi0TmoK
    dwrltdToI7BmpmmTLc59O44JFGwO67aJQHsrHBjEnpWlxFDwbfZuf93FgdFUFFjr
    tVx2dPF9AoGBAPkIaUYxMSW78MD9862eJlGS6F/SBfPLTve3l9M+UFnEsWapNz+V
    anlupaBtlfRJxLDzjheMVZTv/TaFIrrMdN/xc/NoYj6lw5RV8PEfKPB0FjSAqSEl
    iVOA5q4kuI1xEeV7xLE4uJUF3wdoHz9cSmjrXDVZXq/KsaInABlAl1xjAoGBAONr
    bgFUlQ+fbsGNjeefrIXBSU93cDo5tkd4+lefrmUVTwCo5V/AvMMQi88gV/sz6qCJ
    gR0hXOqdQyn++cuqfMTDj4lediDGFEPho+n4ToIvkA020NQ05cKxcmn/6Ei+P9pk
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:03 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/anames.go

    	"CMPBEQ",
    	"CMPBGE",
    	"CMPBGT",
    	"CMPBLE",
    	"CMPBLT",
    	"CMPBNE",
    	"CMPUBEQ",
    	"CMPUBGE",
    	"CMPUBGT",
    	"CMPUBLE",
    	"CMPUBLT",
    	"CMPUBNE",
    	"MVC",
    	"MVCIN",
    	"CLC",
    	"XC",
    	"OC",
    	"NC",
    	"EXRL",
    	"LARL",
    	"LA",
    	"LAY",
    	"LAA",
    	"LAAG",
    	"LAAL",
    	"LAALG",
    	"LAN",
    	"LANG",
    	"LAX",
    	"LAXG",
    	"LAO",
    	"LAOG",
    	"LMY",
    	"LMG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top